Respect. 😳
The IT Department
IT: information technology. Discussion, links, and questions about software, hardware, and the IT industry.
If no luck, you can get universal washing machine boards now - just hook up your bits and it's right to go.
Thanks for the suggestion. I’ve seen them in Indian YT videos. I’m half tempted but online shopping is mostly a non-starter for me and I don’t suppose I would find that locally. I bought an Arduino clone and some relays, which might be my nuclear option.
https://www.ebay.com.au/itm/405441142984 as a possible example. Dirt cheap.
Best of luck with resetting your current one.
That’s cheaper than what I already spent on an Arduino and serial adapter to use in fiddling with this problem. I’m surprised there is only one relay on that board.
That's some dedication. You checked all the actuators, but did you check the sensors as well? A speculation might be that, if one of them is busted, the controller stalls in error. I'm not sure what the story is with minicom reporting the serial being unavailable but if you have another microcontroller on which you could enable serial, you might be able to see more details. From my own experience, I would wire up a Raspberry Pi Pico, let it run Micropython REPL via USB to see if it catches anything at all. This way you are monitoring the serial before it goes through USB and the OS.
Since the error code possibly implies a drain pump issue, the pressure fill switch would be related. There is continuity across the two pins that are not taking voltage input. When I blow into the hose, the resistence make no change. But I guess it's not a proper test. I think I need to buy a multimeter that has a frequency (Hz) function to see if the frequency changes as the water level fills.
I tested the USB to TTL adapter itself by jumping the TX and RX pins. When I type something into Minicom the character echoes back. I could perhaps try to talk to an Arduino clone (which I have on hand).
You will absolutely need gnd to be hooked up to get anything out of it. If the baud rate was incorrect, you would probably receive garbage characters rather than nothing at all.
When I connect the ground pin of the adapter to the ground pin of the w/m, the TX and RX LEDs light up (either solid or rapid fire). That must be wrong, no? The tx and rx LEDs should flash when data traverses the circuit. If we could imagine that the w/m is transmitting data nonstop, certainly Minicom is not, so at least the TX LED should have stayed unlit. I could have something dodgy going on with my ground line.
Just a thought but if you have access to an inverter or isolation transformer, you could test the machine without your house wiring being a complicating factor.
great tip! That’s something I would need to buy but I often see battery backups for PCs at my local street market which I could probably get cheaply.
AVCC is the supply voltage pin for the A/D Converter, PC3:0, and ADC7:6. It should be externally connected to VCC, even if the ADC is not used. If the ADC is used, it should be connected to VCC through a low-pass filter. Note that PC6..4 use digital supply voltage,
https://www.alldatasheet.com/datasheet-pdf/pdf/77391/ATMEL/ATMEGA32L.html
Check for VCC and AVCC voltage when the washing machine is on. I expect it to use it's internal clock, so it will be wired through a low pass filter on the board.
I’m trying to get a handle on what VCC and AVCC is. This thread gives some chatter on it but I’m still not correlating this to the TTL port.
They are talking about digital analog conversions with port C (and I think the eeprom serial port i am trying to talk to is port D).
Linux and UART is my weekness, but I wondered why you added a Baud Rate and did some digging.
This thread might be helpful.
Scrap the Baud rate and make sure you got the right permissions on /dev/ttyUSB0
VCC is the power input of the microcontroller. Without Power, it wont work. AVCC is the power input of the ADC of the microcontroller. You still want to power it, even when unsused. You're connecting it directly to the VCC because it is desired to be exactly the same voltage. If not, the microcontroller likely wont work or act up.
In your case it's very likely the ADC is used as an internal clock, so you definitely need AVCC, but it's 99% likely that it's already connected as you need.
I think they mean C for the clock (SCL) and D for the data (SDA) pin of the eeprom.
Do you have a scope? Can you look at it's TX pin when you try to talk to it? If you can see any response on the pin you should be able to figure out the baud rate from looking at that.
i don’t have one. I’ll keep my eye out for a 2nd-hand handheld one in the local street markets.
Have you searched YouTube? They sometimes have tutorials on how to do hard resets.
For example claims you can try opening and closing the door six times for a hard reset.
I spent a lot of time on YT even to the point of watching Arabic videos of my model just to see what actions were taken. I tried the door latch-unlatch trick and unplugging for a long time.. holding the cancel button. Holding the 1st auxillary button. Not sure what else there is to try apart from serial comms.
Sucks, you have any hacker spaces nearby?
There are repair cafés in my area but they reject large appliances. I might be able to remove all the components from the cabinet and wiring harness and effectively stuff all the innards in a backpack which I could then layout on a repair table. Seems like a long shot because whoever helps work on it will be equally blind about Bekos secret diagnostic steps.
You don't have to bring it there but they might have people who can give you tips.
RX and TX are serial/uart interface. Without knowing what protocol / settings / encoding the embedded firmware actually uses it might be pretty difficult to get any data in or out. With a debugger/isp (e.g. bus pirate) you might be able to extract the firmware from the embedded micro and then disassemble it
A Bus Pirate would probably be ideal. But I don’t do cloud shopping. Guess I need to see if I can find that sold in a physical shop.
Absolutely try brute forcing with bad rates.