diff options
| author | Tim Redfern <tim@getdrop.com> | 2017-12-19 20:23:55 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2017-12-19 20:23:55 +0000 |
| commit | 1ad31bb1dd58e2a321da9a5f21b5e2071c1383fc (patch) | |
| tree | 35838047e7c1579a18a06118860a5219231327b2 | |
| parent | 712ca39fb52c60f8df84b75a2893b68a3a9a85db (diff) | |
testing
| -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 |
