Graph showing the accelerometer data
Status of the dryer and washer in Home Assistant
Status of the dryer and washer in Home Assistant
Top left: reed switch. Bottom left: moteino. Right: Accelerometer.
The automation and script syntax here is using a deprecated and no longer supported format.
```yaml mqtt: broker: 192.168.1.100 port: 1883 keepalive: 60 qos: 0 sensor: platform: mqtt name: "Dryer Status" state_topic: "sensor/dryer" unit_of_measurement: "" sensor 2: platform: mqtt name: "Washer Status" state_topic: "sensor/washer" unit_of_measurement: "" automation: alias: Dryer complete platform: state state_entity_id: sensor.dryer_status state_from: 'Running' state_to: 'Complete' execute_service: script.turn_on service_entity_id: script.dryer_complete automation 2: alias: Dryer emptied platform: state state_entity_id: sensor.dryer_status state_from: 'Complete' state_to: 'Empty' execute_service: script.turn_on service_entity_id: script.dryer_cleared script: dryer_complete: alias: Dryer Complete Script sequence: - alias: Pushbullet Notification execute_service: notify.notify service_data: message: "The dryer has finished its cycle, please empty it!" - alias: Living Room Lights Red execute_service: scene.turn_on service_data: entity_id: scene.red - delay: seconds: 1 - alias: Living Room Lights Off execute_service: light.turn_off service_data: entity_id: group.living_room - delay: seconds: 1 - alias: Living Room Lights Red execute_service: scene.turn_on service_data: entity_id: scene.red dryer_cleared: alias: Dryer Cleared Script sequence: - alias: Living Room Lights Off execute_service: light.turn_off service_data: entity_id: group.living_room - delay: seconds: 1 - alias: Living Room Lights Normal execute_service: scene.turn_on service_data: entity_id: scene.normal ``` Resources used: - [Inspiration and Help with Arduino code](http://www.instructables.com/id/Uber-Home-Automation-w-Arduino-Pi/step13/Washer-Dryer-Smartifier-Water-Leak-Sensor/) - [Moteino Code](https://github.com/LowPowerLab/RFM69/) ]]>