mirror of
https://github.com/meshtastic/firmware.git
synced 2025-05-10 07:11:59 +00:00
32 lines
947 B
C++
32 lines
947 B
C++
#include "SHT31Sensor.h"
|
|
#include "../mesh/generated/meshtastic/telemetry.pb.h"
|
|
#include "TelemetrySensor.h"
|
|
#include "configuration.h"
|
|
#include <Adafruit_SHT31.h>
|
|
|
|
SHT31Sensor::SHT31Sensor() : TelemetrySensor(meshtastic_TelemetrySensorType_SHT31, "SHT31") {}
|
|
|
|
int32_t SHT31Sensor::runOnce()
|
|
{
|
|
LOG_INFO("Init sensor: %s\n", sensorName);
|
|
if (!hasSensor()) {
|
|
return DEFAULT_SENSOR_MINIMUM_WAIT_TIME_BETWEEN_READS;
|
|
}
|
|
sht31 = Adafruit_SHT31(nodeTelemetrySensorsMap[sensorType].second);
|
|
status = sht31.begin(nodeTelemetrySensorsMap[sensorType].first);
|
|
return initI2CSensor();
|
|
}
|
|
|
|
void SHT31Sensor::setup()
|
|
{
|
|
// Set up oversampling and filter initialization
|
|
}
|
|
|
|
bool SHT31Sensor::getMetrics(meshtastic_Telemetry *measurement)
|
|
{
|
|
measurement->variant.environment_metrics.temperature = sht31.readTemperature();
|
|
measurement->variant.environment_metrics.relative_humidity = sht31.readHumidity();
|
|
|
|
return true;
|
|
}
|