Started TCA8418 type

This commit is contained in:
Zac Wilson 2025-12-22 17:17:00 +00:00
parent 4967aa362f
commit 382a018b22

View file

@ -1,2 +1,10 @@
#![no_std] #![no_std]
use embedded_hal::i2c::SevenBitAddress;
pub const I2C_ADDR: SevenBitAddress = 0b0_0110100;
pub struct TCA8418<I2C> {
i2c: I2C,
}