Skip to content

Commit c247a91

Browse files
committed
Changing the name of the class
1 parent ed35af3 commit c247a91

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

chords_ble.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import argparse
66
import threading
77

8-
class NPG_Ble:
8+
class Chords_BLE:
99
# Class constants
1010
DEVICE_NAME_PREFIX = "NPG"
1111
SERVICE_UUID = "4fafc201-1fb5-459e-8fcc-c5c9c331914b"
@@ -185,11 +185,11 @@ def parse_args():
185185

186186
if __name__ == "__main__":
187187
args = parse_args()
188-
client = NPG_Ble()
188+
client = Chords_BLE()
189189

190190
try:
191191
if args.scan:
192-
devices = asyncio.run(NPG_Ble.scan_devices())
192+
devices = asyncio.run(Chords_BLE.scan_devices())
193193
for dev in devices:
194194
print(f"DEVICE:{dev.name}|{dev.address}")
195195
elif args.connect:

0 commit comments

Comments
 (0)