mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-08 14:12:05 +00:00
26 lines
614 B
C++
26 lines
614 B
C++
#include "configuration.h"
|
|
|
|
#if !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR && !MESHTASTIC_EXCLUDE_HEALTH_TELEMETRY && !defined(ARCH_PORTDUINO)
|
|
|
|
#include "../mesh/generated/meshtastic/telemetry.pb.h"
|
|
#include "TelemetrySensor.h"
|
|
#include <MAX30105.h>
|
|
|
|
#define MAX30102_BUFFER_LEN 100
|
|
|
|
class MAX30102Sensor : public TelemetrySensor
|
|
{
|
|
private:
|
|
MAX30105 max30102 = MAX30105();
|
|
uint32_t _speed = 200000UL;
|
|
|
|
protected:
|
|
virtual void setup() override;
|
|
|
|
public:
|
|
MAX30102Sensor();
|
|
virtual int32_t runOnce() override;
|
|
virtual bool getMetrics(meshtastic_Telemetry *measurement) override;
|
|
};
|
|
|
|
#endif |