mirror of
https://github.com/meshtastic/firmware.git
synced 2025-09-08 04:28:47 +00:00

Some checks are pending
CI / setup (check) (push) Waiting to run
CI / setup (esp32) (push) Waiting to run
CI / setup (esp32c3) (push) Waiting to run
CI / setup (esp32c6) (push) Waiting to run
CI / setup (esp32s3) (push) Waiting to run
CI / setup (nrf52840) (push) Waiting to run
CI / setup (rp2040) (push) Waiting to run
CI / setup (rp2350) (push) Waiting to run
CI / setup (stm32) (push) Waiting to run
CI / version (push) Waiting to run
CI / check (push) Blocked by required conditions
CI / build-esp32 (push) Blocked by required conditions
CI / build-esp32s3 (push) Blocked by required conditions
CI / build-esp32c3 (push) Blocked by required conditions
CI / build-esp32c6 (push) Blocked by required conditions
CI / build-nrf52840 (push) Blocked by required conditions
CI / build-rp2040 (push) Blocked by required conditions
CI / build-rp2350 (push) Blocked by required conditions
CI / build-stm32 (push) Blocked by required conditions
CI / build-debian-src (push) Waiting to run
CI / package-pio-deps-native-tft (push) Waiting to run
CI / test-native (push) Waiting to run
CI / docker-deb-amd64 (push) Waiting to run
CI / docker-deb-amd64-tft (push) Waiting to run
CI / docker-alp-amd64 (push) Waiting to run
CI / docker-alp-amd64-tft (push) Waiting to run
CI / docker-deb-arm64 (push) Waiting to run
CI / docker-deb-armv7 (push) Waiting to run
CI / gather-artifacts (esp32) (push) Blocked by required conditions
CI / gather-artifacts (esp32c3) (push) Blocked by required conditions
CI / gather-artifacts (esp32c6) (push) Blocked by required conditions
CI / gather-artifacts (esp32s3) (push) Blocked by required conditions
CI / gather-artifacts (nrf52840) (push) Blocked by required conditions
CI / gather-artifacts (rp2040) (push) Blocked by required conditions
CI / gather-artifacts (rp2350) (push) Blocked by required conditions
CI / gather-artifacts (stm32) (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions
CI / release-firmware (esp32) (push) Blocked by required conditions
CI / release-firmware (esp32c3) (push) Blocked by required conditions
CI / release-firmware (esp32c6) (push) Blocked by required conditions
CI / release-firmware (esp32s3) (push) Blocked by required conditions
CI / release-firmware (nrf52840) (push) Blocked by required conditions
CI / release-firmware (rp2040) (push) Blocked by required conditions
CI / release-firmware (rp2350) (push) Blocked by required conditions
CI / release-firmware (stm32) (push) Blocked by required conditions
CI / publish-firmware (push) Blocked by required conditions
Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
84 lines
2.2 KiB
C++
84 lines
2.2 KiB
C++
#include "configuration.h"
|
|
|
|
#if HAS_TELEMETRY && !MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR && __has_include("INA226.h")
|
|
|
|
#include "../mesh/generated/meshtastic/telemetry.pb.h"
|
|
#include "INA226.h"
|
|
#include "INA226Sensor.h"
|
|
#include "TelemetrySensor.h"
|
|
|
|
INA226Sensor::INA226Sensor() : TelemetrySensor(meshtastic_TelemetrySensorType_INA226, "INA226") {}
|
|
|
|
int32_t INA226Sensor::runOnce()
|
|
{
|
|
LOG_INFO("Init sensor: %s", sensorName);
|
|
if (!hasSensor()) {
|
|
return DEFAULT_SENSOR_MINIMUM_WAIT_TIME_BETWEEN_READS;
|
|
}
|
|
|
|
begin(nodeTelemetrySensorsMap[sensorType].second, nodeTelemetrySensorsMap[sensorType].first);
|
|
|
|
if (!status) {
|
|
status = ina226.begin();
|
|
}
|
|
return initI2CSensor();
|
|
}
|
|
|
|
void INA226Sensor::setup() {}
|
|
|
|
void INA226Sensor::begin(TwoWire *wire, uint8_t addr)
|
|
{
|
|
_wire = wire;
|
|
_addr = addr;
|
|
ina226 = INA226(_addr, _wire);
|
|
_wire->begin();
|
|
ina226.setMaxCurrentShunt(0.8, 0.100);
|
|
}
|
|
|
|
bool INA226Sensor::getMetrics(meshtastic_Telemetry *measurement)
|
|
{
|
|
switch (measurement->which_variant) {
|
|
case meshtastic_Telemetry_environment_metrics_tag:
|
|
return getEnvironmentMetrics(measurement);
|
|
|
|
case meshtastic_Telemetry_power_metrics_tag:
|
|
return getPowerMetrics(measurement);
|
|
}
|
|
|
|
// unsupported metric
|
|
return false;
|
|
}
|
|
|
|
bool INA226Sensor::getEnvironmentMetrics(meshtastic_Telemetry *measurement)
|
|
{
|
|
measurement->variant.environment_metrics.has_voltage = true;
|
|
measurement->variant.environment_metrics.has_current = true;
|
|
|
|
measurement->variant.environment_metrics.voltage = ina226.getBusVoltage();
|
|
measurement->variant.environment_metrics.current = ina226.getCurrent_mA();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool INA226Sensor::getPowerMetrics(meshtastic_Telemetry *measurement)
|
|
{
|
|
measurement->variant.power_metrics.has_ch1_voltage = true;
|
|
measurement->variant.power_metrics.has_ch1_current = true;
|
|
|
|
measurement->variant.power_metrics.ch1_voltage = ina226.getBusVoltage();
|
|
measurement->variant.power_metrics.ch1_current = ina226.getCurrent_mA();
|
|
|
|
return true;
|
|
}
|
|
|
|
uint16_t INA226Sensor::getBusVoltageMv()
|
|
{
|
|
return lround(ina226.getBusVoltage() * 1000);
|
|
}
|
|
|
|
int16_t INA226Sensor::getCurrentMa()
|
|
{
|
|
return lround(ina226.getCurrent_mA());
|
|
}
|
|
|
|
#endif |