summaryrefslogtreecommitdiff
path: root/src/devices/mod.rs
blob: 3290f72196a2ea22edc7e2ec4207b9e279a0aed1 (plain)
1
2
3
4
5
6
7
8
9
10
pub mod fc0013;
pub mod r820t;

pub struct Device {
    pub name: &'static str,
    pub i2c_addr: u8,
    pub check_addr: u8,
    pub check_val: u8
}