Skip to content
Snippets Groups Projects
Commit 46e30fa5 authored by fxk8y's avatar fxk8y :spider:
Browse files

Merge branch 'master' of git.services.c3pb.de:fxk8y/CyanLight

parents 9d45d130 e5244024
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env nix-shell
#!nix-shell -i python -p python3 --pure
import sys
import time
import random
from socket import *
if len(sys.argv) > 1:
hosts = sys.argv[1:]
else:
hosts = ['ringclockDOTmake', 'ringclockDOThack', 'ringclockDOTelab']
port = 4213
pixels = 24
s = socket(AF_INET, SOCK_DGRAM)
def cyan():
r = random.randint(0, 32)
g = random.randint(64, 255)
return [r, g, int(g/6), 0]
while True:
data = [1]
for _ in range(pixels):
data += cyan()
data = bytearray(b'fxbuffer') + bytearray(data)
for host in hosts:
try:
s.sendto(data, (host, port))
except:
pass
time.sleep(0.1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment