Compare commits

..

3 Commits

Author SHA1 Message Date
sqozz 4fbd13a7b3 Add reset functions 2020-05-09 16:39:43 +02:00
sqozz de7cbecb77 Add serial and fw version property 2020-05-09 16:28:14 +02:00
sqozz 38272656cf Cleanup characteristics 2020-05-09 16:27:05 +02:00
2 changed files with 20 additions and 31 deletions

View File

@ -11,25 +11,22 @@ while True:
time.sleep(1)
try:
if socket == None:
print("Connecting... ", end="")
print("Connecting...")
# auto_reconnect_timeout enabled auto reconnect if sending a command fails. Valid values:
# None (default): everything that fails throws NotConnectedException's
# -1: infinite retries
# integer: seconds before exception is thrown
socket = SEMSocket('f0:c7:7f:0d:e7:17')
print("Success!")
print("You're now connected to: {} (Icon: {})".format(socket.name, socket.icons[0]))
if socket.login("1234") and socket.authenticated:
print("Login successful!")
socket.getSynConfig()
print()
print("=== Tariff settings ===")
print("Default charge:", socket.default_charge)
print("Night charge:", socket.night_charge)
print("Night tariff from {} to {}".format(socket.night_charge_start_time.tm_hour, socket.night_charge_end_time.tm_hour))
print()
print("=== Other settings ===")
print("Night mode:", "active" if socket.night_mode else "inactive")
print("Power protection:", socket.power_protect)
print()
print("Connected.")
#socket.login("1337")
#socket.changePassword("1234")
#socket.login("1234")
socket.getStatus()
socket.setStatus(True)
print("=== {} ({}) ===".format(socket.mac_address, "on" if socket.powered else "off"))
print("\t{}V {}A → {}W@{}Hz (PF: {})".format(socket.voltage, socket.current, socket.power, socket.frequency, socket.power_factor))
except (SEMSocket.NotConnectedException, bluepy.btle.BTLEDisconnectError, BrokenPipeError):

View File

@ -97,19 +97,17 @@ class SEMSocket():
self.authenticated = self.authenticated and success
return success
def setIcon(self, iconIdx):
cmd = bytearray([0x0f])
payload = bytearray([0x00, 0x03, iconIdx, 0x00, 0x00, 0x00, 0x00])
def clearHistory(self):
cmd = bytearray([0x15])
payload = bytearray([0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00])
msg = self.BTLEMessage(self, cmd, payload)
success = msg.send()
return success
def enableLED(self, status):
cmd = bytearray([0x0f])
payload = bytearray([0x00, 0x05, status, 0x00, 0x00, 0x00, 0x00])
def factoryReset(self):
cmd = bytearray([0x15])
payload = bytearray([0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00])
msg = self.BTLEMessage(self, cmd, payload)
success = msg.send()
return success
@ -317,13 +315,7 @@ class SEMSocket():
else:
print("5th byte of login-response is > 1:", data)
elif message_type == 0x0f: #set icon response
if data[3:6] == b'\x00\x03\x00':
# LED set successfully
pass
elif data[3:6] == b'\x00\x05\x00':
# Icon set successfully
pass
else:
if not data[3:] == b'\x00\x03\x00\x13\xff\xff':
print("Unknown response for setting icon: ", end="")
print(data[3:])
else: