rust_gpiozero icon indicating copy to clipboard operation
rust_gpiozero copied to clipboard

A library inspired by gpiozero written in Rust

Results 24 rust_gpiozero issues
Sort by recently updated
recently updated
newest added

https://gpiozero.readthedocs.io/en/stable/api_spi.html#spidevice

help wanted
good first issue

I found your book that you wrote up on physical computing. (Well done btw) Floating over to this repo for the crate I saw that other common sensor support is...

enhancement

Hi, Thanks for the nice library, it's faster than python ;-) I am using a raspberry pi and I tried the following code: ```python use rust_gpiozero::Debounce; use rust_gpiozero::*; use std::{thread,...

Draft implementation of the Digital RGBLED.

Was running into couple different race conditions when calling blink then trying to set the LED back to on. Minimal program to recreate bug : ```rust use std::{thread, time::Duration}; use...

I'm having jitter with a servo running on PWM pin 12 or 18. Sometimes it jumps while it needs to stay still. Is the hardware PWM used with this library...

Currently only the `LED`, `PWMLED`, `Buzzer`, `Motor` and `Servo` output device are implemented. GPIO Zero has [support](https://gpiozero.readthedocs.io/en/stable/api_output.html) for several others and it would be great to have support for them...