Skip to content

Commit

Permalink
fix: Current temperature range for freezer expanded
Browse files Browse the repository at this point in the history
  • Loading branch information
QuickSander committed Apr 7, 2021
1 parent a5b797c commit f9ef49e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/mieleFridgePlatformAccessory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ export class MieleFridgePlatformAccessory extends MieleBasePlatformAccessory {
]});

this.mainService.getCharacteristic(this.platform.Characteristic.CurrentTemperature)
.on('get', currentTemperatureCharacteristic.get.bind(currentTemperatureCharacteristic));
.on('get', currentTemperatureCharacteristic.get.bind(currentTemperatureCharacteristic))
.setProps({
minValue: -50,
maxValue: 100,
});
this.mainService.getCharacteristic(this.platform.Characteristic.TargetTemperature)
.setProps({
minValue: 1,
Expand Down

0 comments on commit f9ef49e

Please sign in to comment.