Initial Commit

This commit is contained in:
Nano
2026-06-01 21:28:52 +02:00
parent 456dfae3f1
commit 7be4b88b5b
1046 changed files with 2080 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
//Weihnachtsbeleuchtung Steckdosensteuerung nach Uhrzeit
rule "Steckdose Hauseingang um 16:45 Uhr einschalten"
when
Time cron "0 45 16 * * ?" // Um 16:45 Uhr
then
if (settings_SteckdoseAutomatik==ON)
{
Schaltaktor3_8Fach_SA3_Kanal_C_Schalten.sendCommand(ON)
}
end
rule "Steckdose Hauseingang um 23:00 Uhr ausschalten"
when
Time cron "0 0 23 * * ?" // Um 23:00 Uhr
then
if (settings_SteckdoseAutomatik==ON)
{
Schaltaktor3_8Fach_SA3_Kanal_C_Schalten.sendCommand(OFF)
}
end