-
Notifications
You must be signed in to change notification settings - Fork 1
/
blinkstick_test.go
67 lines (58 loc) · 1.39 KB
/
blinkstick_test.go
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
/*
* BlinkStickGo - A libusb-based go package for controlling the BlinkStick line of products.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* blinkstick_test.go
*/
package blinkstickgo
import "testing"
// Basic usage, setting all LEDs white
func ExampleBlinkStick() {
Init()
defer Fini()
sticks, err := FindAll()
if err != nil {
panic(err)
} else if len(sticks) == 0 {
panic("No connected BlinkStick devices for testing")
}
for _, stick := range sticks {
count := stick.GetLEDCount()
if count < 1 { // The Pros report their count as -1
err := stick.SetRGB(0, 0, 255, 255, 255)
if err != nil {
panic(err)
}
} else {
err := stick.SetAllRGB(0, 255, 255, 255)
if err != nil {
panic(err)
}
}
}
}
func TestSetRGB(t *testing.T) {
Init()
defer Fini()
sticks, err := FindAll()
if err != nil {
panic(err)
} else if len(sticks) == 0 {
panic("No connected BlinkStick devices for testing")
}
for _, stick := range sticks {
err := stick.SetRGB(0, 0, 255, 255, 255)
if err != nil {
panic(err)
}
recvData, err := stick.GetLEDData(1)
for _, chunk := range recvData {
if chunk < 252 { // Can't check if it == 255 because the Blinkstick chews things up a bit
t.Fail()
}
}
}
}