File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ Set up the circuit as shown below:
3232 buzzer.on()
3333 sleep(1 )
3434 buzzer.off()
35+ sleep(1 )
3536
3637 ```
3738
@@ -41,3 +42,6 @@ Set up the circuit as shown below:
4142 while True :
4243 buzzer.beep()
4344 ```
45+
46+ # # What Next?
47+ - Have a go at building a [traffic light](trafficlights.md) system using gpiozero.
Original file line number Diff line number Diff line change @@ -64,3 +64,6 @@ Use the following code to set up the light sensor:
6464```
6565
6666Run this code, then cover the LDR with your hand and watch the value change. Try shining a strong light onto the LDR.
67+
68+ ## What Next?
69+ - You could have a go at using your new knowledge of LDRs to build a [ laser-tripwire] ( https://www.raspberrypi.org/learning/laser-tripwire/ ) .
Original file line number Diff line number Diff line change @@ -29,3 +29,6 @@ while True:
2929 if pir.motion_detected:
3030 print (" You moved" )
3131```
32+
33+ ## What Next?
34+ - Now you know how to use a PIR, why not have a go at building a [ Parent Detector] ( https://www.raspberrypi.org/learning/parent-detector )
You can’t perform that action at this time.
0 commit comments