Crates.io | gpio-expander |
lib.rs | gpio-expander |
version | 0.1.0 |
source | src |
created_at | 2022-06-07 15:52:31.810622 |
updated_at | 2022-06-07 15:52:31.810622 |
description | A platform-independent driver for interacting with the products GPIO Port Expander (Troyka Module), Troyka HAT and Slot Expander Expansion Board |
homepage | |
repository | https://github.com/amperka/gpio-expander-rs |
max_upload_size | |
id | 601551 |
size | 57,932 |
gpio-expander
This is a crate that provides a general abstraction for an I²C port expander used in the GPIO Port Expander (Troyka Module)
, Troyka HAT
and Slot Expander Expansion Board
products. This abstraction is not necessarily the most performant, but it allows pins to be used in the same way as direct GPIOs. Because pin types also implement embedded-hal
digital I/O characteristics, they can also be passed to subsequent drivers (for example, as a reset or chip select pin).
use std::error::Error;
use std::thread;
use std::time::Duration;
use gpio_expander::{prelude::*, GpioExpander};
use rppal::i2c::I2c;
fn main() -> Result<(), Box<dyn Error>> {
// Initializing an I²C Peripheral from HAL
let i2c = I2c::with_bus(1)?;
// Initializing GpioExpander with default I²C address
let mut expander = GpioExpander::new(i2c, None);
let expander_pins = expander.pins();
// Pin 0 into output mode
let mut led = expander_pins.p00.into_output()?;
loop {
led.set_high()?;
thread::sleep(Duration::from_secs(1));
led.set_low()?;
thread::sleep(Duration::from_secs(1));
}
}
More examples in the examples
folder.
The documentation can be found at docs.rs.
gpio-expander
uses the BusMutex
from shared-bus
under the hood. This means
you can also make the pins shareable across task/thread boundaries, given that
you provide an appropriate mutex type:
// Initializing GpioExpander with default I²C address, and alternative Mutex
let mut expander: GpioExpander<std::sync::Mutex<_>> = GpioExpander::new(i2c, None);
The default configuration allows pins to be used in single-threaded mode, for multi-threaded mode, use the example above (Mutex implementation depends on the platform you are using).
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.