diff options
author | Collin Guarino <collin.guarino@gmail.com> | 2016-02-14 22:57:12 -0500 |
---|---|---|
committer | Collin Guarino <collin.guarino@gmail.com> | 2016-02-14 22:57:12 -0500 |
commit | 1a8b98f271396f412c0ee1b4ca2bf221a3c6a5cc (patch) | |
tree | 31c631b66ee9d2f1524c3279f74a1ea830161d74 | |
parent | 5755c3e714041281a5224d4eaa540b86ddb420af (diff) |
Started scene files.
-rw-r--r-- | group.go | 1 | ||||
-rw-r--r-- | scene.go | 12 | ||||
-rw-r--r-- | scene_test.go | 12 |
3 files changed, 25 insertions, 0 deletions
@@ -12,6 +12,7 @@ import ( "encoding/json" ) +// Group struct defines the attributes for a group of lights. type Group struct { Action struct { Alert string `json:"alert"` diff --git a/scene.go b/scene.go new file mode 100644 index 0000000..0db1e1c --- /dev/null +++ b/scene.go @@ -0,0 +1,12 @@ +/* +* scene.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 ( + +) diff --git a/scene_test.go b/scene_test.go new file mode 100644 index 0000000..4b9564b --- /dev/null +++ b/scene_test.go @@ -0,0 +1,12 @@ +/* +* scene_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 ( + +) |