Heizstab kann ganz aus

Dritte Betriebsart neben Automatik und Fest: Aus schickt eine feste Leistung
von null (setMode=-1). In der Automatik liefe der Heizstab beim naechsten
Ueberschuss wieder an. Erkannt wird der Zustand daran, dass das Geraet
feste Betriebsart, aber keine Leistung meldet.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-16 10:08:13 +02:00
co-authored by Claude Opus 5
parent 357c73cf8a
commit a50905bb6c
3 changed files with 20 additions and 5 deletions
+2 -1
View File
@@ -245,7 +245,8 @@ const ENERGIEFLUSS_KATALOG = (function () {
return {
leistung: w, fluss: w, ruhe: w < 20,
neben: grad(oben) + "/" + grad(mitte) + " °C",
zeichen: [eco ? { art: "eco", titel: "Automatik (Überschuss)" } : { art: "manuell", titel: "Feste Leistung" }],
zeichen: [eco ? { art: "eco", titel: "Automatik (Überschuss)" }
: { art: "manuell", titel: w >= 20 ? "Feste Leistung" : "Aus" }],
zustand: { an: w >= 20, temps: [oben, mitte, unten] },
};
},