With the changes proposed in this merge request we can write the follow: // Note that libgpiod bank number is not necessary this will be abstracted by the gpiod_line_findGpioControllergpioController=newGpioController();gpioController.OpenPin("MXM3_3/GPIO2",PinMode.Output);gpioController.Write...
let inputs = chip.request_lines(opts).await?; let values = inputs.get_values([false; 3]).await?; println!("values: {:?}", values); Ok(()) } ``` Output values: ```no_run use async_std_gpiod::{Chip, Options}; #[async_std::main] async fn main() -> std::io::Result<...