-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.py
71 lines (37 loc) · 1.06 KB
/
example.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
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
import time
from sunix_ledstrip_controller_client import Controller
from sunix_ledstrip_controller_client import LEDStripControllerClient
api = LEDStripControllerClient()
devices = api.discover_controllers()
device = Controller(api, "192.168.2.37")
def color_test():
device.turn_on()
time.sleep(1)
device.set_rgbww(0, 0, 0, 255, 255)
time.sleep(1)
device.set_rgbww(0, 0, 0, 255, 0)
time.sleep(1)
device.set_rgbww(255, 0, 0, 0, 0)
time.sleep(1)
device.set_rgbww(0, 0, 0, 255, 0)
time.sleep(1)
device.set_rgbww(0, 255, 0, 0, 0)
time.sleep(1)
device.set_rgbww(0, 0, 0, 255, 0)
time.sleep(1)
device.set_rgbww(0, 0, 255, 0, 0)
time.sleep(1)
device.set_rgbww(0, 0, 0, 255, 0)
time.sleep(1)
device.set_rgbww(0, 0, 0, 255, 255)
time.sleep(1)
device.turn_off()
# run a color test that cycles through all the base colors
color_test()
device.turn_on()
time.sleep(1)
device.set_rgbww(255, 0, 0, 255, 0)
time.sleep(1)
device.set_rgb(0, 0, 0)
time.sleep(1)
device.set_ww(0, 0)