gpiozero
gpiozero copied to clipboard
A simple interface to GPIO devices with Raspberry Pi
On https://github.com/gpiozero/gpiozero/blob/f203f4abe0e11c5f82ef952370ddebca5a02bf0c/gpiozero/pins/pi.py#L29 only `spi0` is defined and on https://github.com/gpiozero/gpiozero/blob/master/docs/api_spi.rst we have > The port parameter must be 0 (there is only one user-accessible hardware SPI interface on the Pi using...
`spidev`'s `max_speed_hz` is hard coded to `500000` at https://github.com/gpiozero/gpiozero/blob/f203f4abe0e11c5f82ef952370ddebca5a02bf0c/gpiozero/pins/local.py#L132 This should be a variable part of `**spi_args` in `SPIDevice`.
Fix #199
Hi I would be interested to have a hx711/weight_sensor class within gpiozero. I have found two independent libraries ([here ](https://github.com/tatobari/hx711py)and [here](https://github.com/gandalf15/HX711)) tackling this but I think it would be nice...
Are there any plans to add support for [libgpiod](https://github.com/brgl/libgpiod) as a pin factory, which is the current recommended way of accessing the GPIO pins on the Raspberry Pi (see for...
Hi, I was looking for a way to run gpiozero inside a Docker container on a RaspPi, didn't find the info on how to allow access to GPIO devices here....
Hello, First of all GPIO Zero is very well done! With respect to SPI devices, it appears that the Raspberry Pi supports hardware SPI on the following pin combinations: -...
Make the RGBLED fade from a color of a list to the next color of the list. Fades over all colors and back to the first color of the list....
Trying to use the MCP code for a MCP3201 chip to detect the movement of a Linear Actuator. The output from the gpiozero code never seems to change. the value...
Hi. Thanks for making this library :) I have a shutdown.py program that uses gpiozero and pins 17 (push button) & 27 (LED). It is started via cron bash script...