Skip to content

Commit a65fe2b

Browse files
committed
update readme & version bump to 1.0.2
1 parent 47ad6e8 commit a65fe2b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="img/Bleeper.png" width="700"/>
33
</p>
44

5-
Bleeper is a library to manage your firmware configurations written in C++ for [ESP8266 Arduino Platform](https://github.com/esp8266/Arduino).
5+
Bleeper is a library to manage your firmware configurations written in C++ for [ESP8266](https://github.com/esp8266/Arduino) and [ESP32](https://github.com/espressif/arduino-esp32) Arduino Platforms.
66

77
- [Features](#features)
88
- [Why Bleeper](#why-bleeper)
@@ -121,9 +121,9 @@ void setup() {
121121
.addDefaultWebServer()
122122
.done()
123123
.connection
124-
.setMultipleConnections({
125-
new AP(),
126-
new Wifi(&C.wifi.ssid, &C.wifi.password)
124+
.setSingleConnectionFromPriorityList({
125+
new Wifi(&C.wifi.ssid, &C.wifi.password),
126+
new AP() // fallback
127127
})
128128
.done()
129129
.storage

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
},
1010
"frameworks": "arduino",
1111
"platforms": ["espressif8266", "espressif32"],
12-
"version": "1.0.1"
12+
"version": "1.0.2"
1313
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Bleeper
2-
version=1.0.1
2+
version=1.0.2
33
author=Diego Ernst <dernst92@gmail.com>
44
maintainer=Diego Ernst <dernst92@gmail.com>
55
sentence=A library to store generic configurations.

0 commit comments

Comments
 (0)