5#ifndef MRAS_ROCKETTELEMETRYSYSTEM_H 
    6#define MRAS_ROCKETTELEMETRYSYSTEM_H 
    9#include "TelemetrySystem.h" 
   10#include "telemetry_messages/TelemetryDataMsg.h" 
   21    using TelemetrySystem::TelemetrySystem;
 
   23    int8_t loop() 
override;
 
   31    uint16_t altitude = 0;
 
   33    uint8_t satellites = 0;
 
   34    float y_acceleration = 0;
 
   36    float temperature = 0;
 
   37    float altitude_estimate = 0;
 
The telemetry system for the rocket.
Definition: RocketTelemetrySystem.h:20
 
A base class for all system messages.
Definition: SystemMessage.h:32
 
A subsystem for sending and receiving telemetry data using the LoRa radio.
Definition: TelemetrySystem.h:23
 
A SystemMessage that is used to queue a TelemetryMessage for sending to the ground or the rocket.
Definition: TelemetryMessageQueueMsg.h:17