Browse Source

handle eof error during disconnect

subDesTagesMitExtraKaese 1 month ago
parent
commit
351c1bc6df
2 changed files with 6 additions and 4 deletions
  1. 2 2
      main.py
  2. 4 2
      src/bleclient.py

+ 2 - 2
main.py

@@ -28,7 +28,7 @@ async def request_and_publish_details(sensor: MqttSensor, address: str) -> None:
                     await sensor.publish(details)
                 else:
                     print("No values recieved")
-        except (EOFError, BleakError, asyncio.TimeoutError) as e:
+        except (BleakError, asyncio.TimeoutError) as e:
             print(f"Got {type(e).__name__} while fetching details: {e}")
 
 async def request_and_publish_parameters(sensor: MqttSensor, address: str) -> None:
@@ -66,7 +66,7 @@ async def run_mppt(sensor: MqttSensor, address: str):
             await asyncio.sleep(request_interval)
             if task.done() and task.exception():
                 break
-    except (EOFError, asyncio.TimeoutError, BleakDeviceNotFoundError, BleakError) as e:
+    except (asyncio.TimeoutError, BleakDeviceNotFoundError, BleakError) as e:
         print(f"{type(e).__name__} occurred: {e}")
     finally:
         task.cancel()

+ 4 - 2
src/bleclient.py

@@ -26,8 +26,10 @@ class BleClient(LumiaxClient):
 
     async def __aexit__(self, exc_type, exc, tb):
         await self.client.stop_notify(self.NOTIFY_UUID)  # Stop receiving notifications
-        await self.client.disconnect()  # Disconnect from the BLE device
-
+        try:
+            await self.client.disconnect()  # Disconnect from the BLE device
+        except EOFError:
+            pass
     def notification_handler(self, characteristic: BleakGATTCharacteristic, data: bytearray):
         if characteristic.uuid != self.NOTIFY_UUID:
             return