Add support for W627F washing machine#5
Closed
Sn0w3y wants to merge 2 commits into
Closed
Conversation
This commit introduces support for the W627F series washing machines with software ID 1998. A new module, `id1998.rs`, has been added, containing the implementation for device interaction, including querying ROM code, operating time, faults, and operating mode. Additionally, the main device module, `device.rs`, has been updated to include the new `id1998` module, allowing the system to recognize and interact with devices having the software ID 1998. Next Steps for @Martinius After building with cargo build, the dump programs should now work: cargo run --example dump_memory -- /dev/ttyACM0 memory.bin cargo run --example dump_eeprom -- /dev/ttyACM0 eeprom.bin To discover the correct memory addresses for properties: 1. Dump memory/EEPROM at different machine states (idle, running, different programs) 2. Compare the dumps to identify which addresses change 3. Update the addresses in id1998.rs (currently using id419 placeholders) The property addresses (like 0x0089 for operating mode) are placeholders based on id419 and will need adjustment once the memory layout is analyzed.
This was referenced Jan 10, 2026
Owner
|
Superseded by #27 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit introduces support for the W627F series washing machines with software ID 1998. A new module,
id1998.rs, has been added, containing the implementation for device interaction, including querying ROM code, operating time, faults, and operating mode. Additionally, the main device module,device.rs, has been updated to include the newid1998module, allowing the system to recognize and interact with devices having the software ID 1998.Next Steps for @Martinius (#4)
After building with cargo build, the dump programs should now work:
cargo run --example dump_memory -- /dev/ttyACM0 memory.bin
cargo run --example dump_eeprom -- /dev/ttyACM0 eeprom.bin
To discover the correct memory addresses for properties:
The property addresses (like 0x0089 for operating mode) are placeholders based on id419 and will need adjustment once the memory layout is analyzed.