2025-05-25 14:29:02 +02:00
|
|
|
#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;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PCT2075Sensor();
|
|
|
|
|
virtual bool getMetrics(meshtastic_Telemetry *measurement) override;
|
2025-10-13 18:09:33 +02:00
|
|
|
virtual bool initDevice(TwoWire *bus, ScanI2C::FoundDevice *dev) override;
|
2025-05-25 14:29:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|