X-Git-Url: https://git.rvb.name/esp-clock.git/blobdiff_plain/dab14a20e37e760a82b72f50f765caa26fff556e..3a386826fc7eec89b50beda371dcef0ad3adc2a5:/net.cpp diff --git a/net.cpp b/net.cpp index b211f63..ff18fcc 100644 --- a/net.cpp +++ b/net.cpp @@ -15,7 +15,7 @@ void setupNet(bool AP) { WiFi.mode(WIFI_STA); WiFi.begin(SSID,PSK); isApEnabled = false; - Serial.println(F("STA mode active")); + Serial.println(F("Режим беспроводного клиента")); } else { SSID = cfg.getCharValue(F("ap_ssid")); PSK = cfg.getCharValue(F("ap_psk")); @@ -24,7 +24,7 @@ void setupNet(bool AP) { } WiFi.mode(WIFI_AP); WiFi.softAP(SSID,PSK); - Serial.println(F("AP mode active")); + Serial.println(F("Режим точки доступа")); isApEnabled = true; String IP = WiFi.softAPIP().toString(); char buf[256]; @@ -44,11 +44,11 @@ void tickNet() { if (isApEnabled) { if (WiFi.status() == WL_CONNECTED && !isNetConnected) { isNetConnected = true; - Serial.print(F("Device connected to SSID ")); Serial.println(SSID); + Serial.print(F("Выполнено подключение к сети ")); Serial.println(SSID); message(F("Соединение установлено")); } else if (WiFi.status() != WL_CONNECTED && isNetConnected) { isNetConnected = false; - Serial.println(F("Network connection lost")); + Serial.println(F("Сеть потеряна")); message(F("Сеть потеряна")); } }