Browse Source

Merge pull request #1498 from piotrmalek/fix-env-sensor-manager

Fix incorrect INA260 address in debug message
pull/1562/head
ripplebiz 4 months ago
committed by GitHub
parent
commit
13cfc9ad4c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/helpers/sensors/EnvironmentSensorManager.cpp

2
src/helpers/sensors/EnvironmentSensorManager.cpp

@ -284,7 +284,7 @@ bool EnvironmentSensorManager::begin() {
INA260_initialized = true;
} else {
INA260_initialized = false;
MESH_DEBUG_PRINTLN("INA260 was not found at I2C address %02X", TELEM_INA219_ADDRESS);
MESH_DEBUG_PRINTLN("INA260 was not found at I2C address %02X", TELEM_INA260_ADDRESS);
}
#endif

Loading…
Cancel
Save