astrotools 0.8.0

Basic building block for the lightspeed protocol and lightspeed compliant drivers
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub enum DeviceType {
    Ccd,
    Mount,
    Focuser,
    FilterWheel,
    PowerBox,
}

pub trait DevType {
    fn dev_type(&self) -> DeviceType;
}