Skip to content

Commit

Permalink
allow sleep interval up to 27 days
Browse files Browse the repository at this point in the history
fix #138
  • Loading branch information
universam1 committed Feb 7, 2018
1 parent e46bed1 commit 8606730
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ Check out *IOT DEVICE PULLS ITS WEIGHT IN HOME BREWING* at http://hackaday.com/2

## News

> 07.02.2018 Firmware 5.7.1: Allow longer sleep intervals longer up to 99999s == 27 days
> 03.02.2018 Firmware 5.7.0: Introduce Factory Reset feature
> 02.02.2018 Firmware 5.6.1: Support for Wifi credentials with special characters
> 02.02.2018 Firmware 5.6.2: Support for Wifi credentials with special characters
> 07.11.2017 Firmware 5.6.1: Restoring Wifi credentials, moved to HTTP client library, improved RFCAL resilience to gain more stable Wifi connection
> 17.10.2017 Firmware 5.5.4: Various fixes for CraftBeerPi, BrewPiLess and Ubidots
> 28.09.2017 Firmware 5.5.0: Recall saved Wifi credential thus persisting over configuration changes
Expand Down
2 changes: 1 addition & 1 deletion pio/src/iSpindel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ bool startConfiguration()
WiFiManagerParameter custom_name("name", "iSpindel Name", my_name,
TKIDSIZE);
WiFiManagerParameter custom_sleep("sleep", "Update Intervall (s)",
String(my_sleeptime).c_str(), 5, TYPE_NUMBER);
String(my_sleeptime).c_str(), 6, TYPE_NUMBER);
WiFiManagerParameter custom_token("token", "Token", my_token,
TKIDSIZE);
WiFiManagerParameter custom_server("server", "Server Address",
Expand Down

0 comments on commit 8606730

Please sign in to comment.