We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed35af3 commit c247a91Copy full SHA for c247a91
chords_ble.py
@@ -5,7 +5,7 @@
5
import argparse
6
import threading
7
8
-class NPG_Ble:
+class Chords_BLE:
9
# Class constants
10
DEVICE_NAME_PREFIX = "NPG"
11
SERVICE_UUID = "4fafc201-1fb5-459e-8fcc-c5c9c331914b"
@@ -185,11 +185,11 @@ def parse_args():
185
186
if __name__ == "__main__":
187
args = parse_args()
188
- client = NPG_Ble()
+ client = Chords_BLE()
189
190
try:
191
if args.scan:
192
- devices = asyncio.run(NPG_Ble.scan_devices())
+ devices = asyncio.run(Chords_BLE.scan_devices())
193
for dev in devices:
194
print(f"DEVICE:{dev.name}|{dev.address}")
195
elif args.connect:
0 commit comments