From 38f6f5ce43f83db2d8b5710e5e39abb486c2c407 Mon Sep 17 00:00:00 2001 From: CaCO3 Date: Fri, 18 Oct 2024 10:44:54 +0200 Subject: [PATCH] Update index.html --- sd-card/html/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sd-card/html/index.html b/sd-card/html/index.html index 98184a90d..c9a78ccae 100644 --- a/sd-card/html/index.html +++ b/sd-card/html/index.html @@ -194,12 +194,12 @@

An ESP32 all inclusive neural network recognition system for meter Digitizat } function HA_send_discovery() { - console.log("HA Discovery scheduled"); + console.log("Homeassistant Discovery topic sending scheduled"); var url = getDomainname() + '/mqtt_publish_discovery'; var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { - firework.launch('Sending HA discovery topics scheduled. It will get sent in the step "Publish to MQTT" of the next digitization round', 'success', 5000); + firework.launch('Sending Homeassistant discovery topics scheduled. It will get sent in the step "Publish to MQTT" of the next digitization round', 'success', 5000); } } xhttp.open("GET", url, true);