summaryrefslogtreecommitdiffstats
path: root/devices/temp.go
diff options
context:
space:
mode:
Diffstat (limited to 'devices/temp.go')
-rw-r--r--devices/temp.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/devices/temp.go b/devices/temp.go
index 010e7ad..247075a 100644
--- a/devices/temp.go
+++ b/devices/temp.go
@@ -1,9 +1,13 @@
package devices
+//go:generate go-bindata -pkg devices -prefix data -o smc.go data
+
import (
"log"
)
+// TODO add thermal history graph. Update when something changes?
+
var tempUpdates []func(map[string]int) map[string]error
func RegisterTemp(update func(map[string]int) map[string]error) {