jrule
jrule copied to clipboard
OpenHAB Java Rule Engine
JRulEvent has no more getState / getOldState. Looks for me that Examples 3,4,19,23,26,28 should be corrected. Yes, Examples should be moved to a compilable project as already mentioned in https://github.com/seaside1/jrule/issues/111
No MDC tagging is possible anymore. I think it's broken with the dynamic rule stuff?
adds the startup level trigger. currently untested
As described in the [standard documentation for the core rules](https://www.openhab.org/docs/configuration/rules-dsl.html#system-based-triggers), JRule should provide a rule trigger for the System Start Levels 40 and up. Example `@JRuleName("StartLevelRule") @JRuleWhenSystemReachedStartLevel(40) public void execChangedToRule()...
Many of the examples (e.g., the 1st one) import JRuleOnOffValue using the following instruction: `import static org.openhab.automation.jrule.rules.JRuleOnOffValue.ON;` or `import static org.openhab.automation.jrule.rules.JRuleOnOffValue.OFF;` However, JRuleOnOffValue is located within ...rules.value The correct import...
Many of the examples use the @JRuleWhenItemChange but mention that a JRuleOnOffValue type should be passed as arguments to the 'to' and 'from' parameters: `import static org.openhab.automation.jrule.rules.JRuleOnOffValue.ON; import static org.openhab.automation.jrule.rules.JRuleOnOffValue.OFF;...
The README is beginning to become quite overloaded, and I assume some of the information is neither correct nor complete. - Maybe split examples to separate file? - Improve doc...
Currently we have support for thing actions which is great. But I'd also love to see support for other actions like the openhab cloud sendNotification action. Could be generated code...
Howdy! First - thanks for taking on this project. It's way way way easier to build rules in an IDE and use external dependencies- this is awesome. I had a...
In Openhab 3 it is possible to trigger a rule with a DateTime item. It is a nice and neat feature, I would like to see it in JRule. As...