Merge pull request #9630 from mickeprag/development

Expose the devicetype on mDNS
This commit is contained in:
Theo Arends 2020-10-26 14:21:05 +01:00 committed by GitHub
commit 3886070273
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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");
}
}