-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
28 lines (26 loc) · 870 Bytes
/
main.py
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
from effects.brightness_waves2 import brightness_waves2
from effects.colour_cycle import colour_cycle
from effects.colour_flashers import colour_flashers
from effects.colour_streams import colour_streams
from effects.colour_swap import colour_swap
from effects.colour_waves import colour_waves, colour_waves_vertical
from effects.random_colours import random_colours
from effects.random_sparkles import random_sparkles
from effects.sparkles import sparkles
from effects.streams import streams
from lib.run_utils import run_random
if __name__ == '__main__':
# run_single(colour_waves)
run_random([
brightness_waves2,
colour_cycle,
colour_flashers,
colour_streams,
colour_swap,
colour_waves,
colour_waves_vertical,
random_colours,
random_sparkles,
sparkles,
streams,
])