#i2c #embedded-hal-i2c #io #i2c-driver #hal #no-std-driver #pca9539

no-std tca9539

TCA9539 (also PCA9539) 16-Bit I2C I/O Expander with I2C Interface

3 unstable releases

0.2.1 May 5, 2024
0.2.0 Jun 30, 2023
0.1.0 Jun 30, 2023

#2228 in Embedded development

Download history 109/week @ 2024-10-06 92/week @ 2024-10-13 98/week @ 2024-10-20 59/week @ 2024-10-27 76/week @ 2024-11-03 88/week @ 2024-11-10 98/week @ 2024-11-17 188/week @ 2024-11-24 116/week @ 2024-12-01 143/week @ 2024-12-08 118/week @ 2024-12-15 84/week @ 2024-12-22 91/week @ 2024-12-29 84/week @ 2025-01-05 140/week @ 2025-01-12 131/week @ 2025-01-19

453 downloads per month
Used in stabilizer

MIT license

6KB
93 lines

tca9539

This crate is a no_std driver for the TCA9539 and PCA9539 16-Bit/8-Bit I2C I/O Expanders.

Build Status crates.io Docs

Basic usage

Include this library as a dependency in your Cargo.toml:

[dependencies]
tca9539 = "0.1"

Use embedded-hal implementation to get I2C handle and then create chip handle:

use tca9539::*;

let pin = Pin::P13;
let mut u = Tca9539<I2C>::default(i2c).unwrap();
u.set_direction(pin, Direction::Output).unwrap();
u.set_level(pin, Level::High).unwrap();
assert!(u.gpio(pin).unwrap());

Documentation

API Docs available on docs.rs

Minimum supported Rust version (MSRV) is 1.62.0.

License

MIT license

Dependencies

~330–780KB
~17K SLoC