3
0

Added code for IR sensor, i.e. assignment 3.

This commit is contained in:
K 2024-10-17 19:11:52 +05:30
parent 8f10c4ffa5
commit 5c45b27fec
Signed by: notkshitij
GPG Key ID: C5B8BC7530F8F43F

View 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