mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-02 08:00:38 +00:00
25 lines
579 B
C
25 lines
579 B
C
|
|
#include "configuration.h"
|
||
|
|
|
||
|
|
#if !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR && !defined(ARCH_PORTDUINO)
|
||
|
|
#include "../mesh/generated/meshtastic/telemetry.pb.h"
|
||
|
|
#include "TelemetrySensor.h"
|
||
|
|
#include <Adafruit_MLX90614.h>
|
||
|
|
|
||
|
|
#define MLX90614_EMISSIVITY 0.98 // human skin
|
||
|
|
|
||
|
|
class MLX90614Sensor : public TelemetrySensor
|
||
|
|
{
|
||
|
|
private:
|
||
|
|
Adafruit_MLX90614 mlx = Adafruit_MLX90614();
|
||
|
|
|
||
|
|
protected:
|
||
|
|
virtual void setup() override;
|
||
|
|
|
||
|
|
public:
|
||
|
|
MLX90614Sensor();
|
||
|
|
virtual int32_t runOnce() override;
|
||
|
|
virtual bool getMetrics(meshtastic_Telemetry *measurement) override;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|