mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-21 02:02:23 +00:00
* fix detection of lark weather station * fix unit tests and add support for Dfrobot rain gauge * fix name display on bootup * fix gauge init logic * trunk fmt
29 lines
693 B
C++
29 lines
693 B
C++
#pragma once
|
|
|
|
#ifndef _MT_DFROBOTGRAVITYSENSOR_H
|
|
#define _MT_DFROBOTGRAVITYSENSOR_H
|
|
#include "configuration.h"
|
|
|
|
#if !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR
|
|
|
|
#include "../mesh/generated/meshtastic/telemetry.pb.h"
|
|
#include "TelemetrySensor.h"
|
|
#include <DFRobot_RainfallSensor.h>
|
|
#include <string>
|
|
|
|
class DFRobotGravitySensor : public TelemetrySensor
|
|
{
|
|
private:
|
|
DFRobot_RainfallSensor_I2C gravity = DFRobot_RainfallSensor_I2C(nodeTelemetrySensorsMap[sensorType].second);
|
|
|
|
protected:
|
|
virtual void setup() override;
|
|
|
|
public:
|
|
DFRobotGravitySensor();
|
|
virtual int32_t runOnce() override;
|
|
virtual bool getMetrics(meshtastic_Telemetry *measurement) override;
|
|
};
|
|
|
|
#endif
|
|
#endif |