Texts: [10] Build your circuit on Raspberry Pi using an LED. Modify the code to make the LED blink 3 times using a FOR LOOP.
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BOARD)
GPIO.setup(7, GPIO.OUT)
GPIO.output(7, True)
time.sleep(1)
2) Name the command to take a picture by PiCam
3) In which direction will the following motor run?
[2] [2]
Motor Supply -ive
S1
S3
S2
S4
Motor Supply +ive
4) What is the function of GPIO.cleanup() command? [OPTIONAL-BONUS QUESTION]