Added content.

- Notes
- Practical
- Question Papers
- DISCLAIMER and motto file
Lastly, updated README file.
This commit is contained in:
K
2025-01-07 01:04:31 +05:30
parent 4b9f25a690
commit 39df7a43f6
50 changed files with 316 additions and 0 deletions
+72
View File
@@ -0,0 +1,72 @@
"""
THIS CODE HAS BEEN TESTED ON RASPBERRY PI 3B AND IS FULLY OPERATIONAL.
Problem Statement: Understanding the connectivity of Raspberry-Pi / Arduino with IR sensor. Write an application to detect obstacle and notify user using LEDs.
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
# SINGLE LED ON/OFF
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
GPIO.setup(16,GPIO.OUT)
try:
while True:
print(LED ON)
GPIO.output(16,GPIO.HIGH)
time.sleep(1)
print(LED OFF)
GPIO.output(16,GPIO.LOW)
time.sleep(1)
except:
GPIO.cleanup()
##########
# TWO LEDs ON/OFF
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
GPIO.setup(16,GPIO.OUT)
GPIO.setup(26,GPIO.OUT)
try:
while True:
print(LED ON)
GPIO.output(16,GPIO.HIGH)
GPIO.output(26,GPIO.HIGH)
time.sleep(1)
print(LED OFF)
GPIO.output(16,GPIO.LOW)
GPIO.output(26,GPIO.LOW)
time.sleep(1)
except:
GPIO.cleanup()
##########
# BUZZER WITH ONE LED ON/OFF
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
GPIO.setup(16,GPIO.OUT)
GPIO.setup(26,GPIO.OUT)
try:
while True:
print("LED Buzzer ON")
GPIO.output(16,GPIO.HIGH)
GPIO.output(26,GPIO.HIGH)
time.sleep(1)
print("LED & Buzzer OFF")
GPIO.output(16,GPIO.LOW)
GPIO.output(26,GPIO.LOW)
time.sleep(1)
except:
GPIO.cleanup()
##########
# END OF CODE
Binary file not shown.
Binary file not shown.