1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-08 21:03:49 +01:00

Replace random non-ascii-print characters with standard substitutes (#6840)

This commit is contained in:
Pieter Viljoen
2024-05-31 17:49:48 -07:00
committed by GitHub
parent 1f301df51d
commit 41e13fa6f4
6 changed files with 10 additions and 10 deletions

View File

@@ -58,7 +58,7 @@ void WiFiComponent::setup() {
void WiFiComponent::start() {
ESP_LOGCONFIG(TAG, "Starting WiFi...");
ESP_LOGCONFIG(TAG, " Local MAC: %s", get_mac_address_pretty().c_str());
ESP_LOGCONFIG(TAG, " Local MAC: %s", get_mac_address_pretty().c_str());
this->last_connected_ = millis();
uint32_t hash = this->has_sta() ? fnv1_hash(App.get_compilation_time()) : 88491487UL;