MikeTheTux

Results 49 comments of MikeTheTux

Got it working using latest OH3.1.0 SNAPSHOT: [org.openhab.binding.wmbus-3.1.0-SNAPSHOT_20210305.zip](https://github.com/KuguHome/openhab-binding-wmbus/files/6093423/org.openhab.binding.wmbus-3.1.0-SNAPSHOT_20210305.zip) You need to configure `include BridgeUID` to `ON`, in order to get it discovery working under OH3: ![grafik](https://user-images.githubusercontent.com/44850211/110174701-caa76580-7e00-11eb-9f7c-39b00fa3a95f.png) Installation like described in...

> Which hardware device you use? Amber Wireless

PR https://github.com/KuguHome/openhab-binding-wmbus/pull/6

There are some incompatible changes in OH3.1.0 core. I guess they need to be resolved in order to get the binding running. I can have a look once I updated...

Please give the latest version [org.openhab.binding.wmbus-3.1.0-SNAPSHOT-20210805.zip](https://github.com/KuguHome/openhab-binding-wmbus/files/7364608/org.openhab.binding.wmbus-3.1.0-SNAPSHOT-20210805.zip) from PR https://github.com/KuguHome/openhab-binding-wmbus/pull/7 a try.

Automower API pretends that the timestamp that come from the Server are in UTC, while the one that come from the Mower are in Local Mower TimeZone. The binding treats...

Via trial and error (not strictly following the API documentation), I came to following implementation that provides valid results for me: ``` private ZonedDateTime toZonedDateTime(long timestamp, ZoneId zoneId) { Instant...

This is the final tested implementation of `toZonedDateTime` according to the automower API: ``` private ZonedDateTime toZonedDateTime(long timestamp, ZoneId zoneId) { return ZonedDateTime.ofInstant(Instant.ofEpochMilli(timestamp), ZoneId.of("UTC")).withZoneSameLocal(zoneId); } ``` In addition an optional...

> I have my evcc instance behind cloudflare zero access and if I try to connect via the app it displays the warning "server not available" I face the same...