infrared
infrared copied to clipboard
Infrared remote control library for embedded Rust
(I'm using arduino_hal with an Arduino UNO) I use this code ```rust let timer2 = Timer2Pwm::new(dp.TC2, Prescaler::Prescale64); let mut sender_pin = pins.d3.into_output().into_pwm(&timer2); let ir_sender = Sender::new(sender_pin); ``` to initialize the...
I have written a code that receives IR signals using MultiReceiver's event_iter and then sends the same received commands using transmitter.load: ``` #[task(binds = EXTI9_5, local = [mono, receiver,transmitter])] fn...
Hi and thank you for this awesome crate. I have written a code that receives IR signals using MultiReceiver's event_iter and then sends the same received commands using transmitter.load :...
Add repeat flag to the Nec debug cmd to allow differentiating between a repeat press and all 0 bits.