2024-04-29 22:10:49 +12:00
|
|
|
#include "configuration.h"
|
|
|
|
|
|
2025-04-28 18:35:13 -05:00
|
|
|
#if !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR && __has_include(<Adafruit_SHT31.h>)
|
2024-04-27 18:05:39 +12:00
|
|
|
|
2023-01-18 08:56:47 -06:00
|
|
|
#include "../mesh/generated/meshtastic/telemetry.pb.h"
|
2024-05-03 14:26:57 +02:00
|
|
|
#include "SHT31Sensor.h"
|
2022-12-28 15:30:23 +01:00
|
|
|
#include "TelemetrySensor.h"
|
|
|
|
|
#include <Adafruit_SHT31.h>
|
|
|
|
|
|
2023-01-21 18:22:19 +01:00
|
|
|
SHT31Sensor::SHT31Sensor() : TelemetrySensor(meshtastic_TelemetrySensorType_SHT31, "SHT31") {}
|
2022-12-28 15:30:23 +01:00
|
|
|
|
2026-01-03 21:19:24 +01:00
|
|
|
bool SHT31Sensor::initDevice(TwoWire *bus, ScanI2C::FoundDevice *dev) {
|
|
|
|
|
LOG_INFO("Init sensor: %s", sensorName);
|
|
|
|
|
sht31 = Adafruit_SHT31(bus);
|
|
|
|
|
status = sht31.begin(dev->address.address);
|
|
|
|
|
initI2CSensor();
|
|
|
|
|
return status;
|
2022-12-28 15:30:23 +01:00
|
|
|
}
|
|
|
|
|
|
2026-01-03 21:19:24 +01:00
|
|
|
bool SHT31Sensor::getMetrics(meshtastic_Telemetry *measurement) {
|
|
|
|
|
measurement->variant.environment_metrics.has_temperature = true;
|
|
|
|
|
measurement->variant.environment_metrics.has_relative_humidity = true;
|
|
|
|
|
measurement->variant.environment_metrics.temperature = sht31.readTemperature();
|
|
|
|
|
measurement->variant.environment_metrics.relative_humidity = sht31.readHumidity();
|
2022-12-28 15:30:23 +01:00
|
|
|
|
2026-01-03 21:19:24 +01:00
|
|
|
return true;
|
2023-01-18 14:51:48 -06:00
|
|
|
}
|
2024-04-27 18:05:39 +12:00
|
|
|
|
|
|
|
|
#endif
|