Add turn_on/off to FanEntity (#21339)

This commit is contained in:
G Johansson 2024-07-09 10:26:42 +02:00 committed by GitHub
parent bd54eb40a7
commit ca53af5c41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,6 +17,8 @@ export const enum FanEntityFeature {
OSCILLATE = 2,
DIRECTION = 4,
PRESET_MODE = 8,
TURN_OFF = 16,
TURN_ON = 32,
}
interface FanEntityAttributes extends HassEntityAttributeBase {