pub trait OutgoingPackage {
    const CODE: u8;

    fn bytes(&self) -> [u8; 7];
}
Expand description

A package which can be sent to the device

Required Associated Constants

The package code

Required Methods

Gives the 7 data bytes of the package

Implementors