Browse Source

Fix incorrect INA260 address in debug message

pull/1498/head
Piotr Małek 4 months ago
parent
commit
3845a1c021
  1. 2
      src/helpers/sensors/EnvironmentSensorManager.cpp

2
src/helpers/sensors/EnvironmentSensorManager.cpp

@ -284,7 +284,7 @@ bool EnvironmentSensorManager::begin() {
INA260_initialized = true; INA260_initialized = true;
} else { } else {
INA260_initialized = false; 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 #endif

Loading…
Cancel
Save