aboutsummaryrefslogtreecommitdiff
path: root/lights.go
diff options
context:
space:
mode:
Diffstat (limited to 'lights.go')
-rw-r--r--lights.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/lights.go b/lights.go
new file mode 100644
index 0000000..b64eaed
--- /dev/null
+++ b/lights.go
@@ -0,0 +1,30 @@
+package main
+
+import (
+ "log"
+)
+
+type Light struct {
+ State struct {
+ On bool
+ Bri int
+ hue int
+ sat int
+ effect string // TODO: what is this?
+ xy []string // TODO: what is this?
+ ct int // TODO: what is this?
+ alert string
+ colormode string
+ reachable bool
+ }
+ Type string
+ Name string
+ ModelID string
+ ManufacturerName string
+ UniqueID string
+ SWVersion string // TODO: what is this?
+}
+
+func GetAllLights() {
+
+} \ No newline at end of file