diff --git a/code/main/softAP.cpp b/code/main/softAP.cpp index 07a4506dd..fe903fd11 100644 --- a/code/main/softAP.cpp +++ b/code/main/softAP.cpp @@ -98,8 +98,8 @@ void wifi_init_softAP(void) void SendHTTPResponse(httpd_req_t *req) { std::string message = "

AI-on-the-edge - BASIC SETUP

This is an access point with a minimal server to setup the minimum required files and information on the device and the SD-card. "; - message += "This mode is always startet if one of the following files is missing: /wlan.ini or the /config/config.ini.

"; - message += "The setup is done in 3 steps: 1. upload full inital configuration (sd-card content), 2. store WLAN acces information, 3. reboot (and connect to WLANs)

"; + message += "This mode is always started if one of the following files is missing: /wlan.ini or the /config/config.ini.

"; + message += "The setup is done in 3 steps: 1. upload full inital configuration (sd-card content), 2. store WLAN access information, 3. reboot (and connect to WLANs)

"; message += "Please follow the below instructions.

"; httpd_resp_send_chunk(req, message.c_str(), strlen(message.c_str())); @@ -109,7 +109,7 @@ void SendHTTPResponse(httpd_req_t *req) { message = "

1. Upload initial configuration to sd-card

"; message += "The configuration file config.ini is missing and most propably the full configuration and html folder on the sd-card. "; - message += "This is normal after the first flashing of the firmware and an empty sd-card. Please upload \"remote_setup.zip\", which contains an full inital configuration.

"; + message += "This is normal after the first flashing of the firmware and an empty sd-card. Please upload \"remote_setup.zip\", which contains a full inital configuration.

"; message += "
"; message += "

"; message += "The upload might take up to 60s. After a succesfull upload the page will be updated."; @@ -135,7 +135,7 @@ void SendHTTPResponse(httpd_req_t *req) message += "WLAN-SSIDSSID of the WLAN"; message += "WLAN-PasswordATTENTION: the password will not be encrypted during the sending."; message += "

"; - message += "

ATTENTION:

Be sure about the WLAN settings. They cannot be reseted afterwards. If ssid or password is wrong, you need to take out the sd-card and manually change them in \"wlan.ini\"!

"; + message += "

ATTENTION:

Be sure about the WLAN settings. They cannot be reset afterwards. If ssid or password is wrong, you need to take out the sd-card and manually change them in \"wlan.ini\"!

"; httpd_resp_send_chunk(req, message.c_str(), strlen(message.c_str())); // message = " Hostname";