David Pace
David Pace
Hi @name-lake, I uploaded a new JAR :+1: Please delete the thing again before testing the new version. I turned the `sensor-moved` channel into a trigger channel now. Is the...
Thank you all for the great teamwork in the scope of this enhancement ❤️ @name-lake @jlaur @mherwege @GerdZanker
The battery level can only be reported as low or critically low once this is reported by the Smart Home Controller as well. In this case you will see device-specific...
I would propose to use `Optional.ofNullable()`, which can be used for these kind of `null` check chains: ```java return Optional.ofNullable(getManagementPoint(this.managementPointType)) .map(mp -> mp.getTemperatureControl()) .map(tc -> tc.getValue() ... .orElse(null); ``` You...
This is not the first time we had to deal with strange changes in behavior when updating ECJ. During [this update](https://github.com/openhab/openhab-addons/pull/19180#issuecomment-3198252389), I noticed differences in annotation inheritance and there were...