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

Commit

Permalink
v1.15.0 to optionally display Credentials
Browse files Browse the repository at this point in the history
### 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
  • Loading branch information
khoih-prog authored Oct 8, 2022
1 parent 85e0d4e commit fbe03eb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,13 +362,13 @@ The current library implementation, using `xyz-Impl.h` instead of standard `xyz.
You can use
```
```cpp
#include <ESPAsync_WiFiManager.hpp> //https://github.com/khoih-prog/ESPAsync_WiFiManager
```

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

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

#if ESP8266
configTime(WM_config.TZ, "pool.ntp.org");
configTime(WM_config.TZ, "pool.ntp.org");
#else
//configTzTime(WM_config.TZ, "pool.ntp.org" );
configTzTime(WM_config.TZ, "time.nist.gov", "0.pool.ntp.org", "1.pool.ntp.org");
//configTzTime(WM_config.TZ, "pool.ntp.org" );
configTzTime(WM_config.TZ, "time.nist.gov", "0.pool.ntp.org", "1.pool.ntp.org");
#endif
```

Expand Down

0 comments on commit fbe03eb

Please sign in to comment.