Files
firmware/main/include/control/ISensor.h

18 lines
293 B
C++

//
// Created by Johnathon Slightham on 2025-10-16.
//
#ifndef ISENSOR_H
#define ISENSOR_H
#include <vector>
#include "SensorMessageBuilder.h"
class ISensor {
public:
virtual ~ISensor() {}
virtual std::vector<Flatbuffers::sensor_value> get_sensor_data() = 0;
};
#endif //ISENSOR_H