#Washing machine monitor

12 messages · Page 1 of 1 (latest)

random geode
#

Reads the status lights from my dumb washer, to pull the data into Home Assistant

wild otter
#

Awesome idea! How did you build the sensors for the status lights?

jolly root
#

Can you please explain how you did it?

random geode
#

@wild otter @jolly root
the 3d printed bracket holds 6 photo resistors over the washer's status lights. they are connected to a cat 5 cable that goes to a breadboard with the resistors and whatnot that are needed to use gpio binary sensors like this:

    pin: GPIO32
    id: done
    name: Done
    icon: mdi:washing-machine-alert
    device_class: running
    filters:
    - delayed_on: 10ms
    - delayed_off: 10ms
    on_press:
      then:
      - text_sensor.template.publish:
          id: washer_status
          state: "Finished"
    on_release:
      then:
      - text_sensor.template.publish:
          id: washer_status
          state: "Off"```
brave moon
#

Very creative 👍👍👌

stable lance
#

I used an AThom-tech esphome v2 smart plug. I then setup automation to watch when the washing machine was in different cycles and from the consumed power made automations off that in HA.

#

So we get an alexa alert saying washing machine is finished.

daring dove
stable lance
#

Same thing but using an esp32 via ESPHome made by circuitsetup.us (not endorsed) and monitor the power usage on my dryer. That is a little more complicated since in the US we use 240v so needed to use two clamps and then combine them with some magic.

#

I can share the stuff if interested.

#

@daring dove ^