mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-04 12:44:40 +00:00

* Send local stats telemetry to phone every 10 minutes * Add debug log and bump to 15 minutes * Tronk * Explicit has_ optional
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
#include "configuration.h"
|
|
|
|
#if !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR
|
|
|
|
#include "../mesh/generated/meshtastic/telemetry.pb.h"
|
|
#include "TSL2591Sensor.h"
|
|
#include "TelemetrySensor.h"
|
|
#include <Adafruit_TSL2591.h>
|
|
#include <typeinfo>
|
|
|
|
TSL2591Sensor::TSL2591Sensor() : TelemetrySensor(meshtastic_TelemetrySensorType_TSL25911FN, "TSL2591") {}
|
|
|
|
int32_t TSL2591Sensor::runOnce()
|
|
{
|
|
LOG_INFO("Init sensor: %s\n", sensorName);
|
|
if (!hasSensor()) {
|
|
return DEFAULT_SENSOR_MINIMUM_WAIT_TIME_BETWEEN_READS;
|
|
}
|
|
status = tsl.begin(nodeTelemetrySensorsMap[sensorType].second);
|
|
|
|
return initI2CSensor();
|
|
}
|
|
|
|
void TSL2591Sensor::setup()
|
|
{
|
|
tsl.setGain(TSL2591_GAIN_MED); // 25x gain
|
|
tsl.setTiming(TSL2591_INTEGRATIONTIME_300MS);
|
|
}
|
|
|
|
bool TSL2591Sensor::getMetrics(meshtastic_Telemetry *measurement)
|
|
{
|
|
measurement->variant.environment_metrics.has_lux = true;
|
|
uint32_t lum = tsl.getFullLuminosity();
|
|
uint16_t ir, full;
|
|
ir = lum >> 16;
|
|
full = lum & 0xFFFF;
|
|
|
|
measurement->variant.environment_metrics.lux = tsl.calculateLux(full, ir);
|
|
LOG_INFO("Lux: %f\n", measurement->variant.environment_metrics.lux);
|
|
|
|
return true;
|
|
}
|
|
|
|
#endif |