File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -308,15 +308,17 @@ export class Tado extends BaseTado {
308
308
}
309
309
310
310
if ( zone_capabilities . type == "AIR_CONDITIONING" ) {
311
+ const ac_capability = zone_capabilities . FAN || zone_capabilities . AUTO ;
312
+
311
313
if ( ac_mode ) {
312
314
config . setting . mode = ac_mode . toUpperCase ( ) as ACMode ;
313
315
}
314
316
315
- if ( verticalSwing ) {
317
+ if ( verticalSwing && ac_capability . verticalSwing ) {
316
318
config . setting . verticalSwing = verticalSwing ;
317
319
}
318
320
319
- if ( horizontalSwing ) {
321
+ if ( horizontalSwing && ac_capability . horizontalSwing ) {
320
322
config . setting . horizontalSwing = horizontalSwing ;
321
323
}
322
324
@@ -331,7 +333,7 @@ export class Tado extends BaseTado {
331
333
}
332
334
333
335
if ( fan_speed && config . setting . mode ?. toLowerCase ( ) != "dry" ) {
334
- if ( ( zone_capabilities . FAN || zone_capabilities . AUTO ) . fanLevel !== undefined ) {
336
+ if ( ac_capability . fanLevel !== undefined ) {
335
337
config . setting . fanLevel = fan_speed . toUpperCase ( ) as FanLevel ;
336
338
} else {
337
339
config . setting . fanSpeed = fan_speed . toUpperCase ( ) as FanSpeed ;
You can’t perform that action at this time.
0 commit comments