Skip to content

Commit

Permalink
fix: Remove console statements
Browse files Browse the repository at this point in the history
  • Loading branch information
aabdellah committed May 30, 2024
1 parent fe2fc8a commit 037b5d3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/devices/AirConditioner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,6 @@ export default class AirConditioner extends baseDevice {
const targetHeatTemperature = targetTemperature(tempHeatMinRange, tempHeatMaxRange);

if (targetHeatTemperature) {
console.debug('targetHeatTemperature: ' + targetHeatTemperature.step);
this.service.getCharacteristic(Characteristic.HeatingThresholdTemperature)
.setProps({
minValue: this.Status.convertTemperatureCelsiusFromLGToHomekit(targetHeatTemperature.min),
Expand All @@ -708,7 +707,6 @@ export default class AirConditioner extends baseDevice {
const targetCoolTemperature = targetTemperature(tempCoolMinRange, tempCoolMaxRange);

if (targetCoolTemperature) {
console.debug('targetCoolTemperature: ' + targetCoolTemperature.step);
this.service.getCharacteristic(Characteristic.CoolingThresholdTemperature)
.setProps({
minValue: this.Status.convertTemperatureCelsiusFromLGToHomekit(targetCoolTemperature.min),
Expand Down

0 comments on commit 037b5d3

Please sign in to comment.