mirror of
https://github.com/meshtastic/firmware.git
synced 2025-09-28 03:56:33 +00:00

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