Instantiate Peripheral on class initialization

This commit is contained in:
sqozz 2019-11-13 18:48:46 +01:00
parent 8b7e88db74
commit a91eb91ac6
1 changed files with 2 additions and 4 deletions

View File

@ -20,6 +20,7 @@ class SEMSocket():
def __init__(self, mac, auto_reconnect_timeout = None):
self.mac_address = mac
self.auto_reconnect_timeout = auto_reconnect_timeout
self._btle_device = btle.Peripheral(None ,addrType=btle.ADDR_TYPE_PUBLIC,iface=0)
try:
self.reconnect()
except self.NotConnectedException:
@ -96,10 +97,7 @@ class SEMSocket():
def connect(self):
self.disconnect()
if not self._btle_device:
self._btle_device = btle.Peripheral(self.mac_address,addrType=btle.ADDR_TYPE_PUBLIC,iface=0)
else:
self._btle_device.connect(self.mac_address)
self._btle_device.connect(self.mac_address)
self._btle_handler = self.BTLEHandler(self)
self._custom_service = self._btle_device.getServiceByUUID(0xfff0)