climate: add support for quiet fan mode (#232)

Co-authored-by: J. Nick Koston <nick@koston.org>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
Michael Muré 2023-02-08 23:50:38 +01:00 committed by GitHub
parent 4dd6358573
commit 79190d02bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 22 deletions

View File

@ -774,6 +774,7 @@ enum ClimateFanMode {
CLIMATE_FAN_MIDDLE = 6;
CLIMATE_FAN_FOCUS = 7;
CLIMATE_FAN_DIFFUSE = 8;
CLIMATE_FAN_QUIET = 9;
}
enum ClimateSwingMode {
CLIMATE_SWING_OFF = 0;

File diff suppressed because one or more lines are too long

View File

@ -441,6 +441,7 @@ class ClimateFanMode(APIIntEnum):
MIDDLE = 6
FOCUS = 7
DIFFUSE = 8
QUIET = 9
class ClimateSwingMode(APIIntEnum):