Compare commits
2 Commits
8f10c4ffa5
...
1110a2e034
Author | SHA1 | Date | |
---|---|---|---|
1110a2e034 | |||
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
|
BIN
Practical/Assignment-3/IoT - Softcopy-3.pdf
Normal file
BIN
Practical/Assignment-3/IoT - Softcopy-3.pdf
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user