blob: 05dd2a3d997fa8741c0cf1a7126c9f2a42d7d471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
pub mod fc0013;
pub mod r820t;
pub struct DeviceInfo {
pub id: &'static str,
pub name: &'static str,
pub i2c_addr: u8,
pub check_addr: u8,
pub check_val: u8
}
pub trait Device {
fn init(&self);
}
|