Skip to content

Commit 5829891

Browse files
authored
Improv improvements (#33)
Web installer isn't able to configure the device on some devices. Fixed.
1 parent 37d5393 commit 5829891

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "git",
77
"url": "https://github.com/sblantipodi/arduino_bootstrapper.git"
88
},
9-
"version": "1.15.1",
9+
"version": "1.15.2",
1010
"examples": "examples/*.cpp",
1111
"exclude": "tests",
1212
"frameworks": "arduino",

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Bootstrapper
2-
version=1.15.1
2+
version=1.15.2
33
author=Davide Perini <perini.davide@dpsoftware.org>
44
maintainer=Davide Perini <perini.davide@dpsoftware.org>
55
sentence=A client library for MQTT messaging.

src/WifiManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ void WifiManager::handleImprovPacket() {
729729
uint16_t packetByte = 0;
730730
uint8_t packetLen = 9;
731731
uint8_t checksum = 0;
732-
uint8_t waitTime = 25;
732+
uint8_t waitTime = 2500;
733733
uint8_t rpcCommandType = 0;
734734
char rpcData[128];
735735
rpcData[0] = 0;

0 commit comments

Comments
 (0)