-
- Downloads
Xiaomi vacuum as platform of new `vacuum` component derived from ToggleEntity, and services (#8623)
* Xiaomi vacuum as component with switch, sensors and services - Conversion from switch platform to async component. - Add services proposed in #8416 to the new component, with shorter names. - Add sensors for the vacuum robot as a selectable list from `battery`, `state`, `error`, `fanspeed`, `clean_time` and `clean_area` (the state attributes of the switch). The sensors don't poll, but listen to a signal to update the state, the switch fires this signal when updating. - Assign default icons to sensors and the switch (`mdi:google-circles-group` looks like the robot!) * path change in requirements_all (from switch platform to component) * copy pasting is a bad habit * services to the components services.yaml, modify .coveragerc * review: use with multiple hosts, fix calls to async_add_devices, fix ranges for services * `icon_for_battery_level` util method * Xiaomi vacuum as platform of new component vacuum - Created new component `vacuum` from a ToggleEntity. - Add services `turn_on`, `turn_off`, `cleaning_play_pause`, `stop`, `return_to_base`, `locate`, `set_fanspeed` and `send_command`. - Remove the main switch for the xiaomi vacuum (the toggable main entity is the switch). - Add `support flags` for the common services - Assign default icons to sensors and the switch (`mdi:google-circles-group` looks like the robot!) - Move services descriptions to a yaml file for the new component. - Update requirements_all. - Update coveragerc. * fix coveragerc * fix battery icon helper to use more icons * remove sensors, create properties and support flags for custom UI * cleaning * updated state_attrs for filtering in UI, renamed platform to simply `xiaomi` * fix platform rename * change fanspeed and expose `fanspeed_list` to use speed steps * minor fixes - Rename service `start_pause` - Add 'Error' attribute only if `got_error`. - Minor changes * rename state attrs * rename state attrs * review changes: cut fan__speed, style changes, remove logging, and more * add ATTR_COMMAND = 'command' to const * pop entity_id from service data * remove property accessor for vacuum object * lint fix * fix extra attrs names * module level functions for calling the services * params as optional keyword for `send_command` * params as optional keyword for `send_command`, remove debug logs * explicit parameters for `set_fan_speed` and `send_command` * Demo platform for the vacuum component * vacuum tests for the Demo platform * some fixes * don't omit vacuum * vacuum tests for the Xiaomi platform * fix test * fix * fix xiaomi test * fix coveragerc * test send command * fix coveragerc * fix string formatting * The coverage is to low. It need 93% or more
Showing
- .coveragerc 0 additions, 1 deletion.coveragerc
- homeassistant/components/hdmi_cec.py 0 additions, 1 deletionhomeassistant/components/hdmi_cec.py
- homeassistant/components/switch/xiaomi_vacuum.py 0 additions, 124 deletionshomeassistant/components/switch/xiaomi_vacuum.py
- homeassistant/components/telegram_bot/__init__.py 3 additions, 4 deletionshomeassistant/components/telegram_bot/__init__.py
- homeassistant/components/vacuum/__init__.py 364 additions, 0 deletionshomeassistant/components/vacuum/__init__.py
- homeassistant/components/vacuum/demo.py 203 additions, 0 deletionshomeassistant/components/vacuum/demo.py
- homeassistant/components/vacuum/services.yaml 131 additions, 0 deletionshomeassistant/components/vacuum/services.yaml
- homeassistant/components/vacuum/xiaomi.py 354 additions, 0 deletionshomeassistant/components/vacuum/xiaomi.py
- homeassistant/const.py 3 additions, 0 deletionshomeassistant/const.py
- homeassistant/util/icon.py 18 additions, 0 deletionshomeassistant/util/icon.py
- requirements_all.txt 1 addition, 1 deletionrequirements_all.txt
- tests/components/vacuum/__init__.py 1 addition, 0 deletionstests/components/vacuum/__init__.py
- tests/components/vacuum/test_demo.py 210 additions, 0 deletionstests/components/vacuum/test_demo.py
- tests/components/vacuum/test_xiaomi.py 154 additions, 0 deletionstests/components/vacuum/test_xiaomi.py
- tests/util/test_icon.py 53 additions, 0 deletionstests/util/test_icon.py
Loading
Please register or sign in to comment