Kann es sein das OH3.3 manche Regeln nicht mehr ausführt bei OH2.5 ging alles ohne Probleme?
Folgende Regel funktioniert plötzlich nicht mehr:
Hoffe ihr könnt mir Helfen
Folgende Regel funktioniert plötzlich nicht mehr:
Code:
rule "Licht_Bad"
when
Item Licht_OG_Bad_Decke changed to 100
then
if (Licht_aut.state == ON) {
if (now.getHourOfDay >= 23 || now.getHourOfDay <6){
Licht_OG_Bad_Decke.sendCommand(48)
}
}
end
rule "Licht_Flur"
when
Item Licht_OG_Flur_Beide changed to 100
then
if (Licht_aut.state == ON) {
if (now.getHourOfDay >= 21 || now.getHourOfDay <7){
Licht_OG_Flur_Beide.sendCommand(7)
}
}
end
rule "Licht_Schlafzimmer"
when
Item Licht_OG_Schlaf_Bett changed to 100
then
if (Licht_aut.state == ON) {
if (now.getHourOfDay >= 21 || now.getHourOfDay <8){
Licht_OG_Schlaf_Bett.sendCommand(5)
}
}
end


Kommentar