Inital working version

This commit is contained in:
2025-05-18 22:10:14 +12:00
parent 9d35fb5002
commit 910c225542
2 changed files with 37 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
import socket
import asyncio
import httpx
from websockets import connect
async def send_color_data(color_data, servers):
"""Send color data to all configured servers."""
@@ -18,3 +20,34 @@ async def send_to_server(color_data, server):
print(f"Sent data to {server_ip}:{server_port}")
except (socket.error, ConnectionError) as e:
print(f"Error sending to {server_ip}:{server_port}: {e}")
async def post(server, endpoint, data=""):
async with httpx.AsyncClient() as client:
r = await client.post(f"http://{server}/{endpoint}", data=data)
print(server, r)
async def main():
b = bytearray(180)
try:
ws1 = await connect("ws://10.1.1.200/external")
await asyncio.gather(post("10.1.1.200", "pattern", "external"))
while True:
print("sync")
for i in range(len(b)):
b[i] = 128
await asyncio.gather(ws1.send(b))
await asyncio.sleep(5)
finally:
await ws1.close()
await asyncio.gather(post("10.1.1.200", "pattern", "off"))
if __name__ == "__main__":
asyncio.run(main())