Sammy Verdonck

Results 49 comments of Sammy Verdonck

After upgrading from v3.0 to v3.1 it's best to completely remove the Z2M plugin from the Domoticz Hardware page and add it again. CAUTION: this removes all of your Z2M...

What I did was add the 3.1 plugin as new hardware (and keep the 3.0 plugin). It created all new devices with new IDXes. I then replaced the old IDXes...

Wow, I was debugging some automatisation code for over an hour what appears to be OK code all along! Damn! HASS OS 2022.6.4

Any update on this?

Still an issue... New Adguard Home user and as soon as WAN goes down, none of the DNS rewrites work anymore. Nslookup shows the rewrite is working, as long as...

For me it was fixed by using Unbound as upstream DNS for my internal network: Upstream DNS settings: https://dns10.quad9.net/dns-query [/in-addr.arpa/]192.168.1.1:5553 [/ip6.arpa/]192.168.1.1:5553 [/localdom/]192.168.1.1:5553 and Private reverse DNS servers: 192.168.1.1:5553

> @mutthunaveen @Typhoan @rw377 @thermopesos I've created a fork of this repo and fixed some issues like the state undefined stuff, check it out here: https://github.com/e11en/ha-threedy-card Tnx @e11en !

Isn't it possible to delay it?

Dirty fix (I know 100% that my sensorname is correct). ``` @callback def _async_update(self, now=None): try: self.update_humidity() except ValueError as ex: if self.hass.states.get(self.sensor_id) is None: _LOGGER.debug(ex) else: _LOGGER.warning(ex) return ```...

@basschipper, I've made it a little bit cleaner with an extra check in **_async_update** on initial run. Now on initial / first run, it spits out a line in the...