summaryrefslogtreecommitdiffstats
path: root/fade.py
blob: 8178ad6e809079b7a73f8cdf8a15786d16a61254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#! /usr/bin/env nix-shell
#! nix-shell -i python3 -p python3 python35Packages.docopt
""" usage: run [options] NUMLEDS (loop [--skip-unchanged] [STEP] [DELAY]|single STARTVAL)

    --add-empty       essentially add a single empty led in front, does not count into NUMLEDS

    --mode=TYPE         mode of fading (Default: chain)
    --output=TYPE       output type, either json or raw (Default: json)
    --skip-unchanged    if the value in the loop is unchanged, skip the output

running with loop this script essentially becomes a generator which outputs the
next value each "DELAY"
single returns a single output with STARTVAL as starting point for the first led

NUMLEDS is the number of leds to output data for (--add-empty does not count in here)
STEP defaults to 0.01
DELAY defaults to 1 second

"""
from docopt import docopt
import time
from colorsys import hsv_to_rgb
import json
import sys

def calc_chain(numleds,val):
    divisor = 1.0 /  numleds
    ret = []
    for i in range(numleds):
        v = float(divisor * i + val) % 1
        r,g,b = hsv_to_rgb(v,0.9,1)
        ret.append([int(r*255),
                    int(g*255),
                    int(b*255)])
    return ret

def calc_single(numleds,val):
    ret = []
    for i in range(numleds):
        r,g,b = hsv_to_rgb(val,1,1)
        ret.append([int(r*255),
                    int(g*255),
                    int(b*255)])
    return ret

def main():
    args = docopt(__doc__)
    numleds = int(args['NUMLEDS'])
    mode = args['--mode']
    step = float(args['STEP'] or 0.01)
    delay = float(args['DELAY'] or 1)
    val = float(args['STARTVAL'] or 0)
    last = []
    while True:
        if mode == "chain":
            ret = calc_chain(numleds,val)
        elif mode == "single":
            ret = calc_single(numleds,val)

        if args['--add-empty']:
            ret.insert(0,[0,0,0])

        # early serialization makes comparsion easy
        ret = json.dumps(ret)
        if not (args['--skip-unchanged'] and last == ret):
            last = ret
            print(ret)
            sys.stdout.flush()
        if args['single']:
            break
        else:
            val += step % 1
            time.sleep(delay)



if __name__ == "__main__":
    main()