Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion roborock/data/zeo/zeo_code_mappings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ class ZeoState(RoborockEnum):
cooling = 8
under_delay_start = 9
done = 10

aftercare = 12
waitingforaftercare = 13
Copy link
Copy Markdown
Contributor

@allenporter allenporter Dec 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should the value have underscores between words similar to under_delay_start?

(I assuming this is parsed by number and not string name)

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is indeed parsed by number and the string name is defined, so it can be changed if there are any formatting requirements for the string name.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK follow the existing pattern please where underscores are used between words

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done. Thank you.


Comment thread
Lash-L marked this conversation as resolved.
class ZeoProgram(RoborockEnum):
standard = 1
Expand Down
Loading