Add oscillating property to fan entity (#496)

This commit is contained in:
Xiaonan Shen 2020-05-06 00:59:29 -07:00 committed by GitHub
parent 39792dc8b3
commit b0de1aefa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,7 @@ Properties should always only return information from memory and not do I/O (lik
| ---- | ---- | ------- | ----------- | ---- | ---- | ------- | -----------
| current_direction | str | None | Return the current direction of the fan | | current_direction | str | None | Return the current direction of the fan |
| is_on | boolean | None |Return true if the entity is on | | is_on | boolean | None |Return true if the entity is on |
| oscillating | boolean | None | Return true if the fan is oscillating |
| speed | str | None | Return the current speed. One of the values in speed_list. | | speed | str | None | Return the current speed. One of the values in speed_list. |
| speed_list | list | None| Get the list of available speeds. The allowed values are "off", "low", "medium" and "high". Use the corresponding constants SPEED_OFF, SPEED_LOW, SPEED_MEDIUM, SPEED_HIGH. | | speed_list | list | None| Get the list of available speeds. The allowed values are "off", "low", "medium" and "high". Use the corresponding constants SPEED_OFF, SPEED_LOW, SPEED_MEDIUM, SPEED_HIGH. |
| supported_features | int | 0 | Flag supported features | | supported_features | int | 0 | Flag supported features |