Artemis Teensy Flight Software
The software on the Teensy in the Artemis cubesat.
artemisbeacons.h
Go to the documentation of this file.
1 
7 #ifndef _ARTEMIS_BEACONS_H
8 #define _ARTEMIS_BEACONS_H
9 
10 #include "config/artemis_defs.h"
11 #include <cstdint>
12 
13 namespace Artemis {
14  namespace Devices {
16  enum class BeaconType : uint8_t {
17  None,
18  TemperatureBeacon,
19  CurrentBeacon1,
20  CurrentBeacon2,
21  IMUBeacon,
22  MagnetometerBeacon,
23  GPSBeacon,
24  SwitchBeacon,
25  };
26  } // namespace Devices
27 } // namespace Artemis
28 
29 #endif // _ARTEMIS_BEACONS_H
The Artemis definitions.
BeaconType
Enumeration of beacon types.
Definition: artemisbeacons.h:16