fermentord/pkg/temperature/temperature.go

14 lines
257 B
Go
Raw Permalink Normal View History

2021-09-30 18:36:41 +00:00
package temperature
2022-08-03 13:51:40 +00:00
import (
"time"
)
2021-09-30 18:36:41 +00:00
type TemperatureReading struct {
2022-08-03 13:51:40 +00:00
Time time.Time `json:"time"`
2022-08-03 18:09:02 +00:00
BrewUUID string `json:"brew_uuid"`
2022-08-03 13:51:40 +00:00
Ambient float64 `json:"ambient"`
Chamber float64 `json:"chamber"`
Wort float64 `json:"wort"`
2021-09-30 18:36:41 +00:00
}