-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Roomba last command diagnostic sensor #139888
base: dev
Are you sure you want to change the base?
Conversation
Hey there @pschmitt, @cyr-ius, @shenxn, @Orhideous, mind taking a look at this pull request as it has been labeled with an integration ( Code owner commandsCode owners of
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds a diagnostic sensor to expose the last command run by a Roomba, including its raw parameters, to assist in troubleshooting and reproducing jobs.
- Added an additional sensor in sensor.py for "last_command" with a corresponding attributes function.
- Extended the Roomba entity in entity.py with properties to expose the last command and its parameters.
Reviewed Changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
File | Description |
---|---|
homeassistant/components/roomba/sensor.py | Added a new sensor description and extra attribute logic to handle diagnostic data. |
homeassistant/components/roomba/entity.py | Introduced properties to extract and expose last command information from vacuum_state. |
Files not reviewed (1)
- homeassistant/components/roomba/strings.json: Language not supported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't like to have this kind of entity, especially as that has a lot of arbitrary attributes.
Can you extend the diagnostic instead of creating a sensor entity and add the last command there instead?
Please take a look at the requested changes, and use the Ready for review button when you are done, thanks 👍 |
bad15da
to
28d6203
Compare
Proposed change
Add a diagnostic sensor for the last Roomba command run. This is disabled by default, but provides an attribute to get at the raw parameters used to start the running job.
Note that the top level sensor state is just the raw "command" parameter like "start" or "skip", and that the full parameters are stored into the attributes of the sensor, this is due to the 255 character limit on the sensor value. These job parameters can be very long depending on how many regions were passed in for example.
Copying the parameters into a vacuum job can be used to reproduce the job that was originally created in the Roomba app more easily.
New Sensor:

Example of vacuum job (this isn't new, just showing how this new sensor can be used to more easily configure HA). This isn't quite a seamless copy-paste, the user should remove the "command", "time", and "initiator" when copying because those should be sent by HomeAssistant automatically.
Type of change
Additional information
Checklist
ruff format homeassistant tests
)If user exposed functionality or configuration variables are added/changed:
If the code communicates with devices, web services, or third-party tools:
Updated and included derived files by running:
python3 -m script.hassfest
.requirements_all.txt
.Updated by running
python3 -m script.gen_requirements_all
.To help with the load of incoming pull requests: