Live data from Hacker News

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

tratt.net

161–165 of 165 posts

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

#161

Great hack, but I’m sure any engineer worth their salt winces at the thought of a machine in their home roundtripping through far away 3rd party servers (I guess they’re the manufacturer’s, but if it’s hardware I own in my house those servers are 3rd party to me) just to notify them of a numerical value when they’re sitting literally 10 meters away (I live in the countryside and experience internet interruptions not…

I’d pay more for NO firmware in my washing machine. This is beyond my desire to just keep things simple. What is the point of washing machine you can control remotely? You have to put clothes in at the start and take them out at the end. It offers no convenience.

Dumb appliances still have firmware on their microcontrollers to control things like wash program, indicators, sensor feedback, you name it. Making a full functioning appliance without the micro would incur huge engineering and BOM costs that can be replaced with a $0.50 micro.

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

#162
post #93

Earlier quoted context omitted.

I actually worked on an App for a company that made home appliances. Originally they made everything local, so direct App to Washing machine communication. They had a really hard time with that approach for a number of reasons. The first, and most obvious, reason is that getting your phone and (all) your appliances on the same network is non-trivial. Especially for a novice user. Sometimes the washing machine is in t…

> The first, and most obvious, reason is that getting your phone and (all) your appliances on the same network is non-trivial. What other networks do homes have? Every WiFi ISP router I have used provides a single network and DHCP server. Perhaps some routers provide both a public and private WiFi and the consumer doesn't understand which one they should pick but that is the fault of the ISP. > Sometimes the washing…

> Every WiFi ISP router I have used provides a single network

Actually, many provide multiple SSIDs (5GHz and 2.4GHz). While you’d think these would be interoperable, it’s a massive pain in the ass. IoT devices only have the 2.4GHz antenna. And you want your main devices on 5GHz for speed. If you combine the 2.4 and 5 networks into a single said and let band steering work, IoT devices often don’t place nicely. If they’re separate, then you have to rely on the custom local app to see a server running on the other ssid. Another issue on top of that is apps on iOS will be required to use SSL for HTTP connections, and making sure your washing machine has always up-to-date certificates is also not simple.

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

#163
post #81

Earlier quoted context omitted.

I’d absolutely pay for some features of a smart washing machine, like a way of telling whether there’s a load currently running. I live in NYC where my building has one (non-commercial) W/D set for ten residents. Climbing up 6 floors with a heavy laundry basket sucks and avoiding wasteful trips would be something I would pay a huge premium for if I could add it on.

This is solved by a scheduling system which in its most simple form would be purely mechanical: https://www.thenewbieguide.se/laundry-in-sweden/

I wish that were possible here. Looks quite ingenious actually.

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

#164

Earlier quoted context omitted.

The only thing I could agree with is if it started at at time when the spot-price of electricity was low.

I’ve thought the same. But quite anti-social for apartment dwellers

Depends on the building. The last two apartment buildings I lived in, you could hardly ever hear anything at all from neighbours. One was in a century old building, one was in a completely new building a couple of years back. YMMV.

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

#165

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

Side question: you can use Signal programmatically?

I’m using https://github.com/bbernhard/signal-cli-rest-api which exposes a REST Api
Post reply on HN