fix(pkg/sensor): temperature measurement unit

This commit is contained in:
2019-06-23 13:33:09 +02:00
parent 1e25b55789
commit 3bb10a4f78
22 changed files with 154 additions and 42 deletions

View File

@ -8,9 +8,24 @@ import (
type Temperature struct {
TemperatureID string `json:"temperature_id" xml:"temperature_id"`
TemperatureValue float64 `json:"temperature_value,string" xml:"temperature_value,string"`
TemperatureDegree Degree `json:"temperature_degree" xml:"temperature_degree"`
TemperatureFromDate time.Time `json:"temperature_from_date" xml:"temperature_from_date"`
TemperatureTillDate time.Time `json:"temperature_till_date" xml:"temperature_till_date"`
SensorID string `json:"sensor_id" xml:"sensor_id"`
CreationDate *time.Time `json:"creation_date" xml:"creation_date"`
UpdateDate *time.Time `json:"update_date" xml:"update_date"`
}
// Degree unit of measurement for temperature
type Degree string
const (
// DegreeCelsius indicates the temperature in Celsius
DegreeCelsius Degree = "celsius"
// DegreeFahrenheit indicates the temperature in Fahrenheit
DegreeFahrenheit = "fahrenheit"
// DegreeKelvin indicates the temperature in Kelvin
DegreeKelvin = "kelvin"
)