output channelization

This commit is contained in:
2025-10-20 21:02:57 -07:00
parent 2bcb122319
commit 26271fcb17
11 changed files with 84 additions and 34 deletions

View File

@@ -1,15 +1,11 @@
use std::fmt::{Display, Formatter};
use embedded_hal::i2c::{ErrorKind, ErrorType, I2c, Operation, SevenBitAddress};
use std::fmt::{Display, Formatter};
pub struct SimMcp23017 {
}
pub struct SimMcp23017 {}
impl SimMcp23017 {
pub fn new() -> Self {
Self {
}
Self {}
}
}