|
|
@@ -1,7 +1,6 @@
|
|
|
import customtkinter as ctk
|
|
|
import json
|
|
|
from PIL import Image, ImageTk
|
|
|
-
|
|
|
import asyncio
|
|
|
from bleak import BleakScanner
|
|
|
from bleak import BleakClient
|
|
|
@@ -25,6 +24,10 @@ async def connect():
|
|
|
return target_address
|
|
|
|
|
|
currentScore = 30
|
|
|
+highestScore = 0
|
|
|
+
|
|
|
+if currentScore < highestScore :
|
|
|
+ highestScore = currentScore
|
|
|
|
|
|
async def main():
|
|
|
await connect()
|