Fix grammar error

This commit is contained in:
samuelbles07
2025-02-05 10:43:56 +07:00
parent e851d0781c
commit afd498074b
6 changed files with 7 additions and 7 deletions

View File

@ -160,7 +160,7 @@ If the monitor is set up on the AirGradient dashboard, it will also receive the
**Notes** **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. - `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 #### Corrections

View File

@ -539,7 +539,7 @@ static void sendDataToServer(void) {
} }
if (wifiConnector.isConnected() == false) { 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; return;
} }

View File

@ -591,7 +591,7 @@ static void sendDataToServer(void) {
} }
if (wifiConnector.isConnected() == false) { 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; return;
} }

View File

@ -632,7 +632,7 @@ static void sendDataToServer(void) {
} }
if (wifiConnector.isConnected() == false) { 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; return;
} }

View File

@ -1194,7 +1194,7 @@ static void sendDataToServer(void) {
} }
if (wifiConnector.isConnected() == false) { 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; return;
} }

View File

@ -87,8 +87,8 @@ bool WifiConnector::connect(void) {
WiFiManagerParameter disableCloudInfo( WiFiManagerParameter disableCloudInfo(
"<p>Prevent connection to the AirGradient Server. Important: Only enable " "<p>Prevent connection to the AirGradient Server. Important: Only enable "
"it if you are sure you don't want to use any AirGradient cloud " "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 " "features. As a result you will not receive automatic firmware updates, "
"configure from cloud and your data will not reach the AirGradient dashboard.</p>"); "configuration settings from cloud and the measure data will not reach the AirGradient dashboard.</p>");
WIFI()->addParameter(&disableCloudInfo); WIFI()->addParameter(&disableCloudInfo);
WIFI()->autoConnect(ssid.c_str(), WIFI_HOTSPOT_PASSWORD_DEFAULT); WIFI()->autoConnect(ssid.c_str(), WIFI_HOTSPOT_PASSWORD_DEFAULT);