aboutsummaryrefslogtreecommitdiff
path: root/schedule.go
diff options
context:
space:
mode:
authorCollin Guarino <collin.guarino@gmail.com>2016-02-14 00:23:00 -0500
committerCollin Guarino <collin.guarino@gmail.com>2016-02-14 00:23:00 -0500
commit53017599b1f6fb4fd85e78bb5167da5a565387d3 (patch)
tree66e212a39e9045a9f134c0ae743b8fe1786fac3f /schedule.go
parent3f649c6c6935a1e3cf2612c4d66fc96cae60191a (diff)
Base implemention for schedule.go with structs.
Diffstat (limited to 'schedule.go')
-rw-r--r--schedule.go42
1 files changed, 42 insertions, 0 deletions
diff --git a/schedule.go b/schedule.go
new file mode 100644
index 0000000..4588a66
--- /dev/null
+++ b/schedule.go
@@ -0,0 +1,42 @@
+/*
+* schedule.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 (
+ //"fmt"
+)
+
+type Timer struct {
+ Index int
+ Name string `json:"name",omitempty`
+ Description string `json:"description",omitempty`
+ Command CommandInfo `json:"command",omitempty`
+ Time string `json:"time",omitempty`
+ Created string `json:"created",omitempty`
+ Status string `json:"status",omitempty`
+ AutoDelete bool `json:"autodelete",omitempty`
+ StartTime string `json:"starttime",omitempty`
+}
+
+type Alarm struct {
+ Index string
+ Name string `json:"name",omitempty`
+ Description string `json:"description",omitempty`
+ Command CommandInfo `json:"command",omitempty`
+ LocalTime string `json:"localtime",omitempty`
+ Time string `json:"time",omitempty`
+ Created string `json:"created",omitempty`
+ Status string `json:"status",omitempty`
+ AutoDelete bool `json:"autodelete",omitempty`
+}
+
+type CommandInfo struct {
+ Address string `json:"address",omitempty`
+ Body string `json:"body",omitempty` // TODO: may be diff type
+ Method string `json:"method",omitempty`
+}