blob: a3e1380ea86dfa5e354bfe8a10e1c08c41cdcf08 (
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
79
80
81
82
|
/*
* light_test.go
* GoHue library for Philips Hue
* Copyright (C) 2016 Collin Guarino (Collinux) collin.guarino@gmail.com
* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html
*/
package hue
import (
"github.com/collinux/GoHue"
"testing"
"time"
)
func TestSetLightState(t *testing.T) {
bridges, err := hue.FindBridges()
if err != nil {
t.Fatal(err)
}
bridge := bridges[0]
bridge.Login("427de8bd6d49f149c8398e4fc08f")
nameTest, err := bridge.GetLightByName("Desk Light") // Also tests GetAllLights
if err != nil {
t.Fatal(err)
}
_ = nameTest
selectedLight, err := bridge.GetLightByIndex(7)
if err != nil {
t.Fatal(err)
}
selectedLight.On()
selectedLight.SetBrightness(100)
time.Sleep(time.Second)
selectedLight.Off()
time.Sleep(time.Second)
selectedLight.Toggle()
time.Sleep(time.Second)
selectedLight.ColorLoop(false)
selectedLight.SetName(selectedLight.Name)
selectedLight.Blink(3)
selectedLight.Dim(20)
selectedLight.Brighten(20)
selectedLight.SetColor(hue.RED)
time.Sleep(time.Second)
selectedLight.SetColor(hue.YELLOW)
time.Sleep(time.Second)
selectedLight.SetColor(hue.ORANGE)
time.Sleep(time.Second)
selectedLight.SetColor(hue.GREEN)
time.Sleep(time.Second)
selectedLight.SetColor(hue.CYAN)
time.Sleep(time.Second)
selectedLight.SetColor(hue.BLUE)
time.Sleep(time.Second)
selectedLight.SetColor(hue.PURPLE)
time.Sleep(time.Second)
selectedLight.SetColor(hue.PINK)
time.Sleep(time.Second)
selectedLight.SetColor(hue.WHITE)
// _ := selectedLight.Delete()
}
func TestFindNewLights(t *testing.T) {
bridges, err := hue.FindBridges()
if err != nil {
t.Fatal(err)
}
bridge := bridges[0]
bridge.Login("427de8bd6d49f149c8398e4fc08f")
err = bridge.FindNewLights()
if err != nil {
t.Fatal(err)
}
}
|