feat: update readmes and keys and fixes

This commit is contained in:
Jet 2026-03-17 01:46:02 -07:00
parent f1c75d2109
commit b2d9406831
No known key found for this signature in database
16 changed files with 472 additions and 534 deletions

View file

@ -264,7 +264,7 @@ async fn main() -> Result<()> {
// pin must live for the entire program — rppal runs interrupts on a background
// thread tied to the InputPin. If pin drops, the interrupt thread is joined and
// monitoring stops. We move it into a binding that lives until main() returns.
let _pin = pin;
let mut _pin = pin;
_pin.set_async_interrupt(
Trigger::Both,
Some(Duration::from_secs(debounce_secs)),