qrz.is/content/post/2011-08-05-the-arduino-enabled-washing-machine.md

46 lines
1.9 KiB
Markdown
Raw Normal View History

2021-07-13 19:53:07 -04:00
---
title: The Laundruino
type: post
2021-07-13 19:53:07 -04:00
date: 2011-08-05T09:58:52+00:00
url: /the-arduino-enabled-washing-machine/
tags:
- Arduino
2021-07-13 19:53:07 -04:00
---
My washing machine is located in the basement. Unfortunately, the time data displayed on the front panel is always inaccurate. So instead of constantly running down the stairs and checking if the laundry is done, I decided to connect the washing machine to my LAN and extend it's features by a simple http server. This is what I needed for it:
* 1 [arduino uno](http://arduino.cc/en/Main/ArduinoBoardUno)
* 1 [ethernet shield](http://arduino.cc/en/Main/ArduinoBoardEthernet)
2021-07-13 19:53:07 -04:00
* 1 opto-coupler (CNY17)
* 1 perfboard
* 1 resistor (150 Ohm)
In my case, getting the right signal from the washing machine was simple: It has a "Finished" LED on the front panel, so all I needed to do, was to solder it out and replace it with a two-core wire.
2021-07-13 19:53:07 -04:00
![image](/img/laundruino1_panel_small.jpg)
2021-07-13 19:53:07 -04:00
![image](/img/laundruino2_cuircuit_board_small.jpg)
2021-07-13 19:53:07 -04:00
![image](/img/laundruino3_washer_small.jpg)
2021-07-13 19:53:07 -04:00
To connect my washing machine with the arduino, I built a minimal shield with a prefboard and a CNY17. Here's how everything is put together:
2021-07-13 19:53:07 -04:00
![image](/img/laundruino4_schematics_small.jpg)
2021-07-13 19:53:07 -04:00
![image](/img/laundruino5_shield_small.jpg)
2021-07-13 19:53:07 -04:00
![image](/img/laundruino6_shield_small.jpg)
2021-07-13 19:53:07 -04:00
Now I have a LOW signal on pin A2 (digital mode) when the laundry is done and a HIGH signal if the machine is running or turned off. In my case, a loop of 100ms duration is needed every time to watch the signal because I don't get a steady voltage here (I guess the front panel LEDs might be multiplexed). If  the signal becomes LOW once in this time window, the washing machine has finished and the LED would have turned on.
2021-07-13 19:53:07 -04:00
![image](/img/laundruino7_debug_small.jpg)
2021-07-13 19:53:07 -04:00
Screenshots:
![image](/img/laundruino8_screen1.jpg)
2021-07-13 19:53:07 -04:00
![image](/img/laundruino9_screen2.jpg)
2021-07-13 19:53:07 -04:00
2022-07-10 17:37:25 -04:00
You can download the code here: [codeberg.org/mclemens](https://codeberg.org/mclemens/laundruino)