diff options
Diffstat (limited to 'calibrate.py')
| -rwxr-xr-x | calibrate.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calibrate.py b/calibrate.py index 68efa41..f793bf6 100755 --- a/calibrate.py +++ b/calibrate.py @@ -37,14 +37,14 @@ def inc8(m): return (m+1)%256 for i in range(1024): - frames[i]=HeliosPoint(i*16,16383-(i*16),r,g,b,0) + frames[i]=HeliosPoint(i*16,16383-(i*16),r,g,b,100) r=inc8(r) g=inc8(g) b=inc8(b) try: while True: - HeliosLib.WriteFrame(0, 20000, 0, ctypes.pointer(frames[0]), 1024) + HeliosLib.WriteFrame(0, 4096, 0, ctypes.pointer(frames[0]), 1024) except KeyboardInterrupt: pass |
