Skip to content

Commit 69e4b9b

Browse files
committed
updated
1 parent c4c563f commit 69e4b9b

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

ESPAsyncWiFiManager.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -504,6 +504,9 @@ void AsyncWiFiManager::setBreakAfterConfig(boolean shouldBreak) {
504504

505505
/** Handle root or redirect to captive portal */
506506
void AsyncWiFiManager::handleRoot(AsyncWebServerRequest *request) {
507+
// AJS - maybe we should set a scan when we get to the root???
508+
// and only scan on demand? timer + on demand? plus a link to make it happen?
509+
507510
DEBUG_WM(F("Handle root"));
508511
if (captivePortal(request)) { // If caprive portal redirect instead of displaying the page.
509512
return;

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# WiFiManager
2-
ESP8266 WiFi Connection manager with fallback web configuration portal
1+
# AsyncWiFiManager
2+
ESP8266 Async WiFi Connection manager with fallback web configuration portal
33

44
[![Build Status](https://travis-ci.org/tzapu/WiFiManager.svg?branch=master)](https://travis-ci.org/tzapu/WiFiManager)
55

@@ -336,6 +336,7 @@ works with the staging release ver. 1.6.5-1044-g170995a, built on Aug 10, 2015 o
336336
The support and help I got from the community has been nothing short of phenomenal. I can't thank you guys enough. This is my first real attept in developing open source stuff and I must say, now I understand why people are so dedicated to it, it is because of all the wonderful people involved.
337337

338338
__THANK YOU__
339+
[tzapu](https://github.com/tzapu/)
339340

340341
[Shawn A](https://github.com/tablatronix)
341342

keywords.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# Datatypes (KEYWORD1)
77
#######################################
88

9-
WiFiManager KEYWORD1
10-
WiFiManagerParameter KEYWORD1
9+
AsyncWiFiManager KEYWORD1
10+
AsyncWiFiManagerParameter KEYWORD1
1111

1212

1313
#######################################

library.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "ESPAsyncWifiManager",
33
"keywords": "wifi, wi-fi",
4-
"description": "ESP8266 WiFi Connection manager with fallback web configuration portal",
4+
"description": "ESP8266 Async WiFi Connection manager with fallback web configuration portal",
55
"repository":
66
{
77
"type": "git",
8-
"url": "https://github.com/tzapu/WiFiManager.git"
8+
"url": "https://github.com/alanswx/ESPAsyncWiFiManager.git"
99
},
1010
"frameworks": "arduino",
1111
"platforms": "espressif",

library.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name=ESPAsyncWiFiManager
1+
name=ESP Async WiFi Manager
22
version=0.12
3-
author=tzapu
4-
maintainer=tzapu
5-
sentence=ESP8266 WiFi Connection manager with fallback web configuration portal
3+
author=alanswx
4+
maintainer=alanswx
5+
sentence=ESP8266 Async WiFi Connection manager with fallback web configuration portal
66
paragraph=Library for configuring ESP8266 modules WiFi credentials at runtime.
77
category=Communication
8-
url=https://github.com/tzapu/WiFiManager.git
8+
url=https://github.com/alanswx/ESPAsyncWiFiManager.git
99
architectures=esp8266

0 commit comments

Comments
 (0)