ESPNOW + WiFi

This commit is contained in:
2025-07-28 17:31:38 -04:00
parent 85fe7b184f
commit e41c93dd58

View File

@@ -436,6 +436,9 @@ void task(void *pvParameters)
esp_wifi_get_band(&band); esp_wifi_get_band(&band);
printf("Wi-Fi Channel: %d, Band:%d\n", channel, band); printf("Wi-Fi Channel: %d, Band:%d\n", channel, band);
//ESP_LOGE(TAG, "Wi-Fi Channel: %d, Band: %d", channel, band); //ESP_LOGE(TAG, "Wi-Fi Channel: %d, Band: %d", channel, band);
mqtt_update_battery_voltage(bus_voltage);
mqtt_update_sys_current(current);
mqtt_update_sys_power(power);
vTaskDelay(pdMS_TO_TICKS(2500)); vTaskDelay(pdMS_TO_TICKS(2500));
} }