Live data from Hacker News

Displaying My Washing Machine's Remaining Time with Curl, Jq, and Pizauth

tratt.net

11–20 of 165 posts

Re: Displaying My Washing Machine's Remaining Time with Curl, Jq, and Pizauth

#11
I've done a similar thing with a "dumb" washing machine using a Arduino with an attached LDR (light-dependent resistor) taped to the "door open" LED.

The Arduino sends the value of the LDR over serial port to a laptop which sends changes to the "door open" over Signal to my phone

Re: Displaying My Washing Machine's Remaining Time with Curl, Jq, and Pizauth

#12
post #4

When I first moved to Canada, I had no money. I lived in an apartment block with a coin-operated washer and drier. But I always had to go down the hall to check if my laundry was done. So I had the idea to wind some wires around the power cable to detect the electromagnetic field changes when the machine turns on and off. Then this could send a message to a Raspberry Pi which could ping me somehow. I didn't want to l…

Raspberry is an overkill for this task. A few transistors and the cheapest FM transmitter might solve this.

Re: Displaying My Washing Machine's Remaining Time with Curl, Jq, and Pizauth

#13
post #8

It is notable that washing machines lie about remaining time. Specifically, there are parts of the wash cycle that are indeterminate. How long will it take to get all the clothes wet with water - well that will depend on the water pressure and how many clothes are inside. How long will it take for the water to heat - Well that will depend on how hot it was when it came in and the grid AC voltage variation. How long w…

It's a real PITA because the dryer time is fairly consistent. Leave stuff sitting wet in the washing machine too long and it picks up a musty smell, so ideally the dryer is done before the washing machine. But the washing machine is so bad at estimating it's remaining time, and it is dependent on the load.

My drier says its 2 min left but it keeps updating the ending time... well it is somewhere near the end, just maybe measuring humidity and carrying on?

Re: Displaying My Washing Machine's Remaining Time with Curl, Jq, and Pizauth

#15
post #3

I had the same issue, unfortunately my washing machine does not have an API. I used a raspberry Pi with a camera, using OCR i was able to detect the remaining time from the display. Having an API like this would have been so much easier. I did create an opensource web app so you are able to see your remaining time, laundry history, and get (push/mail) notifications. Since you only need to push the remaining seconds t…

> unfortunately my washing machine does not have an API

I'd love to see the breakdown of who would prefer a network-connected washing machine with an API vs who would prefer a device that you have to operate with buttons and switches like a cave man.

Re: Displaying My Washing Machine's Remaining Time with Curl, Jq, and Pizauth

#16
post #12
post #4

When I first moved to Canada, I had no money. I lived in an apartment block with a coin-operated washer and drier. But I always had to go down the hall to check if my laundry was done. So I had the idea to wind some wires around the power cable to detect the electromagnetic field changes when the machine turns on and off. Then this could send a message to a Raspberry Pi which could ping me somehow. I didn't want to l…

Raspberry is an overkill for this task. A few transistors and the cheapest FM transmitter might solve this.

But I want a bit to be flipped somewhere, so I can check at my leisure. If I miss the FM transmission I have to go down the hall to check again (Over the past ten years I've missed the last 100% of all FM transmissions passing through my local area)

Re: Displaying My Washing Machine's Remaining Time with Curl, Jq, and Pizauth

#17

It is notable that washing machines lie about remaining time. Specifically, there are parts of the wash cycle that are indeterminate. How long will it take to get all the clothes wet with water - well that will depend on the water pressure and how many clothes are inside. How long will it take for the water to heat - Well that will depend on how hot it was when it came in and the grid AC voltage variation. How long w…

We bought a house, and the laundry machines did not convey with it. Feeling a bit tighter than usual, we bought a pair of older ones for $75 a piece from a local outfit that sells reused/unused building supplies.

Having endured precisely the phenomenon you're describing for the last decade, having a washer that reliably gets the job done in 45 minutes or less is pure bliss.

Yeah, it uses more water, but we're on a well and septic. My major complaint from an efficiency standpoint is that it doesn't spin out as much water as a modern machine. The dryer has to do more work accordingly.

Fortunately, we just had a nice day and put the clothesline up.

Re: Displaying My Washing Machine's Remaining Time with Curl, Jq, and Pizauth

#18
post #3

I had the same issue, unfortunately my washing machine does not have an API. I used a raspberry Pi with a camera, using OCR i was able to detect the remaining time from the display. Having an API like this would have been so much easier. I did create an opensource web app so you are able to see your remaining time, laundry history, and get (push/mail) notifications. Since you only need to push the remaining seconds t…

> unfortunately my washing machine does not have an API I'd love to see the breakdown of who would prefer a network-connected washing machine with an API vs who would prefer a device that you have to operate with buttons and switches like a cave man.

I guess a time is near when we want our washing machines and dryers to operate at peak solar power. So some kind of (very, very preferably local) api would be nice.

Re: Displaying My Washing Machine's Remaining Time with Curl, Jq, and Pizauth

#19
post #3

I had the same issue, unfortunately my washing machine does not have an API. I used a raspberry Pi with a camera, using OCR i was able to detect the remaining time from the display. Having an API like this would have been so much easier. I did create an opensource web app so you are able to see your remaining time, laundry history, and get (push/mail) notifications. Since you only need to push the remaining seconds t…

> unfortunately my washing machine does not have an API I'd love to see the breakdown of who would prefer a network-connected washing machine with an API vs who would prefer a device that you have to operate with buttons and switches like a cave man.

Caveman here. I put the washing in and then set a countdown timer on my watch.

Re: Displaying My Washing Machine's Remaining Time with Curl, Jq, and Pizauth

#20
post #3

I had the same issue, unfortunately my washing machine does not have an API. I used a raspberry Pi with a camera, using OCR i was able to detect the remaining time from the display. Having an API like this would have been so much easier. I did create an opensource web app so you are able to see your remaining time, laundry history, and get (push/mail) notifications. Since you only need to push the remaining seconds t…

> unfortunately my washing machine does not have an API I'd love to see the breakdown of who would prefer a network-connected washing machine with an API vs who would prefer a device that you have to operate with buttons and switches like a cave man.

Would be interesting to intercept the network traffic going from the washer to the manufacturer’s web service. It’s possible the API is simple enough that you could sub in your own little server that accepts and tracks the status events.
Post reply on HN