We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce6c096 commit 1936396Copy full SHA for 1936396
1 file changed
meshtastic/ble_interface.py
@@ -2,23 +2,22 @@
2
"""
3
import asyncio
4
import atexit
5
+import google.protobuf
6
import logging
7
import struct
8
import time
9
from threading import Thread
10
from typing import List, Optional
11
import print_color # type: ignore[import-untyped]
12
-from .protobuf import (
13
- mesh_pb2,
14
-)
15
-import google.protobuf
16
-
17
from bleak import BleakClient, BleakScanner, BLEDevice
18
from bleak.exc import BleakDBusError, BleakError
19
20
from meshtastic.mesh_interface import MeshInterface
21
+from .protobuf import (
+ mesh_pb2,
+)
22
SERVICE_UUID = "6ba1b218-15a8-461f-9fa8-5dcae273eafd"
23
TORADIO_UUID = "f75c76d2-129e-4dad-a1dd-7866124401e7"
24
FROMRADIO_UUID = "2c55e69e-4993-11ed-b878-0242ac120002"
0 commit comments