-
I tried to reproduce the Java version of the TrafficLight model. However, if you clean the project with "Build Automatically" being turned on, the following error message appears:
![screenshot_genmod…
-
I've found an odd case:
``` python
>>> from gpiozero import TrafficHat
>>> th = TrafficHat()
>>> th.close()
>>> th = TrafficHat()
```
which raises:
```
...
/home/pi/python-gpiozero/gpiozero/pins/rp…
-
I've installed your mod a week ago along with couple of others.
I've managed to make a fully automatic light system that covers about 8 crossings, but I've spotted one issue:
After placing the lights …
-
I'm currently working on adding in Ryan's [SnowPi](https://ryanteck.uk/raspberry-pi/114-snowpi-the-gpio-snowman-for-raspberry-pi-0635648608303.html) add-on board.
SnowPi is simply a collection of 9 L…
-
I just tried this:
``` python
>>> leds = LEDBoard(22, 23, 24)
>>> leds.blink()
>>> leds.leds[0]
>>> leds.leds[0].on()
```
And all three LEDs kept blinking. I expected the first LED to stay on while…
-
Components:
- [x] Potentiometer
- [x] RGB LED
- [x] Ultrasonic sensor (HC - SR04)
Boards & accessories:
- [x] [Pi-Traffic](http://lowvoltagelabs.com/products/pi-traffic/)
- [x] [Pi stop](http://4tron…
-
Has to be done. Green light means tests passing, red light means the build is broken.
-
I tried to re-create the C version of the TrafficLights example. Even after installing the PDE and CDT plugins, Eclipse still complains about a missing builder:
![screenshot_missingbuilderqt](https:/…
-
> Hi. I'm using the 81 tiles mod by BloodyPenguin and the mod works on the 25 tiles but it doesn't save the state of the lights outside the inner 25 tiles so after restarting a save game the settings …
Craxy updated
8 years ago
-
It seems the LEDBoard `.leds` property is now a generator, rather than a list. Great for iterating over but I have to cast it to a list to be able to slice it:
``` python
from gpiozero import PiLiter…