fermentord/pkg/temperature/temperature.go

16 lines
283 B
Go
Raw Normal View History

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