Aloha,
jetzt muss ich meinem Ärger mal Luft machen. Ich habe ja gelernt, dass openHAB nicht in der Lage ist mehr als eine Time Cron Rule (mit OR Verknüpfung) ohne Fehler zu verarbeiten.
Deshalb habe ich alle Rules umgestellt auf einzelne Time Cron Rules. Jetzt stelle ich aber vermehrt fest, dass noch nicht einmal einzelne Rules zuverlässig funktionieren!
Beispiel:
Seit heute funktionieren beide Rules nicht mehr. Bin einfach sprachlos.....ehrlich gesagt, wenn das wirklich an openHAB liegt, dann ist es am besten, wenn ich wieder zu MisterHouse zurückgehe, dass hat wenigstens zuverlässig funktioniert!
Beste Grüße,
Manolo
P.S.: Ja ich habe schon einen Bugreport für die Time Cron Rules eingereicht, aber seit Anfang April OHNE Feedback
jetzt muss ich meinem Ärger mal Luft machen. Ich habe ja gelernt, dass openHAB nicht in der Lage ist mehr als eine Time Cron Rule (mit OR Verknüpfung) ohne Fehler zu verarbeiten.
Deshalb habe ich alle Rules umgestellt auf einzelne Time Cron Rules. Jetzt stelle ich aber vermehrt fest, dass noch nicht einmal einzelne Rules zuverlässig funktionieren!
Beispiel:
Code:
[COLOR=#29F914][FONT=Andale Mono][SIZE=12px]rule "Open raffstores weekdays early"[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px]when[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] Time cron "0 6 7 ? * MON-FRI"[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px]then[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] var hour = now.getHourOfDay[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] logWarn("Messages", "+++Open Raffstores in the morning early (weekdays). Holiday="+Holiday.state)[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] if(Holiday.state==OFF) {[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] logWarn("Messages", "+++Open Raffstores.")[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] postUpdate(Raffstore_Morgens, ON)[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] } else {[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] logWarn("Messages", "+++Open Raffstores in the morning delayed (Holiday).")[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] }[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px]end[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] [/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px]rule "Open raffstores weekdays"[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px]when[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] Time cron "0 22 8 ? * MON-FRI"[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px]then[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] var hour = now.getHourOfDay[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] logWarn("Messages", "+++Open Raffstores in the morning (weekdays). Holiday="+Holiday.state)[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] if(Holiday.state==ON && hour==8) {[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] logWarn("Messages", "+++Open Raffstores.")[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] postUpdate(Raffstore_Morgens, ON)[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px] }[/SIZE][/FONT][/COLOR] [COLOR=#29F914][FONT=Andale Mono][SIZE=12px]end[/SIZE][/FONT][/COLOR]
Beste Grüße,
Manolo
P.S.: Ja ich habe schon einen Bugreport für die Time Cron Rules eingereicht, aber seit Anfang April OHNE Feedback
Kommentar