meshtastic-firmware/src/modules/Telemetry/Sensor/VoltageSensor.h

13 wiersze
174 B
C++

#include "configuration.h"
#if !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR
#pragma once
class VoltageSensor
{
public:
virtual uint16_t getBusVoltageMv() = 0;
};
#endif