From b2a31e085c45069be1ee6fb36432a8544a9e591c Mon Sep 17 00:00:00 2001 From: fvanroie Date: Sat, 7 Mar 2020 21:08:39 +0100 Subject: [PATCH] Add mdns --- src/hasp_wifi.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hasp_wifi.cpp b/src/hasp_wifi.cpp index cc00fb94..cdc5ca3a 100644 --- a/src/hasp_wifi.cpp +++ b/src/hasp_wifi.cpp @@ -6,6 +6,7 @@ #include "hasp_wifi.h" #include "hasp_mqtt.h" #include "hasp_http.h" +#include "hasp_mdns.h" #include "hasp_log.h" #include "hasp_debug.h" #include "hasp_config.h" @@ -69,6 +70,7 @@ void wifiConnected(IPAddress ipaddress) mqttReconnect(); haspReconnect(); httpReconnect(); + mdnsStart(); } }