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

Commit

Permalink
0.5.5
Browse files Browse the repository at this point in the history
- Add Zeroconf for ZHA discovery
  • Loading branch information
xyzroe committed Sep 29, 2021
1 parent bebdf11 commit 09e4963
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
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.5.4"
#define VERSION "0.5.5"
#endif
#ifndef BUILD_TIMESTAMP
#define BUILD_TIMESTAMP "2021-09-28 13:36:11.154460"
#define BUILD_TIMESTAMP "2021-09-29 23:40:29.613671"
#endif

6 changes: 6 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,12 @@ void setup(void)
}
DEBUG_PRINTLN(F("mDNS responder started"));
MDNS.addService("http", "tcp", 80);
MDNS.addService("zig_star_gw", "tcp", ConfigSettings.socketPort);
MDNS.addServiceTxt("zig_star_gw", "tcp", "version", "1.0");
MDNS.addServiceTxt("zig_star_gw", "tcp", "radio_type", "znp");
MDNS.addServiceTxt("zig_star_gw", "tcp", "baud_rate", String(ConfigSettings.serialSpeed));
MDNS.addServiceTxt("zig_star_gw", "tcp", "data_flow_control", "software");

#endif

if (ConfigSettings.enableWiFi || ConfigSettings.emergencyWifi)
Expand Down
2 changes: 1 addition & 1 deletion tools/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.4
0.5.5

0 comments on commit 09e4963

Please sign in to comment.