Mark Coombes

Results 12 comments of Mark Coombes

@sampsyo @Webunity I followed a post on Discord here with an interest in helping; I’ve got a LG fridge and dishwasher myself. I’m currently the code owner of the ecobee...

@sampsyo are you open to me refactoring some of the code? We could also implement a basic config flow to make it easier for users to obtain a refresh token...

From the ArduinoJSON site: “The Arduino Library Manager installs the ArduinoJson version 6 by default. However, using version 5 is highly recommended because version 6 is still in beta stage....

Yes it was a deliberate choice not to have the door status messages on a repeating loop because it’s not really necessary. The messages are published with the retain flag...

Then I think there’s something wrong with your NodeMCU - maybe power supply issue? Or wireless dropping out? Because mine has been running GarHAge in my own garage for months...

And all that being said, it’s trivial to add this feature so I will put it in the next update and make it a configurable option. Sound good?

@slonkar - you can use the template cover component of HA to do this. Essentially what @walthowd showed you except instead of a switch you get a cover device at...

@walthowd you could do this more simply like so: ``` - platform: template covers: garage_door: friendly_name: "Garage Door" value_template: {{ is_state('binary_sensor.garage_door', 'open') }} open_cover: service: mqtt.publish data: topic: garage/door/1/action payload:...

Possible that your esp8266 device is dropping off the wifi network?

@sam-wright The pin shouldn’t be floating as I’m enabling the INPUT_PULLUP mode for the door status input pins. So when the door is closed, the pin is pulled low, but...