Skip to content

Commit 9ba46a5

Browse files
authored
Fixing TargetHeatingCoolingModeCharacteristic
Fixing issue with the targetMode of Thermostat implementations not being able to be set due to setting isWritable = false on TargetHeatingCoolingModeCharacteristic superclass.
1 parent a7d3a2d commit 9ba46a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/beowulfe/hap/impl/characteristics/thermostat/TargetHeatingCoolingModeCharacteristic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class TargetHeatingCoolingModeCharacteristic extends
1212
private final BasicThermostat thermostat;
1313

1414
public TargetHeatingCoolingModeCharacteristic(BasicThermostat thermostat) {
15-
super("00000033-0000-1000-8000-0026BB765291", false, "Target Mode");
15+
super("00000033-0000-1000-8000-0026BB765291", true, "Target Mode");
1616
this.thermostat = thermostat;
1717
}
1818

0 commit comments

Comments
 (0)