Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
0.6.4
Browse files Browse the repository at this point in the history
- 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
xyzroe committed Jan 31, 2022
1 parent 542995c commit d32f09b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
.clang_complete
bin
commit
todo
TASK-LIST.md
27 changes: 5 additions & 22 deletions TASK-LIST.md
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
4 changes: 2 additions & 2 deletions src/Version.h
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

4 changes: 4 additions & 0 deletions src/web.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -619,6 +619,10 @@ void handleRoot()
result.replace("{{dsTemp}}", "");
}
}
else
{
result.replace("{{dsTemp}}", "");
}

result.replace("{{hwRev}}", ConfigSettings.boardName);

Expand Down
2 changes: 1 addition & 1 deletion tools/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.3
0.6.4

0 comments on commit d32f09b

Please sign in to comment.