Skip to content
Merged
Changes from all 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
15 changes: 9 additions & 6 deletions docs/core/entity/fan.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,15 @@ Manually setting a speed must disable any set preset mode. If it is possible to

## Supported Features

| Constant | Description |
|----------|--------------------------------------|
| 'SUPPORT_DIRECTION' | The fan supports changing the direction.
| 'SUPPORT_SET_SPEED' | The fan supports setting the speed percentage and optional preset modes.
| 'SUPPORT_OSCILLATE' | The fan supports oscillation.
| 'SUPPORT_PRESET_MODE' | The fan supports preset modes.
Supported features are defined by using values in the `FanEntityFeature` enum
and are combined using the bitwise or (`|`) operator.

| Value | Description |
| ------------- | ------------------------------------------------------------------------ |
| `DIRECTION` | The fan supports changing the direction. |
| `OSCILLATE` | The fan supports oscillation. |
| `PRESET_MODE` | The fan supports preset modes. |
| `SET_SPEED` | The fan supports setting the speed percentage and optional preset modes. |

## Methods

Expand Down