Added code for IR sensor, i.e. assignment 3.
This commit is contained in:
parent
8f10c4ffa5
commit
5c45b27fec
26
Practical/Assignment-3/IoT - Code-3.py
Executable file
26
Practical/Assignment-3/IoT - Code-3.py
Executable file
@ -0,0 +1,26 @@
|
|||||||
|
"""
|
||||||
|
THIS CODE HAS BEEN TESTED ON RASPBERRY PI 3B and 4B AND IS FULLY OPERATIONAL.
|
||||||
|
|
||||||
|
Problem Statement: IR Sensor
|
||||||
|
|
||||||
|
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
|
||||||
|
import RPi.GPIO as GPIO
|
||||||
|
import time
|
||||||
|
|
||||||
|
GPIO.setmode(GPIO.BCM)
|
||||||
|
GPIO.setwarnings(False)
|
||||||
|
GPIO.cleanup()
|
||||||
|
GPIO.setup(16,GPIO.IN)
|
||||||
|
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
if (GPIO.input(16)):
|
||||||
|
print("No object")
|
||||||
|
else:
|
||||||
|
print("Object Detected")
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
GPIO.cleanup()
|
||||||
|
# END OF CODE
|
Loading…
Reference in New Issue
Block a user