This repository has been archived by the owner on May 10, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix version number - Fix web interface rendering error 0.6.3 - Add support for DS18B20 sensor. Works only on TTGO using GPIO 33. Shows in web browser and sends via MQTT with AutoDiscovery. Works only when the sensor is connected. - Number of active socket clients reduced to 5 to avoid hangs. Maybe #10 - Number of active socket clients now sends via MQTT with auto-discovery. Using MQTT Refresh Interval. #9 - Automatically reconnect to a Wi-Fi hotspot after being disconnected, but you still need the hotspot to be available during the gateway reboot, otherwise it will start its own hotspot. #8 - Add a checkbox to disable emergency mode in Wi-Fi settings. #11
- Loading branch information
Showing
5 changed files
with
13 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
.clang_complete | ||
bin | ||
commit | ||
todo | ||
TASK-LIST.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,9 @@ | ||
- More active socket connections | ||
- Add configuartions for Ebyte revisions | ||
|
||
- auto recoonect to wifi if no wifi at start. not run AP first. | ||
- -0.06 celsion with no onewire, add right init and checks | ||
|
||
- Add configuartions for Ebyte revisions ? | ||
- mDNS auto window opener? | ||
|
||
- Flash Zigbee using ESP32 | ||
- Erase Zigbee NVRAM using ESP32 | ||
|
||
- Time synchronization with NTP server ? | ||
|
||
+ MQTT integration for buttons, uptime, version | ||
+ Different board - auto select pins | ||
+ MQTT stats | ||
+ enable Wi-Fi if Ethernet is disconnected more than 30 seconds | ||
+ socket connection time | ||
+ hide not used stats on main page | ||
+ gzip and put to programm memory all web files | ||
+ bin files moving script | ||
+ git action to increase version | ||
+ help and update pages from github | ||
+ fix temperature sensor while wifi off | ||
+ HTML to files (not FS, imbedded) | ||
+ Uptime sensor | ||
+ mDNS ( hostname ) change option and availability by hostname.local | ||
+ Add Serial port change option | ||
+ Buttons in Web, Restart ESP, Restart Zigbee | ||
+ Enable BSL and POST request for BSL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
|
||
// AUTO GENERATED FILE, DO NOT EDIT | ||
#ifndef VERSION | ||
#define VERSION "0.6.3" | ||
#define VERSION "0.6.4" | ||
#endif | ||
#ifndef BUILD_TIMESTAMP | ||
#define BUILD_TIMESTAMP "2021-10-31 17:59:39.672556" | ||
#define BUILD_TIMESTAMP "2022-01-31 02:16:42.845206" | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.6.3 | ||
0.6.4 |