5 个不稳定版本
0.3.2 | 2024年1月14日 |
---|---|
0.3.1 | 2023年9月15日 |
0.3.0 | 2023年3月23日 |
0.2.0 | 2022年6月30日 |
0.1.0 | 2022年6月17日 |
#1099 in 硬件支持
每月 28 次下载
5.5MB
1.5K SLoC
notecard 的Rust驱动程序
这是一个基于 embedded-hal 的 Rust 驱动程序,用于 blues.io blues.io notecard。
use notecard::Note;
let mut note = Note::new(i2c);
note.initialize().expect("could not initialize notecard.");
if note.ping() {
info!("notecard found!");
} else {
error!("notecard not found!");
}
info!("note: card.time");
info!("note: time: {:?}", note.card().time(&mut delay).unwrap().wait(&mut delay));
info!("querying status..");
info!("status: {:?}", note.card().status(&mut delay).unwrap().wait(&mut delay));