Skip to content

Commit

Permalink
Thermostat: get the 1st decimal place (#772)
Browse files Browse the repository at this point in the history
  • Loading branch information
irsl authored Apr 9, 2024
1 parent 634370d commit d7ed985
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions broadlink/climate.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,28 @@ def send_request(self, request: t.Sequence[int]) -> bytes:

return payload[0x02:p_len]

def _room_or_ext_temp_logic(self, payload, base_index):
base_temp = payload[base_index] / 2.0
add_offset = (payload[4] >> 3) & 1 # should offset be added?
offset_raw_value = (payload[17] >> 4) & 3 # offset value
offset = (offset_raw_value + 1) / 10 if add_offset else 0.0
return base_temp + offset

def _room_temp_logic(self, payload):
return self._room_or_ext_temp_logic(payload, 5)

def _ext_temp_logic(self, payload):
return self._room_or_ext_temp_logic(payload, 18)

def get_temp(self) -> float:
"""Return the room temperature in degrees celsius."""
payload = self.send_request([0x01, 0x03, 0x00, 0x00, 0x00, 0x08])
return payload[0x05] / 2.0
return self._room_temp_logic(payload)

def get_external_temp(self) -> float:
"""Return the external temperature in degrees celsius."""
payload = self.send_request([0x01, 0x03, 0x00, 0x00, 0x00, 0x08])
return payload[18] / 2.0
return self._ext_temp_logic(payload)

def get_full_status(self) -> dict:
"""Return the state of the device.
Expand All @@ -65,7 +78,7 @@ def get_full_status(self) -> dict:
data["active"] = (payload[4] >> 4) & 1
data["temp_manual"] = (payload[4] >> 6) & 1
data["heating_cooling"] = (payload[4] >> 7) & 1
data["room_temp"] = payload[5] / 2.0
data["room_temp"] = self._room_temp_logic(payload)
data["thermostat_temp"] = payload[6] / 2.0
data["auto_mode"] = payload[7] & 0xF
data["loop_mode"] = payload[7] >> 4
Expand All @@ -80,7 +93,7 @@ def get_full_status(self) -> dict:
data["fre"] = payload[15]
data["poweron"] = payload[16]
data["unknown"] = payload[17]
data["external_temp"] = payload[18] / 2.0
data["external_temp"] = self._ext_temp_logic(payload)
data["hour"] = payload[19]
data["min"] = payload[20]
data["sec"] = payload[21]
Expand Down Expand Up @@ -187,7 +200,9 @@ def set_temp(self, temp: float) -> None:
# Set device on(1) or off(0), does not deactivate Wifi connectivity.
# Remote lock disables control by buttons on thermostat.
# heating_cooling: heating(0) cooling(1)
def set_power(self, power: int = 1, remote_lock: int = 0, heating_cooling: int = 0) -> None:
def set_power(
self, power: int = 1, remote_lock: int = 0, heating_cooling: int = 0
) -> None:
"""Set the power state of the device."""
state = (heating_cooling << 7) + power
self.send_request([0x01, 0x06, 0x00, 0x00, remote_lock, state])
Expand Down

0 comments on commit d7ed985

Please sign in to comment.