We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49d3c1f commit 324d125Copy full SHA for 324d125
ble_serial/bluetooth/ble_interface.py
@@ -80,7 +80,7 @@ async def send_loop(self):
80
if data == None:
81
break # Let future end on shutdown
82
if not self.write_enabled:
83
- logging.warning(f'Got unexpected write data: {data}')
+ logging.warning(f'Ignoring unexpected write data: {data}')
84
continue
85
logging.debug(f'Sending {data}')
86
await self.dev.write_gatt_char(self.write_char, data)
0 commit comments