ssd1675/src/lib.rs
2018-11-13 18:13:52 +11:00

11 lines
146 B
Rust

extern crate embedded_hal as hal;
mod interface;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}