From 215344d2a8418c8a711fd28230c4ac687d077af7 Mon Sep 17 00:00:00 2001 From: Marcel Walter Date: Sun, 22 Feb 2026 01:03:49 +0100 Subject: [PATCH] change boot message --- src/Telegram.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Telegram.cpp b/src/Telegram.cpp index 0e32e4d..c378bf1 100644 --- a/src/Telegram.cpp +++ b/src/Telegram.cpp @@ -156,9 +156,9 @@ void Telegram::init() serializeJson(doc, jsonString); bot.setMyCommands(jsonString); - bot.sendMessage(TELEGRAM_BOT_OWNER, "Hi, ich bin online."); + bot.sendMessage(TELEGRAM_BOT_OWNER, "Hi, ich bin online und brauche einen neuen Zustand."); #ifdef DEBUGGER_TELEGRAM_ID - bot.sendMessage(DEBUGGER_TELEGRAM_ID, "Hi DEBUGGER, ich bin online."); + bot.sendMessage(DEBUGGER_TELEGRAM_ID, "Hi DEBUGGER, ich bin online und brauche einen neuen Zustand."); #endif bot_lasttime = millis(); }