Оновлення стану системи

This commit is contained in:
2025-12-21 21:40:29 +02:00
parent e9933da1a4
commit 21da24695a
15 changed files with 137019 additions and 1219 deletions

View File

@@ -140,8 +140,8 @@ void app_main(void)
ina226_reading_t reading = {0};
if (ina226_monitor_ready() && ina226_monitor_sample(&reading) == ESP_OK) {
ESP_LOGI(TAG, "Живлення: %.2f В, %.1f мА, %.1f мВт",
reading.voltage_v, reading.current_ma, reading.power_mw);
ESP_LOGI(TAG, "Живлення: %.2f В, %.2f А, %.2f Вт",
reading.voltage_v, reading.current_a, reading.power_w);
}
if (uart_mux_ready()) {