2020-02-27 18:51:28 -06:00
|
|
|
package devices
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
)
|
|
|
|
|
2020-06-09 09:03:58 -05:00
|
|
|
// TODO add thermal history graph. Update when something changes?
|
|
|
|
|
2020-02-27 18:51:28 -06:00
|
|
|
var tempUpdates []func(map[string]int) map[string]error
|
|
|
|
|
|
|
|
func RegisterTemp(update func(map[string]int) map[string]error) {
|
|
|
|
tempUpdates = append(tempUpdates, update)
|
|
|
|
}
|
|
|
|
|
|
|
|
func UpdateTemps(temps map[string]int) {
|
|
|
|
for _, f := range tempUpdates {
|
|
|
|
errs := f(temps)
|
|
|
|
if errs != nil {
|
|
|
|
for k, e := range errs {
|
2020-06-20 16:47:48 -05:00
|
|
|
log.Printf(tr.Value("error.recovfetch", "temp", k, e.Error()))
|
2020-02-27 18:51:28 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|