Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit fbe03eb

Browse files
authored
v1.15.0 to optionally display Credentials
### Releases v1.15.0 1. Optionally display Credentials (SSIDs, PWDs) in Config Portal. Check [Populate portal wifi with saved credentials #91](khoih-prog/ESP_WiFiManager#91) and [Prepopulating the configuration with SSID and Password from stored file #115](#115) 2. Display `Credentials` Hint on Config Portal 3. Periodic code clean-up
1 parent 85e0d4e commit fbe03eb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -362,13 +362,13 @@ The current library implementation, using `xyz-Impl.h` instead of standard `xyz.
362362
363363
You can use
364364
365-
```
365+
```cpp
366366
#include <ESPAsync_WiFiManager.hpp> //https://github.com/khoih-prog/ESPAsync_WiFiManager
367367
```
368368

369369
in many files. But be sure to use the following `#include <ESPAsync_WiFiManager.h>` **in just 1 `.h`, `.cpp` or `.ino` file**, which must **not be included in any other file**, to avoid `Multiple Definitions` Linker Error
370370

371-
```
371+
```cpp
372372
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
373373
#include <ESPAsync_WiFiManager.h> //https://github.com/khoih-prog/ESPAsync_WiFiManager
374374
```
@@ -1137,10 +1137,10 @@ String tempTZ = ESPAsync_wifiManager.getTimezoneName();
11371137
// .0 is Sunday
11381138

11391139
#if ESP8266
1140-
configTime(WM_config.TZ, "pool.ntp.org");
1140+
configTime(WM_config.TZ, "pool.ntp.org");
11411141
#else
1142-
//configTzTime(WM_config.TZ, "pool.ntp.org" );
1143-
configTzTime(WM_config.TZ, "time.nist.gov", "0.pool.ntp.org", "1.pool.ntp.org");
1142+
//configTzTime(WM_config.TZ, "pool.ntp.org" );
1143+
configTzTime(WM_config.TZ, "time.nist.gov", "0.pool.ntp.org", "1.pool.ntp.org");
11441144
#endif
11451145
```
11461146

0 commit comments

Comments
 (0)