LDR intro
Motion Sensor Intro
Can you light the LED by using the LDR level?
from gpiozero import LightSensor, LED
from time import sleep
led = LED(17)
ldr = LightSensor(4)
while True:
print(ldr.value)
if (ldr.value < 0.7):
led.on()
elif (ldr.value >= 0.7):
led.off()
Camera
- Maker Camera work from PRI sensor
- Send an email of picture to yourself. This tutorial helps but is not perfect.
Explorer HAT
- Intro Project
- simon says: http://richardhayler.blogspot.com/2015/07/simon-says-with-pimoroni-explorerhat.html
Sense Hat
- Sense Hat #1
- Sense Hat Clock ... Make in Python not in the Terminal
- Sense Hat Thermometer ... Make in Python not in the Terminal
- Sense Hat Projects
No comments:
Post a Comment