Skip to content

Commit ffa8c0c

Browse files
author
AJ Keller
authored
Merge pull request #66 from aj-ptw/master
FIX: buf where access point name was not set till first wifi manager run
2 parents f4c25ef + d4f30fa commit ffa8c0c

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v2.0.4
2+
3+
### Bug Fixes
4+
5+
* Access point name not set until wifi manager was ran for the first time.
6+
17
# v2.0.3
28

39
### Enhancements

examples/DefaultWifiShield/DefaultWifiShield.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -722,6 +722,7 @@ void setup() {
722722
#endif
723723

724724
if (WiFi.SSID().equals("")) {
725+
WiFi.softAP(wifi.getName().c_str());
725726
WiFi.mode(WIFI_AP);
726727
#ifdef DEBUG
727728
Serial.printf("No stored creds, turning wifi into access point with %d bytes on heap\n", ESP.getFreeHeap());

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=OpenBCI_Wifi
2-
version=2.0.3
2+
version=2.0.4
33
author=AJ Keller <pushtheworldllc@gmail.com>
44
maintainer=AJ Keller <pushtheworldllc@gmail.com>
55
sentence=The core of the OpenBCI Wifi Shield.

0 commit comments

Comments
 (0)