3
0

Added code and softcopy for assignment 4.

This commit is contained in:
K 2024-10-16 22:22:45 +05:30
parent 30a5b7e7f4
commit 20bb617826
Signed by: notkshitij
GPG Key ID: C5B8BC7530F8F43F
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
"""
THIS CODE HAS BEEN TESTED ON RASPBERRY PI 3B, 4B AND IS FULLY OPERATIONAL.
Problem Statement: Temperature and humidity sensing using DHT11.
Code from InternetOfThingsAndEmbeddedSystems (SPPU - Third Year - Computer Engineering - Content) repository on KSKA Git: https://git.kska.io/sppu-te-comp-content/InternetOfThingsAndEmbeddedSystems
"""
# BEGINNING OF CODE
# NOTE: GPIO PIN 16 used
import RPi.GPIO as GPIO
import dht11
import time
# initialize GPIO
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.cleanup()
try:
while True:
# read data using pin 16
instance = dht11.DHT11(pin = 16)
result = instance.read()
if result.is_valid():
print("Temperature: %-3.1f C" % result.temperature)
print("Humidity: %-3.1f %%" % result.humidity)
else:
print("Error: %d" % result.error_code)
time.sleep(3)
except KeyboardInterrupt:
print("Program stopped by user.")
GPIO.cleanup()
# END OF CODE

Binary file not shown.