Ben Nuttall
Ben Nuttall
It would be cool to provide a `brightness_source` property as well as a source for setting `value`. There are a few places around the library that would be handy. You...
Similarly I created a class for a board with these pixels using the above code as a starter, which is mostly gpiozero-like but not perfectly: https://github.com/ThePiHut/rgbxmastree
Does the following work for you? ```python from gpiozero import Button import time btn = Button(23, pull_up=True) while True: btn.wait_for_press() print("Pressed") btn.wait_for_release() print("Released) ```
What about just using RPi.GPIO without gpiozero? Do you get the same or different behaviour?
Surely when the `when_held` callback is called the button will *always* still be pressed? Unless the user only holds the button down for say *exactly* one second and releases the...
Can you post the code you're using? (please use fenced code blocks) I have seen other people report of SPI not working on Stretch but I can't reproduce. The following...
What's happening is you're creating a reference to an SPI object, and then throwing it away by creating another with the same name. They're supposed to be connected, as they...
I can't remember exactly but it was probably related to #445 graphical mock pin.
Probably no need as we've removed RPIO (as of the upcoming 2.0 release): https://gpiozero.readthedocs.io/en/master/compat.html#rpio-pin-factory-removed
What's the consequence of this 404?