mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-21 02:02:23 +00:00
27 lines
820 B
C++
27 lines
820 B
C++
#include "INA260Sensor.h"
|
|
#include "../mesh/generated/meshtastic/telemetry.pb.h"
|
|
#include "TelemetrySensor.h"
|
|
#include "configuration.h"
|
|
#include <Adafruit_INA260.h>
|
|
|
|
INA260Sensor::INA260Sensor() : TelemetrySensor(TelemetrySensorType_INA260, "INA260") {}
|
|
|
|
int32_t INA260Sensor::runOnce()
|
|
{
|
|
LOG_INFO("Init sensor: %s\n", sensorName);
|
|
if (!hasSensor()) {
|
|
return DEFAULT_SENSOR_MINIMUM_WAIT_TIME_BETWEEN_READS;
|
|
}
|
|
status = ina260.begin(nodeTelemetrySensorsMap[sensorType]);
|
|
return initI2CSensor();
|
|
}
|
|
|
|
void INA260Sensor::setup() {}
|
|
|
|
bool INA260Sensor::getMetrics(Telemetry *measurement)
|
|
{
|
|
// mV conversion to V
|
|
measurement->variant.environment_metrics.voltage = ina260.readBusVoltage() / 1000;
|
|
measurement->variant.environment_metrics.current = ina260.readCurrent();
|
|
return true;
|
|
} |