From b0de1aefa6b97385ae51f72bb6b2fc046b1a3341 Mon Sep 17 00:00:00 2001 From: Xiaonan Shen Date: Wed, 6 May 2020 00:59:29 -0700 Subject: [PATCH] Add oscillating property to fan entity (#496) --- docs/entity_fan.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/entity_fan.md b/docs/entity_fan.md index 4c4bb3d1..b06e5755 100644 --- a/docs/entity_fan.md +++ b/docs/entity_fan.md @@ -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 | | 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_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 |