diff options
author | Collin Guarino <collin.guarino@gmail.com> | 2016-02-07 17:04:51 -0500 |
---|---|---|
committer | Collin Guarino <collin.guarino@gmail.com> | 2016-02-07 17:04:51 -0500 |
commit | 3b569742f3826ff0119d2a91669933863a3a428d (patch) | |
tree | f2d39271ef9bbcfac350554867bdbd25a886c894 | |
parent | 910ec0556232d926d76a15301a7667131f936f52 (diff) |
Configuring On/Off functions for lights.
-rw-r--r-- | light.go | 8 | ||||
-rw-r--r-- | light_test.go | 10 |
2 files changed, 11 insertions, 7 deletions
@@ -49,6 +49,14 @@ type LightState struct { XYIncrement *[2]float32 `json:"xy_inc,omitempty"` } +func (self *Light) TurnOff() { + SetLightState(self.Index, LightState{On: false}) +} + +func (self *Light) TurnOn() { + SetLightState(self.Index, LightState{On: true}) +} + // SetLightState will modify light attributes such as on/off, saturation, // brightness, and more. See `SetLightState` struct. func SetLightState(bridge *Bridge, index int, newState LightState) error { diff --git a/light_test.go b/light_test.go index a1e5f61..0a63bf8 100644 --- a/light_test.go +++ b/light_test.go @@ -22,13 +22,9 @@ func TestSetLightState(t *testing.T) { lights, _ := GetAllLights(bridge) selectedLight := lights[0] - // Turn light on, off, on again - newState := LightState{On: true,} - SetLightState(bridge, selectedLight.Index, newState) + selectedLight.TurnOn() time.Sleep(time.Second) - newState = LightState{On: false,} - SetLightState(bridge, selectedLight.Index, newState) + selectedLight.TurnOf() time.Sleep(time.Second) - newState = LightState{On: true,} - SetLightState(bridge, selectedLight.Index, newState) + selectedLight.TurnOn() } |