forked from sqozz/sem6000
Add reset functions
This commit is contained in:
parent
de7cbecb77
commit
4fbd13a7b3
14
sem6000.py
14
sem6000.py
|
@ -97,6 +97,20 @@ class SEMSocket():
|
|||
self.authenticated = self.authenticated and success
|
||||
return success
|
||||
|
||||
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 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
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
self._name = self._name_char.read().decode("UTF-8")
|
||||
|
|
Loading…
Reference in a new issue