mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-29 14:10:53 +00:00
25 lines
534 B
C
25 lines
534 B
C
|
|
#pragma once
|
||
|
|
#include "configuration.h"
|
||
|
|
|
||
|
|
#if !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR && __has_include(<Adafruit_PCT2075.h>)
|
||
|
|
|
||
|
|
#include "../mesh/generated/meshtastic/telemetry.pb.h"
|
||
|
|
#include "TelemetrySensor.h"
|
||
|
|
#include <Adafruit_PCT2075.h>
|
||
|
|
|
||
|
|
class PCT2075Sensor : public TelemetrySensor
|
||
|
|
{
|
||
|
|
private:
|
||
|
|
Adafruit_PCT2075 pct2075;
|
||
|
|
|
||
|
|
protected:
|
||
|
|
virtual void setup() override;
|
||
|
|
|
||
|
|
public:
|
||
|
|
PCT2075Sensor();
|
||
|
|
virtual int32_t runOnce() override;
|
||
|
|
virtual bool getMetrics(meshtastic_Telemetry *measurement) override;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|