From db0fb54bc5d3c2ae01329ec7df53c561bb526779 Mon Sep 17 00:00:00 2001 From: Micke Prag Date: Mon, 26 Oct 2020 14:07:08 +0100 Subject: [PATCH] Expose the devicetype on mDNS Add txt field to tell the network this is a tasmota device. --- tasmota/support_network.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/tasmota/support_network.ino b/tasmota/support_network.ino index da6512acb..ed4df6705 100644 --- a/tasmota/support_network.ino +++ b/tasmota/support_network.ino @@ -72,6 +72,7 @@ void MdnsAddServiceHttp(void) { if (1 == Mdns.begun) { Mdns.begun = 2; MDNS.addService("http", "tcp", WEB_PORT); + MDNS.addServiceTxt("http", "tcp", "devicetype", "tasmota"); } }