mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-09 15:14:45 +00:00

* DF Robot Lark weather station support * Missed it * I am a man of const char sorrow... * Strang * Use our fork
24 lines
563 B
C++
24 lines
563 B
C++
#include "configuration.h"
|
|
|
|
#if !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR
|
|
|
|
#include "../mesh/generated/meshtastic/telemetry.pb.h"
|
|
#include "TelemetrySensor.h"
|
|
#include <DFRobot_LarkWeatherStation.h>
|
|
#include <string>
|
|
|
|
class DFRobotLarkSensor : public TelemetrySensor
|
|
{
|
|
private:
|
|
DFRobot_LarkWeatherStation_I2C lark = DFRobot_LarkWeatherStation_I2C();
|
|
|
|
protected:
|
|
virtual void setup() override;
|
|
|
|
public:
|
|
DFRobotLarkSensor();
|
|
virtual int32_t runOnce() override;
|
|
virtual bool getMetrics(meshtastic_Telemetry *measurement) override;
|
|
};
|
|
|
|
#endif |