1
0
mirror of https://github.com/mjg59/python-broadlink.git synced 2024-09-21 04:20:36 +02:00

check_power_raw included for mp1 devices

Export raw power state for MP1 devices
This commit is contained in:
Víctor Ferrer García 2017-01-03 06:31:04 +01:00 committed by Matthew Garrett
parent a4465a7515
commit 63e097d73f

View File

@ -286,8 +286,8 @@ class mp1(device):
sid_mask = 0x01 << (sid - 1)
return self.set_power_mask(sid_mask, state)
def check_power(self):
"""Returns the power state of the smart power strip."""
def check_power_raw(self):
"""Returns the power state of the smart power strip in raw format."""
packet = bytearray(16)
packet[0x00] = 0x0a
packet[0x02] = 0xa5
@ -307,6 +307,11 @@ class mp1(device):
state = payload[0x0e]
else:
state = ord(payload[0x0e])
return state
def check_power(self):
"""Returns the power state of the smart power strip."""
state = self.check_power_raw()
data = {}
data['s1'] = bool(state & 0x01)
data['s2'] = bool(state & 0x02)