diff --git a/docs/local-server.md b/docs/local-server.md index 5e5f233..b79020b 100644 --- a/docs/local-server.md +++ b/docs/local-server.md @@ -160,7 +160,7 @@ If the monitor is set up on the AirGradient dashboard, it will also receive the **Notes** -- `offlineMode` : device will disable all network operation, and only show measurements on display and ledbar; Read-Only; Change can be apply using reset button on boot. +- `offlineMode` : the device will disable all network operation, and only show measurements on the display and ledbar; Read-Only; Change can be apply using reset button on boot. - `disableCloudConnection` : disable every request to AirGradient server, means features like post data to AirGradient server, configuration from AirGradient server and automatic firmware updates are disabled. This configuration overrides `configurationControl` and `postDataToAirGradient`; Read-Only; Change can be apply from wifi setup webpage. #### Corrections diff --git a/examples/BASIC/BASIC.ino b/examples/BASIC/BASIC.ino index cf65775..94a7fe0 100644 --- a/examples/BASIC/BASIC.ino +++ b/examples/BASIC/BASIC.ino @@ -539,7 +539,7 @@ static void sendDataToServer(void) { } if (wifiConnector.isConnected() == false) { - Serial.println("WiFi not connected, skip post data to server"); + Serial.println("WiFi not connected, skipping data transmission to AG server"); return; } diff --git a/examples/DiyProIndoorV3_3/DiyProIndoorV3_3.ino b/examples/DiyProIndoorV3_3/DiyProIndoorV3_3.ino index 171d69d..4969af8 100644 --- a/examples/DiyProIndoorV3_3/DiyProIndoorV3_3.ino +++ b/examples/DiyProIndoorV3_3/DiyProIndoorV3_3.ino @@ -591,7 +591,7 @@ static void sendDataToServer(void) { } if (wifiConnector.isConnected() == false) { - Serial.println("WiFi not connected, skip post data to server"); + Serial.println("WiFi not connected, skipping data transmission to AG server"); return; } diff --git a/examples/DiyProIndoorV4_2/DiyProIndoorV4_2.ino b/examples/DiyProIndoorV4_2/DiyProIndoorV4_2.ino index f837481..e3db76e 100644 --- a/examples/DiyProIndoorV4_2/DiyProIndoorV4_2.ino +++ b/examples/DiyProIndoorV4_2/DiyProIndoorV4_2.ino @@ -632,7 +632,7 @@ static void sendDataToServer(void) { } if (wifiConnector.isConnected() == false) { - Serial.println("WiFi not connected, skip post data to server"); + Serial.println("WiFi not connected, skipping data transmission to AG server"); return; } diff --git a/examples/OneOpenAir/OneOpenAir.ino b/examples/OneOpenAir/OneOpenAir.ino index f797ed6..976c6ac 100644 --- a/examples/OneOpenAir/OneOpenAir.ino +++ b/examples/OneOpenAir/OneOpenAir.ino @@ -1194,7 +1194,7 @@ static void sendDataToServer(void) { } if (wifiConnector.isConnected() == false) { - Serial.println("WiFi not connected, skip post data to server"); + Serial.println("WiFi not connected, skipping data transmission to AG server"); return; } diff --git a/src/AgWiFiConnector.cpp b/src/AgWiFiConnector.cpp index ec10975..a8e2c7f 100644 --- a/src/AgWiFiConnector.cpp +++ b/src/AgWiFiConnector.cpp @@ -87,8 +87,8 @@ bool WifiConnector::connect(void) { WiFiManagerParameter disableCloudInfo( "
Prevent connection to the AirGradient Server. Important: Only enable " "it if you are sure you don't want to use any AirGradient cloud " - "features. As a result you will not receive automatic firmware updates " - "configure from cloud and your data will not reach the AirGradient dashboard.
"); + "features. As a result you will not receive automatic firmware updates, " + "configuration settings from cloud and the measure data will not reach the AirGradient dashboard."); WIFI()->addParameter(&disableCloudInfo); WIFI()->autoConnect(ssid.c_str(), WIFI_HOTSPOT_PASSWORD_DEFAULT);