2 个不稳定版本
0.2.0 | 2022年1月9日 |
---|---|
0.1.0 | 2019年1月14日 |
3 / #ssd1306
20KB
276 代码行数(不含注释)
这是基于 Solomon Systech 的 SSD1306 OLED 显示屏的 NanoHat OLED 制造商代码的 Rust 版本。
它允许访问屏幕的基本功能,包括显示文本和图像的设施。
示例
use nanohat_oled::{Oled, OledResult};
fn main() -> OledResult {
let mut oled = Oled::from_path("/dev/i2c-0")?;
oled.init()?;
oled.put_string("Hello, world!")?;
Ok(())
}
依赖项
~270–415KB