Skip to content

Commit 67769b7

Browse files
committed
Just tryin something.
1 parent d36c0c0 commit 67769b7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/platformAccessory.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,21 +50,21 @@ export class HomewizardPrincessHeaterAccessory {
5050
this.service.setCharacteristic(this.platform.Characteristic.Name, this.accessory.displayName);
5151

5252
this.service.getCharacteristic(this.platform.Characteristic.TargetHeatingCoolingState)
53-
.on('set', this.setTargetHeatingCoolingState.bind(this))
54-
.on('get', this.getTargetHeatingCoolingState.bind(this));
53+
.on('set', this.setTargetHeatingCoolingState.bind(this));
54+
// .on('get', this.getTargetHeatingCoolingState.bind(this));
5555

56-
this.service.getCharacteristic(this.platform.Characteristic.CurrentHeaterCoolerState)
57-
.on('get', this.getCurrentHeaterCoolerState.bind(this));
56+
// this.service.getCharacteristic(this.platform.Characteristic.CurrentHeaterCoolerState)
57+
// .on('get', this.getCurrentHeaterCoolerState.bind(this));
5858

59-
this.service.getCharacteristic(this.platform.Characteristic.CurrentHeatingCoolingState)
60-
.on('get', this.getCurrentHeatingCoolingState.bind(this));
59+
// this.service.getCharacteristic(this.platform.Characteristic.CurrentHeatingCoolingState)
60+
// .on('get', this.getCurrentHeatingCoolingState.bind(this));
6161

6262
this.service.getCharacteristic(this.platform.Characteristic.TargetTemperature)
6363
.on('set', this.setTargetTemperature.bind(this))
64-
.on('get', this.getTargetTemperature.bind(this));
64+
// .on('get', this.getTargetTemperature.bind(this));
6565

66-
this.service.getCharacteristic(this.platform.Characteristic.CurrentTemperature)
67-
.on('get', this.getCurrentTemperature.bind(this));
66+
// this.service.getCharacteristic(this.platform.Characteristic.CurrentTemperature)
67+
// .on('get', this.getCurrentTemperature.bind(this));
6868

6969
this.wsClient.ws.on('message', this.onWsMessage.bind(this));
7070

0 commit comments

Comments
 (0)