fermentord/pkg/temperature/temperature.go

14 lines
257 B
Go
Raw Normal View History

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