Skip to content

Commit

Permalink
climate mode reporting change for Fan Only
Browse files Browse the repository at this point in the history
  • Loading branch information
jxg81 committed Jan 20, 2024
1 parent 5825bc2 commit adfada5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/masterControllerAccessory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ export class MasterControllerAccessory {
case ClimateMode.COOL:
currentMode = this.platform.Characteristic.TargetHeaterCoolerState.COOL;
break;
// Returning climate mode of Auto when fan-only is running
// Returning climate mode of cool when fan-only is running
case ClimateMode.FAN:
currentMode = this.platform.Characteristic.TargetHeaterCoolerState.AUTO;
currentMode = this.platform.Characteristic.TargetHeaterCoolerState.COOL;
break;
default:
currentMode = 0;
Expand Down
4 changes: 2 additions & 2 deletions src/zoneControllerAccessory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,9 @@ export class ZoneControllerAccessory {
case ClimateMode.COOL:
currentMode = this.platform.Characteristic.TargetHeaterCoolerState.COOL;
break;
// Returning climate mode of Auto when fan-only is running
// Returning climate mode of cool when fan-only is running
case ClimateMode.FAN:
currentMode = this.platform.Characteristic.TargetHeaterCoolerState.AUTO;
currentMode = this.platform.Characteristic.TargetHeaterCoolerState.COOL;
break;
default:
currentMode = 0;
Expand Down

0 comments on commit adfada5

Please sign in to comment.