Compare commits
2 commits
420e0b327a
...
cb52436dca
Author | SHA1 | Date | |
---|---|---|---|
|
cb52436dca | ||
|
55c61e99b4 |
2 changed files with 12 additions and 2 deletions
|
@ -9,12 +9,22 @@ async def handle_client(websocket, path):
|
||||||
print("packet connected")
|
print("packet connected")
|
||||||
socket_connections[websocket] = ""
|
socket_connections[websocket] = ""
|
||||||
|
|
||||||
|
internal_count = 0
|
||||||
|
show_4 = False
|
||||||
|
|
||||||
try:
|
try:
|
||||||
while True:
|
while True:
|
||||||
print("waiting for data")
|
print("waiting for data")
|
||||||
data = await websocket.recv()
|
data = await websocket.recv()
|
||||||
if data == "Type?":
|
if data == "Type?":
|
||||||
await websocket.send("Automated")
|
await websocket.send("Automated")
|
||||||
|
else:
|
||||||
|
internal_count += 1
|
||||||
|
if internal_count > 100:
|
||||||
|
show_4 = not show_4
|
||||||
|
internal_count = 1
|
||||||
|
if show_4:
|
||||||
|
await websocket.send("[1] 100:100 200:700\n[2] 250:250 750:750\n[3] 500:300 800:800\n[4] 50:150 300:600")
|
||||||
else:
|
else:
|
||||||
await websocket.send("[1] 100:100 200:700\n[2] 250:250 750:750\n[3] 500:300 800:800")
|
await websocket.send("[1] 100:100 200:700\n[2] 250:250 750:750\n[3] 500:300 800:800")
|
||||||
except websockets.exceptions.ConnectionClosed:
|
except websockets.exceptions.ConnectionClosed:
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit f6b9c50e7ebb7b330037ab8aef3e2d58e7eef7aa
|
Subproject commit 386e632efb5a7eaef272b00a739cbda614fe70cb
|
Loading…
Reference in a new issue