Ke Ao Teensy Flight Software
The software on the Teensy in the Ke Ao cubesat.
|
The switches beacon structure. More...
#include <artemis_devices.h>
Public Attributes | |
BeaconType | type = BeaconType::SwitchBeacon |
The type of the beacon. | |
uint32_t | deci = 0 |
A decimal identifier for the beacon. | |
uint8_t | switches [13] |
The switch states. | |
The switches beacon structure.
This defines the strcture of the switches beacon.
The switches beacon consists of three members: the type of beacon (type
), the decimal identifier (deci
), and the status of each switch on the PDU (switches
).
uint32_t Artemis::Devices::Switches::switchbeacon::deci = 0 |
A decimal identifier for the beacon.
This value is the current uptime of the Teensy in milliseconds. By default, it is zero.
uint8_t Artemis::Devices::Switches::switchbeacon::switches[13] |
The switch states.
The state of each switch on the PDU are stored as an array of integer values.
BeaconType Artemis::Devices::Switches::switchbeacon::type = BeaconType::SwitchBeacon |
The type of the beacon.
The BeaconType of the beacon, which is set to SwitchBeacon.