fix(pkg/sensor): temperature measurement unit
This commit is contained in:
parent
1e25b55789
commit
3bb10a4f78
@ -9,6 +9,7 @@ import (
|
|||||||
"github.com/go-flucky/flucky/pkg/config"
|
"github.com/go-flucky/flucky/pkg/config"
|
||||||
"github.com/go-flucky/flucky/pkg/logfile"
|
"github.com/go-flucky/flucky/pkg/logfile"
|
||||||
"github.com/go-flucky/flucky/pkg/sensor"
|
"github.com/go-flucky/flucky/pkg/sensor"
|
||||||
|
"github.com/go-flucky/flucky/pkg/types"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -34,7 +35,7 @@ var readTemperatureCmd = &cobra.Command{
|
|||||||
temperatureSensors = cnf.GetTemperatureSensorsByName(args)
|
temperatureSensors = cnf.GetTemperatureSensorsByName(args)
|
||||||
}
|
}
|
||||||
|
|
||||||
temperatures, err := sensor.ReadTemperatures(temperatureSensors, round)
|
temperatures, err := sensor.ReadTemperatures(temperatureSensors, types.DegreeCelsius, round)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalln(err)
|
log.Fatalln(err)
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@ func Start(cnf *config.Configuration, cleanCacheInterval time.Duration, compress
|
|||||||
childContext, cancel := context.WithCancel(ctx)
|
childContext, cancel := context.WithCancel(ctx)
|
||||||
|
|
||||||
// go sensor.ReadHumiditiesContinuously(cnf.GetHumiditySensors(config.ENABLED), humidityChannel, errorChannel)
|
// go sensor.ReadHumiditiesContinuously(cnf.GetHumiditySensors(config.ENABLED), humidityChannel, errorChannel)
|
||||||
go sensor.ReadTemperaturesContinuously(childContext, cnf.GetTemperatureSensors(config.ENABLED), round, temperatureChannel, errorChannel)
|
go sensor.ReadTemperaturesContinuously(childContext, cnf.GetTemperatureSensors(config.ENABLED), types.DegreeCelsius, round, temperatureChannel, errorChannel)
|
||||||
|
|
||||||
temperatureCache := make([]*types.Temperature, 0)
|
temperatureCache := make([]*types.Temperature, 0)
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/go-flucky/flucky/pkg/sensor"
|
||||||
"github.com/go-flucky/flucky/pkg/types"
|
"github.com/go-flucky/flucky/pkg/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -63,7 +64,7 @@ func (cl *csvLogfile) ReadTemperatures() ([]*types.Temperature, error) {
|
|||||||
|
|
||||||
for _, record := range records {
|
for _, record := range records {
|
||||||
times := make([]time.Time, 0)
|
times := make([]time.Time, 0)
|
||||||
for _, j := range []int{2, 3} {
|
for _, j := range []int{3, 4} {
|
||||||
time, err := time.Parse(timeFormat, record[j])
|
time, err := time.Parse(timeFormat, record[j])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("%v %v: %v", errorParseTime, record[j], err)
|
return nil, fmt.Errorf("%v %v: %v", errorParseTime, record[j], err)
|
||||||
@ -76,25 +77,31 @@ func (cl *csvLogfile) ReadTemperatures() ([]*types.Temperature, error) {
|
|||||||
return nil, fmt.Errorf("%v %v: %v", errorParseFloat, record[1], err)
|
return nil, fmt.Errorf("%v %v: %v", errorParseFloat, record[1], err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
measurementUnit, err := sensor.SelectTemperatureMeasurementUnit(record[2])
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("%v %v: %v", errorParseMeasurementUnit, record[2], err)
|
||||||
|
}
|
||||||
|
|
||||||
temperature := &types.Temperature{
|
temperature := &types.Temperature{
|
||||||
TemperatureID: record[0],
|
TemperatureID: record[0], // 0
|
||||||
TemperatureValue: temperatureValue,
|
TemperatureValue: temperatureValue, // 1
|
||||||
TemperatureFromDate: times[0],
|
TemperatureDegree: measurementUnit, // 2
|
||||||
TemperatureTillDate: times[1],
|
TemperatureFromDate: times[0], // 3
|
||||||
SensorID: record[4],
|
TemperatureTillDate: times[1], // 4
|
||||||
|
SensorID: record[5], // 5
|
||||||
}
|
}
|
||||||
|
|
||||||
// Creation date
|
// Creation date
|
||||||
temperatureCreationDate, err := time.Parse(timeFormat, record[5])
|
temperatureCreationDate, err := time.Parse(timeFormat, record[6])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("%v %v: %v", errorParseTime, record[5], err)
|
return nil, fmt.Errorf("%v %v: %v", errorParseTime, record[5], err)
|
||||||
}
|
}
|
||||||
temperature.CreationDate = &temperatureCreationDate
|
temperature.CreationDate = &temperatureCreationDate
|
||||||
|
|
||||||
if record[6] != "" {
|
if record[7] != "" {
|
||||||
temperatureUpdateDate, err := time.Parse(timeFormat, record[6])
|
temperatureUpdateDate, err := time.Parse(timeFormat, record[7])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("%v %v: %v", errorParseTime, record[6], err)
|
return nil, fmt.Errorf("%v %v: %v", errorParseTime, record[7], err)
|
||||||
}
|
}
|
||||||
|
|
||||||
temperature.UpdateDate = &temperatureUpdateDate
|
temperature.UpdateDate = &temperatureUpdateDate
|
||||||
@ -151,6 +158,7 @@ func (cl *csvLogfile) WriteTemperatures(temperatures []*types.Temperature) error
|
|||||||
record = []string{
|
record = []string{
|
||||||
fmt.Sprintf("%v", temperature.TemperatureID),
|
fmt.Sprintf("%v", temperature.TemperatureID),
|
||||||
fmt.Sprintf("%v", temperature.TemperatureValue),
|
fmt.Sprintf("%v", temperature.TemperatureValue),
|
||||||
|
fmt.Sprintf("%v", temperature.TemperatureDegree),
|
||||||
fmt.Sprintf("%v", temperature.TemperatureFromDate.Format(timeFormat)),
|
fmt.Sprintf("%v", temperature.TemperatureFromDate.Format(timeFormat)),
|
||||||
fmt.Sprintf("%v", temperature.TemperatureTillDate.Format(timeFormat)),
|
fmt.Sprintf("%v", temperature.TemperatureTillDate.Format(timeFormat)),
|
||||||
fmt.Sprintf("%v", temperature.SensorID),
|
fmt.Sprintf("%v", temperature.SensorID),
|
||||||
@ -161,6 +169,7 @@ func (cl *csvLogfile) WriteTemperatures(temperatures []*types.Temperature) error
|
|||||||
record = []string{
|
record = []string{
|
||||||
fmt.Sprintf("%v", temperature.TemperatureID),
|
fmt.Sprintf("%v", temperature.TemperatureID),
|
||||||
fmt.Sprintf("%v", temperature.TemperatureValue),
|
fmt.Sprintf("%v", temperature.TemperatureValue),
|
||||||
|
fmt.Sprintf("%v", temperature.TemperatureDegree),
|
||||||
fmt.Sprintf("%v", temperature.TemperatureFromDate.Format(timeFormat)),
|
fmt.Sprintf("%v", temperature.TemperatureFromDate.Format(timeFormat)),
|
||||||
fmt.Sprintf("%v", temperature.TemperatureTillDate.Format(timeFormat)),
|
fmt.Sprintf("%v", temperature.TemperatureTillDate.Format(timeFormat)),
|
||||||
fmt.Sprintf("%v", temperature.SensorID),
|
fmt.Sprintf("%v", temperature.SensorID),
|
||||||
|
@ -13,6 +13,7 @@ var errorLogfileUnmarshal = errors.New("Can not unmarshal values")
|
|||||||
var errorLogfileWrite = errors.New("Can not write with given writer")
|
var errorLogfileWrite = errors.New("Can not write with given writer")
|
||||||
|
|
||||||
var errorParseFloat = errors.New("Can not parse float")
|
var errorParseFloat = errors.New("Can not parse float")
|
||||||
|
var errorParseMeasurementUnit = errors.New("Can not parse mesaurement unit")
|
||||||
var errorParseTime = errors.New("Can not parse time")
|
var errorParseTime = errors.New("Can not parse time")
|
||||||
|
|
||||||
var errorNoValidHumidityID = errors.New("No valid humidity id detected or available")
|
var errorNoValidHumidityID = errors.New("No valid humidity id detected or available")
|
||||||
|
@ -27,8 +27,8 @@ func TestConvert(t *testing.T) {
|
|||||||
markupLanguages := []string{"csv", "json", "xml"}
|
markupLanguages := []string{"csv", "json", "xml"}
|
||||||
|
|
||||||
for _, markupLanguageFrom := range markupLanguages {
|
for _, markupLanguageFrom := range markupLanguages {
|
||||||
testDir, cleanup := createTestDir(t)
|
testDir, _ := createTestDir(t)
|
||||||
defer cleanup()
|
//defer cleanup()
|
||||||
|
|
||||||
for _, markupLanguageTo := range markupLanguages {
|
for _, markupLanguageTo := range markupLanguages {
|
||||||
|
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
a469503b-fc16-4e72-8d29-7eeee08ba957,24.562,2019-06-14 21:15:28.504051541 +0200,2019-06-14 21:18:07.384104493 +0200,84eac248-6927-4db6-b6f9-7891ce2d301e,2019-06-14 21:18:07.465885864 +0200,2019-06-14 21:18:07.46587076 +0200
|
a469503b-fc16-4e72-8d29-7eeee08ba957,24.562,celsius,2019-06-14 21:15:28.504051541 +0200,2019-06-14 21:18:07.384104493 +0200,84eac248-6927-4db6-b6f9-7891ce2d301e,2019-06-14 21:18:07.465885864 +0200,2019-06-14 21:18:07.46587076 +0200
|
||||||
5f119ba3-bcea-4c3b-aabb-0406ea70f7e1,24.375,2019-06-14 21:15:28.583856443 +0200,2019-06-14 21:18:07.463893776 +0200,efcd755e-82d1-4789-a50b-355b8735b8d8,2019-06-14 21:18:07.465885864 +0200,2019-06-14 21:18:07.46587701 +0200
|
5f119ba3-bcea-4c3b-aabb-0406ea70f7e1,24.375,celsius,2019-06-14 21:15:28.583856443 +0200,2019-06-14 21:18:07.463893776 +0200,efcd755e-82d1-4789-a50b-355b8735b8d8,2019-06-14 21:18:07.465885864 +0200,2019-06-14 21:18:07.46587701 +0200
|
||||||
|
|
@ -1,2 +1,2 @@
|
|||||||
a469503b-fc16-4e72-8d29-7eeee08ba957,24.562,2019-06-14 21:15:28.504051541 +0200,2019-06-14 21:18:07.384104493 +0200,84eac248-6927-4db6-b6f9-7891ce2d301e,2019-06-14 21:18:07.465885864 +0200,2019-06-14 21:18:07.46587076 +0200
|
a469503b-fc16-4e72-8d29-7eeee08ba957,24.562,celsius,2019-06-14 21:15:28.504051541 +0200,2019-06-14 21:18:07.384104493 +0200,84eac248-6927-4db6-b6f9-7891ce2d301e,2019-06-14 21:18:07.465885864 +0200,2019-06-14 21:18:07.46587076 +0200
|
||||||
5f119ba3-bcea-4c3b-aabb-0406ea70f7e1,24.375,2019-06-14 21:15:28.583856443 +0200,2019-06-14 21:15:28.583856443 +0200,efcd755e-82d1-4789-a50b-355b8735b8d8,2019-06-14 21:18:07.465885864 +0200,
|
5f119ba3-bcea-4c3b-aabb-0406ea70f7e1,24.375,celsius,2019-06-14 21:15:28.583856443 +0200,2019-06-14 21:15:28.583856443 +0200,efcd755e-82d1-4789-a50b-355b8735b8d8,2019-06-14 21:18:07.465885864 +0200,
|
||||||
|
|
@ -2,6 +2,7 @@
|
|||||||
{
|
{
|
||||||
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
||||||
"temperature_value": "24.562",
|
"temperature_value": "24.562",
|
||||||
|
"temperature_degree": "celsius",
|
||||||
"temperature_from_date": "2019-10-01T00:00:00+02:00",
|
"temperature_from_date": "2019-10-01T00:00:00+02:00",
|
||||||
"temperature_till_date": "2019-05-01T00:00:00+02:00",
|
"temperature_till_date": "2019-05-01T00:00:00+02:00",
|
||||||
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
{
|
{
|
||||||
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
||||||
"temperature_value": "24.562",
|
"temperature_value": "24.562",
|
||||||
|
"temperature_degree": "celsius",
|
||||||
"temperature_from_date": "2019-05-01T00:00:00+02:00",
|
"temperature_from_date": "2019-05-01T00:00:00+02:00",
|
||||||
"temperature_till_date": "2019-10-01T00:00:00+02:00",
|
"temperature_till_date": "2019-10-01T00:00:00+02:00",
|
||||||
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
{
|
{
|
||||||
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
||||||
"temperature_value": "24.562",
|
"temperature_value": "24.562",
|
||||||
|
"temperature_degree": "celsius",
|
||||||
"temperature_from_date": "2019-05-01T00:00:00+02:00",
|
"temperature_from_date": "2019-05-01T00:00:00+02:00",
|
||||||
"temperature_till_date": "2019-10-01T00:00:00+02:00",
|
"temperature_till_date": "2019-10-01T00:00:00+02:00",
|
||||||
"sensor_id": "",
|
"sensor_id": "",
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
{
|
{
|
||||||
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
||||||
"temperature_value": "0",
|
"temperature_value": "0",
|
||||||
|
"temperature_degree": "celsius",
|
||||||
"temperature_from_date": "2019-05-01T00:00:00+02:00",
|
"temperature_from_date": "2019-05-01T00:00:00+02:00",
|
||||||
"temperature_till_date": "2019-10-01T00:00:00+02:00",
|
"temperature_till_date": "2019-10-01T00:00:00+02:00",
|
||||||
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
{
|
{
|
||||||
"temperature_id": "",
|
"temperature_id": "",
|
||||||
"temperature_value": "24.562",
|
"temperature_value": "24.562",
|
||||||
|
"temperature_degree": "celsius",
|
||||||
"temperature_from_date": "2019-05-01T00:00:00+02:00",
|
"temperature_from_date": "2019-05-01T00:00:00+02:00",
|
||||||
"temperature_till_date": "2019-10-01T00:00:00+02:00",
|
"temperature_till_date": "2019-10-01T00:00:00+02:00",
|
||||||
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
{
|
{
|
||||||
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
||||||
"temperature_value": "24.562",
|
"temperature_value": "24.562",
|
||||||
|
"temperature_degree": "celsius",
|
||||||
"temperature_from_date": "2019-06-14T21:15:28.504051541+02:00",
|
"temperature_from_date": "2019-06-14T21:15:28.504051541+02:00",
|
||||||
"temperature_till_date": "2019-06-14T21:18:07.384104493+02:00",
|
"temperature_till_date": "2019-06-14T21:18:07.384104493+02:00",
|
||||||
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
||||||
@ -11,6 +12,7 @@
|
|||||||
{
|
{
|
||||||
"temperature_id": "5f119ba3-bcea-4c3b-aabb-0406ea70f7e1",
|
"temperature_id": "5f119ba3-bcea-4c3b-aabb-0406ea70f7e1",
|
||||||
"temperature_value": "24.375",
|
"temperature_value": "24.375",
|
||||||
|
"temperature_degree": "celsius",
|
||||||
"temperature_from_date": "2019-06-14T21:15:28.583856443+02:00",
|
"temperature_from_date": "2019-06-14T21:15:28.583856443+02:00",
|
||||||
"temperature_till_date": "2019-06-14T21:18:07.463893776+02:00",
|
"temperature_till_date": "2019-06-14T21:18:07.463893776+02:00",
|
||||||
"sensor_id": "efcd755e-82d1-4789-a50b-355b8735b8d8",
|
"sensor_id": "efcd755e-82d1-4789-a50b-355b8735b8d8",
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
{
|
{
|
||||||
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
"temperature_id": "a469503b-fc16-4e72-8d29-7eeee08ba957",
|
||||||
"temperature_value": "24.562",
|
"temperature_value": "24.562",
|
||||||
|
"temperature_degree": "celsius",
|
||||||
"temperature_from_date": "2019-06-14T21:15:28.504051541+02:00",
|
"temperature_from_date": "2019-06-14T21:15:28.504051541+02:00",
|
||||||
"temperature_till_date": "2019-06-14T21:18:07.384104493+02:00",
|
"temperature_till_date": "2019-06-14T21:18:07.384104493+02:00",
|
||||||
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
"sensor_id": "84eac248-6927-4db6-b6f9-7891ce2d301e",
|
||||||
@ -11,6 +12,7 @@
|
|||||||
{
|
{
|
||||||
"temperature_id": "5f119ba3-bcea-4c3b-aabb-0406ea70f7e1",
|
"temperature_id": "5f119ba3-bcea-4c3b-aabb-0406ea70f7e1",
|
||||||
"temperature_value": "24.375",
|
"temperature_value": "24.375",
|
||||||
|
"temperature_degree": "celsius",
|
||||||
"temperature_from_date": "2019-06-14T21:15:28.583856443+02:00",
|
"temperature_from_date": "2019-06-14T21:15:28.583856443+02:00",
|
||||||
"temperature_till_date": "2019-06-14T21:15:28.583856443+02:00",
|
"temperature_till_date": "2019-06-14T21:15:28.583856443+02:00",
|
||||||
"sensor_id": "efcd755e-82d1-4789-a50b-355b8735b8d8",
|
"sensor_id": "efcd755e-82d1-4789-a50b-355b8735b8d8",
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
<temperature>
|
<temperature>
|
||||||
<temperature_id>a469503b-fc16-4e72-8d29-7eeee08ba957</temperature_id>
|
<temperature_id>a469503b-fc16-4e72-8d29-7eeee08ba957</temperature_id>
|
||||||
<temperature_value>24.562</temperature_value>
|
<temperature_value>24.562</temperature_value>
|
||||||
|
<temperature_degree>celsius</temperature_degree>
|
||||||
<temperature_from_date>2019-06-14T21:15:28.504051541+02:00</temperature_from_date>
|
<temperature_from_date>2019-06-14T21:15:28.504051541+02:00</temperature_from_date>
|
||||||
<temperature_till_date>2019-06-14T21:18:07.384104493+02:00</temperature_till_date>
|
<temperature_till_date>2019-06-14T21:18:07.384104493+02:00</temperature_till_date>
|
||||||
<sensor_id>84eac248-6927-4db6-b6f9-7891ce2d301e</sensor_id>
|
<sensor_id>84eac248-6927-4db6-b6f9-7891ce2d301e</sensor_id>
|
||||||
@ -11,6 +12,7 @@
|
|||||||
<temperature>
|
<temperature>
|
||||||
<temperature_id>5f119ba3-bcea-4c3b-aabb-0406ea70f7e1</temperature_id>
|
<temperature_id>5f119ba3-bcea-4c3b-aabb-0406ea70f7e1</temperature_id>
|
||||||
<temperature_value>24.375</temperature_value>
|
<temperature_value>24.375</temperature_value>
|
||||||
|
<temperature_degree>celsius</temperature_degree>
|
||||||
<temperature_from_date>2019-06-14T21:15:28.583856443+02:00</temperature_from_date>
|
<temperature_from_date>2019-06-14T21:15:28.583856443+02:00</temperature_from_date>
|
||||||
<temperature_till_date>2019-06-14T21:18:07.463893776+02:00</temperature_till_date>
|
<temperature_till_date>2019-06-14T21:18:07.463893776+02:00</temperature_till_date>
|
||||||
<sensor_id>efcd755e-82d1-4789-a50b-355b8735b8d8</sensor_id>
|
<sensor_id>efcd755e-82d1-4789-a50b-355b8735b8d8</sensor_id>
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
<temperature>
|
<temperature>
|
||||||
<temperature_id>a469503b-fc16-4e72-8d29-7eeee08ba957</temperature_id>
|
<temperature_id>a469503b-fc16-4e72-8d29-7eeee08ba957</temperature_id>
|
||||||
<temperature_value>24.562</temperature_value>
|
<temperature_value>24.562</temperature_value>
|
||||||
|
<temperature_degree>celsius</temperature_degree>
|
||||||
<temperature_from_date>2019-06-14T21:15:28.504051541+02:00</temperature_from_date>
|
<temperature_from_date>2019-06-14T21:15:28.504051541+02:00</temperature_from_date>
|
||||||
<temperature_till_date>2019-06-14T21:18:07.384104493+02:00</temperature_till_date>
|
<temperature_till_date>2019-06-14T21:18:07.384104493+02:00</temperature_till_date>
|
||||||
<sensor_id>84eac248-6927-4db6-b6f9-7891ce2d301e</sensor_id>
|
<sensor_id>84eac248-6927-4db6-b6f9-7891ce2d301e</sensor_id>
|
||||||
@ -11,6 +12,7 @@
|
|||||||
<temperature>
|
<temperature>
|
||||||
<temperature_id>5f119ba3-bcea-4c3b-aabb-0406ea70f7e1</temperature_id>
|
<temperature_id>5f119ba3-bcea-4c3b-aabb-0406ea70f7e1</temperature_id>
|
||||||
<temperature_value>24.375</temperature_value>
|
<temperature_value>24.375</temperature_value>
|
||||||
|
<temperature_degree>celsius</temperature_degree>
|
||||||
<temperature_from_date>2019-06-14T21:15:28.583856443+02:00</temperature_from_date>
|
<temperature_from_date>2019-06-14T21:15:28.583856443+02:00</temperature_from_date>
|
||||||
<temperature_till_date>2019-06-14T21:15:28.583856443+02:00</temperature_till_date>
|
<temperature_till_date>2019-06-14T21:15:28.583856443+02:00</temperature_till_date>
|
||||||
<sensor_id>efcd755e-82d1-4789-a50b-355b8735b8d8</sensor_id>
|
<sensor_id>efcd755e-82d1-4789-a50b-355b8735b8d8</sensor_id>
|
||||||
|
@ -87,7 +87,7 @@ func (s *DHT11) ReadHumidityContinously(ctx context.Context, round float64, humi
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperature measure the temperature
|
// ReadTemperature measure the temperature
|
||||||
func (s *DHT11) ReadTemperature(round float64) (*types.Temperature, error) {
|
func (s *DHT11) ReadTemperature(degree types.Degree, round float64) (*types.Temperature, error) {
|
||||||
err := dht.HostInit()
|
err := dht.HostInit()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("HostInit error: %v", err)
|
return nil, fmt.Errorf("HostInit error: %v", err)
|
||||||
@ -108,6 +108,9 @@ func (s *DHT11) ReadTemperature(round float64) (*types.Temperature, error) {
|
|||||||
return nil, fmt.Errorf("Read error: %v", err)
|
return nil, fmt.Errorf("Read error: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Convert temperature degree
|
||||||
|
temperatureValue = convertTemperatureMeasurementUnit(temperatureValue, types.DegreeCelsius, degree)
|
||||||
|
|
||||||
if round != 0 {
|
if round != 0 {
|
||||||
temperatureValue = math.Round(temperatureValue/round) * round
|
temperatureValue = math.Round(temperatureValue/round) * round
|
||||||
}
|
}
|
||||||
@ -115,6 +118,7 @@ func (s *DHT11) ReadTemperature(round float64) (*types.Temperature, error) {
|
|||||||
temperature := &types.Temperature{
|
temperature := &types.Temperature{
|
||||||
TemperatureID: uuid.NewV4().String(),
|
TemperatureID: uuid.NewV4().String(),
|
||||||
TemperatureValue: temperatureValue,
|
TemperatureValue: temperatureValue,
|
||||||
|
TemperatureDegree: degree,
|
||||||
TemperatureFromDate: time.Now(),
|
TemperatureFromDate: time.Now(),
|
||||||
TemperatureTillDate: time.Now(),
|
TemperatureTillDate: time.Now(),
|
||||||
SensorID: s.SensorID,
|
SensorID: s.SensorID,
|
||||||
@ -124,12 +128,12 @@ func (s *DHT11) ReadTemperature(round float64) (*types.Temperature, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperatureWriteIntoChannel and write values into a channel
|
// ReadTemperatureWriteIntoChannel and write values into a channel
|
||||||
func (s *DHT11) ReadTemperatureWriteIntoChannel(round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error, wg *sync.WaitGroup) {
|
func (s *DHT11) ReadTemperatureWriteIntoChannel(degree types.Degree, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error, wg *sync.WaitGroup) {
|
||||||
if wg != nil {
|
if wg != nil {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
}
|
}
|
||||||
|
|
||||||
temperature, err := s.ReadTemperature(round)
|
temperature, err := s.ReadTemperature(degree, round)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errorChannel <- err
|
errorChannel <- err
|
||||||
return
|
return
|
||||||
@ -138,14 +142,14 @@ func (s *DHT11) ReadTemperatureWriteIntoChannel(round float64, temperatureChanne
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperatureContinously into a channel until context closed
|
// ReadTemperatureContinously into a channel until context closed
|
||||||
func (s *DHT11) ReadTemperatureContinously(ctx context.Context, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error) {
|
func (s *DHT11) ReadTemperatureContinously(ctx context.Context, degree types.Degree, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error) {
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
errorChannel <- fmt.Errorf("%v: Context closed: %v", s.SensorName, ctx.Err())
|
errorChannel <- fmt.Errorf("%v: Context closed: %v", s.SensorName, ctx.Err())
|
||||||
return
|
return
|
||||||
default:
|
default:
|
||||||
s.ReadTemperatureWriteIntoChannel(round, temperatureChannel, errorChannel, nil)
|
s.ReadTemperatureWriteIntoChannel(degree, round, temperatureChannel, errorChannel, nil)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -87,7 +87,7 @@ func (s *DHT22) ReadHumidityContinously(ctx context.Context, round float64, humi
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperature measure the temperature
|
// ReadTemperature measure the temperature
|
||||||
func (s *DHT22) ReadTemperature(round float64) (*types.Temperature, error) {
|
func (s *DHT22) ReadTemperature(degree types.Degree, round float64) (*types.Temperature, error) {
|
||||||
err := dht.HostInit()
|
err := dht.HostInit()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("HostInit error: %v", err)
|
return nil, fmt.Errorf("HostInit error: %v", err)
|
||||||
@ -108,6 +108,9 @@ func (s *DHT22) ReadTemperature(round float64) (*types.Temperature, error) {
|
|||||||
return nil, fmt.Errorf("Read error: %v", err)
|
return nil, fmt.Errorf("Read error: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Convert temperature degree
|
||||||
|
temperatureValue = convertTemperatureMeasurementUnit(temperatureValue, types.DegreeCelsius, degree)
|
||||||
|
|
||||||
// round
|
// round
|
||||||
if round != 0 {
|
if round != 0 {
|
||||||
temperatureValue = math.Round(temperatureValue/round) * round
|
temperatureValue = math.Round(temperatureValue/round) * round
|
||||||
@ -116,6 +119,7 @@ func (s *DHT22) ReadTemperature(round float64) (*types.Temperature, error) {
|
|||||||
temperature := &types.Temperature{
|
temperature := &types.Temperature{
|
||||||
TemperatureID: uuid.NewV4().String(),
|
TemperatureID: uuid.NewV4().String(),
|
||||||
TemperatureValue: temperatureValue,
|
TemperatureValue: temperatureValue,
|
||||||
|
TemperatureDegree: degree,
|
||||||
TemperatureFromDate: time.Now(),
|
TemperatureFromDate: time.Now(),
|
||||||
TemperatureTillDate: time.Now(),
|
TemperatureTillDate: time.Now(),
|
||||||
SensorID: s.SensorID,
|
SensorID: s.SensorID,
|
||||||
@ -125,12 +129,12 @@ func (s *DHT22) ReadTemperature(round float64) (*types.Temperature, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperatureWriteIntoChannel and write values into a channel
|
// ReadTemperatureWriteIntoChannel and write values into a channel
|
||||||
func (s *DHT22) ReadTemperatureWriteIntoChannel(round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error, wg *sync.WaitGroup) {
|
func (s *DHT22) ReadTemperatureWriteIntoChannel(degree types.Degree, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error, wg *sync.WaitGroup) {
|
||||||
if wg != nil {
|
if wg != nil {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
}
|
}
|
||||||
|
|
||||||
temperature, err := s.ReadTemperature(round)
|
temperature, err := s.ReadTemperature(degree, round)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errorChannel <- err
|
errorChannel <- err
|
||||||
return
|
return
|
||||||
@ -139,14 +143,14 @@ func (s *DHT22) ReadTemperatureWriteIntoChannel(round float64, temperatureChanne
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperatureContinously into a channel until context closed
|
// ReadTemperatureContinously into a channel until context closed
|
||||||
func (s *DHT22) ReadTemperatureContinously(ctx context.Context, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error) {
|
func (s *DHT22) ReadTemperatureContinously(ctx context.Context, degree types.Degree, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error) {
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
errorChannel <- fmt.Errorf("%v: Context closed: %v", s.SensorName, ctx.Err())
|
errorChannel <- fmt.Errorf("%v: Context closed: %v", s.SensorName, ctx.Err())
|
||||||
return
|
return
|
||||||
default:
|
default:
|
||||||
s.ReadTemperatureWriteIntoChannel(round, temperatureChannel, errorChannel, nil)
|
s.ReadTemperatureWriteIntoChannel(degree, round, temperatureChannel, errorChannel, nil)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ func (s *DS18B20) GetSensor() *types.Sensor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperature measure the temperature
|
// ReadTemperature measure the temperature
|
||||||
func (s *DS18B20) ReadTemperature(round float64) (*types.Temperature, error) {
|
func (s *DS18B20) ReadTemperature(degree types.Degree, round float64) (*types.Temperature, error) {
|
||||||
|
|
||||||
data, err := ioutil.ReadFile(filepath.Join("/sys/bus/w1/devices", *s.WireID, "/w1_slave"))
|
data, err := ioutil.ReadFile(filepath.Join("/sys/bus/w1/devices", *s.WireID, "/w1_slave"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -52,6 +52,9 @@ func (s *DS18B20) ReadTemperature(round float64) (*types.Temperature, error) {
|
|||||||
|
|
||||||
temperatureValue := c / 1000
|
temperatureValue := c / 1000
|
||||||
|
|
||||||
|
// Convert temperature degree
|
||||||
|
temperatureValue = convertTemperatureMeasurementUnit(temperatureValue, types.DegreeCelsius, degree)
|
||||||
|
|
||||||
// round
|
// round
|
||||||
if round != 0 {
|
if round != 0 {
|
||||||
temperatureValue = math.Round(temperatureValue/round) * round
|
temperatureValue = math.Round(temperatureValue/round) * round
|
||||||
@ -60,6 +63,7 @@ func (s *DS18B20) ReadTemperature(round float64) (*types.Temperature, error) {
|
|||||||
temperature := &types.Temperature{
|
temperature := &types.Temperature{
|
||||||
TemperatureID: uuid.NewV4().String(),
|
TemperatureID: uuid.NewV4().String(),
|
||||||
TemperatureValue: temperatureValue,
|
TemperatureValue: temperatureValue,
|
||||||
|
TemperatureDegree: degree,
|
||||||
TemperatureFromDate: time.Now(),
|
TemperatureFromDate: time.Now(),
|
||||||
TemperatureTillDate: time.Now(),
|
TemperatureTillDate: time.Now(),
|
||||||
SensorID: s.SensorID,
|
SensorID: s.SensorID,
|
||||||
@ -70,12 +74,12 @@ func (s *DS18B20) ReadTemperature(round float64) (*types.Temperature, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperatureWriteIntoChannel and write values into a channel
|
// ReadTemperatureWriteIntoChannel and write values into a channel
|
||||||
func (s *DS18B20) ReadTemperatureWriteIntoChannel(round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error, wg *sync.WaitGroup) {
|
func (s *DS18B20) ReadTemperatureWriteIntoChannel(degree types.Degree, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error, wg *sync.WaitGroup) {
|
||||||
if wg != nil {
|
if wg != nil {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
}
|
}
|
||||||
|
|
||||||
temperature, err := s.ReadTemperature(round)
|
temperature, err := s.ReadTemperature(degree, round)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errorChannel <- err
|
errorChannel <- err
|
||||||
return
|
return
|
||||||
@ -84,14 +88,14 @@ func (s *DS18B20) ReadTemperatureWriteIntoChannel(round float64, temperatureChan
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperatureContinously into a channel until context closed
|
// ReadTemperatureContinously into a channel until context closed
|
||||||
func (s *DS18B20) ReadTemperatureContinously(ctx context.Context, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error) {
|
func (s *DS18B20) ReadTemperatureContinously(ctx context.Context, degree types.Degree, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error) {
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
errorChannel <- fmt.Errorf("%v: Context closed: %v", s.SensorName, ctx.Err())
|
errorChannel <- fmt.Errorf("%v: Context closed: %v", s.SensorName, ctx.Err())
|
||||||
return
|
return
|
||||||
default:
|
default:
|
||||||
s.ReadTemperatureWriteIntoChannel(round, temperatureChannel, errorChannel, nil)
|
s.ReadTemperatureWriteIntoChannel(degree, round, temperatureChannel, errorChannel, nil)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@ type HumiditySensor interface {
|
|||||||
// TemperatureSensor is a interface to describe required functions to measure temperatures
|
// TemperatureSensor is a interface to describe required functions to measure temperatures
|
||||||
type TemperatureSensor interface {
|
type TemperatureSensor interface {
|
||||||
GetSensorModel() types.SensorModel
|
GetSensorModel() types.SensorModel
|
||||||
ReadTemperature(round float64) (*types.Temperature, error)
|
ReadTemperature(degree types.Degree, round float64) (*types.Temperature, error)
|
||||||
ReadTemperatureWriteIntoChannel(round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error, wg *sync.WaitGroup)
|
ReadTemperatureWriteIntoChannel(degree types.Degree, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error, wg *sync.WaitGroup)
|
||||||
ReadTemperatureContinously(ctx context.Context, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error)
|
ReadTemperatureContinously(ctx context.Context, degree types.Degree, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error)
|
||||||
}
|
}
|
||||||
|
@ -55,7 +55,7 @@ func ReadHumiditiesContinuously(ctx context.Context, humiditySensors []HumidityS
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperatures returns a list of measured temperatures by temperature sensors
|
// ReadTemperatures returns a list of measured temperatures by temperature sensors
|
||||||
func ReadTemperatures(temperatureSensors []TemperatureSensor, round float64) ([]*types.Temperature, error) {
|
func ReadTemperatures(temperatureSensors []TemperatureSensor, degree types.Degree, round float64) ([]*types.Temperature, error) {
|
||||||
temperatureChannel := make(chan *types.Temperature, len(temperatureSensors))
|
temperatureChannel := make(chan *types.Temperature, len(temperatureSensors))
|
||||||
errorChannel := make(chan error, len(temperatureSensors))
|
errorChannel := make(chan error, len(temperatureSensors))
|
||||||
|
|
||||||
@ -63,7 +63,7 @@ func ReadTemperatures(temperatureSensors []TemperatureSensor, round float64) ([]
|
|||||||
wg.Add(len(temperatureSensors))
|
wg.Add(len(temperatureSensors))
|
||||||
|
|
||||||
for _, temperatureSensor := range temperatureSensors {
|
for _, temperatureSensor := range temperatureSensors {
|
||||||
go temperatureSensor.ReadTemperatureWriteIntoChannel(round, temperatureChannel, errorChannel, wg)
|
go temperatureSensor.ReadTemperatureWriteIntoChannel(degree, round, temperatureChannel, errorChannel, wg)
|
||||||
}
|
}
|
||||||
|
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
@ -79,21 +79,82 @@ func ReadTemperatures(temperatureSensors []TemperatureSensor, round float64) ([]
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperaturesWriteIntoChannel reads the temperature values of temperature sensors and writes them into a channel
|
// ReadTemperaturesWriteIntoChannel reads the temperature values of temperature sensors and writes them into a channel
|
||||||
func ReadTemperaturesWriteIntoChannel(ctx context.Context, temperatureSensors []TemperatureSensor, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error, wg *sync.WaitGroup) {
|
func ReadTemperaturesWriteIntoChannel(ctx context.Context, temperatureSensors []TemperatureSensor, degree types.Degree, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error, wg *sync.WaitGroup) {
|
||||||
for _, temperatureSensor := range temperatureSensors {
|
for _, temperatureSensor := range temperatureSensors {
|
||||||
temperatureSensor.ReadTemperatureWriteIntoChannel(round, temperatureChannel, errorChannel, wg)
|
temperatureSensor.ReadTemperatureWriteIntoChannel(degree, round, temperatureChannel, errorChannel, wg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReadTemperaturesContinuously reads the temperature values of temperature sensors continuously and writes them into a chann
|
// ReadTemperaturesContinuously reads the temperature values of temperature sensors continuously and writes them into a chann
|
||||||
func ReadTemperaturesContinuously(ctx context.Context, temperatureSensors []TemperatureSensor, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error) {
|
func ReadTemperaturesContinuously(ctx context.Context, temperatureSensors []TemperatureSensor, degree types.Degree, round float64, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error) {
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
errorChannel <- fmt.Errorf("Context closed: %v", ctx.Err())
|
errorChannel <- fmt.Errorf("Context closed: %v", ctx.Err())
|
||||||
return
|
return
|
||||||
default:
|
default:
|
||||||
ReadTemperaturesWriteIntoChannel(ctx, temperatureSensors, round, temperatureChannel, errorChannel, nil)
|
ReadTemperaturesWriteIntoChannel(ctx, temperatureSensors, degree, round, temperatureChannel, errorChannel, nil)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func convertTemperatureMeasurementUnit(value float64, fromDegree types.Degree, toDegree types.Degree) float64 {
|
||||||
|
|
||||||
|
switch fromDegree {
|
||||||
|
// Celsius
|
||||||
|
case types.DegreeCelsius:
|
||||||
|
switch toDegree {
|
||||||
|
// Celsius -> Celsius
|
||||||
|
case types.DegreeCelsius:
|
||||||
|
return value
|
||||||
|
// Celsius -> Fahrenheit
|
||||||
|
case types.DegreeFahrenheit:
|
||||||
|
return (value * 9 / 5) + 32
|
||||||
|
// Celsius -> Kelvin
|
||||||
|
case types.DegreeKelvin:
|
||||||
|
return value + 273.15
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fahrenheit
|
||||||
|
case types.DegreeFahrenheit:
|
||||||
|
switch toDegree {
|
||||||
|
// Fahrenheit -> Celsius
|
||||||
|
case types.DegreeCelsius:
|
||||||
|
return (value - 32) * 5 / 9
|
||||||
|
// Fahrenheit -> Fahrenheit
|
||||||
|
case types.DegreeFahrenheit:
|
||||||
|
return value
|
||||||
|
// Fahrenheit -> Kelvin
|
||||||
|
case types.DegreeKelvin:
|
||||||
|
return (value-32)*5/9 + 273.15
|
||||||
|
}
|
||||||
|
|
||||||
|
case types.DegreeKelvin:
|
||||||
|
switch toDegree {
|
||||||
|
// Kelvin -> Celsius
|
||||||
|
case types.DegreeCelsius:
|
||||||
|
return value - 273.15
|
||||||
|
// Kelvin -> Fahrenheit
|
||||||
|
case types.DegreeFahrenheit:
|
||||||
|
return (value-273.15)*9/5 + 32
|
||||||
|
// Kevin -> Kelvin
|
||||||
|
case types.DegreeKelvin:
|
||||||
|
return value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return value
|
||||||
|
}
|
||||||
|
|
||||||
|
func SelectTemperatureMeasurementUnit(unit string) (types.Degree, error) {
|
||||||
|
switch unit {
|
||||||
|
case "celsius":
|
||||||
|
return types.DegreeCelsius, nil
|
||||||
|
case "fahrenheit":
|
||||||
|
return types.DegreeFahrenheit, nil
|
||||||
|
case "kelvin":
|
||||||
|
return types.DegreeKelvin, nil
|
||||||
|
default:
|
||||||
|
return "", fmt.Errorf("Can not determine temperature measurement unit")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -8,9 +8,24 @@ import (
|
|||||||
type Temperature struct {
|
type Temperature struct {
|
||||||
TemperatureID string `json:"temperature_id" xml:"temperature_id"`
|
TemperatureID string `json:"temperature_id" xml:"temperature_id"`
|
||||||
TemperatureValue float64 `json:"temperature_value,string" xml:"temperature_value,string"`
|
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"`
|
TemperatureFromDate time.Time `json:"temperature_from_date" xml:"temperature_from_date"`
|
||||||
TemperatureTillDate time.Time `json:"temperature_till_date" xml:"temperature_till_date"`
|
TemperatureTillDate time.Time `json:"temperature_till_date" xml:"temperature_till_date"`
|
||||||
SensorID string `json:"sensor_id" xml:"sensor_id"`
|
SensorID string `json:"sensor_id" xml:"sensor_id"`
|
||||||
CreationDate *time.Time `json:"creation_date" xml:"creation_date"`
|
CreationDate *time.Time `json:"creation_date" xml:"creation_date"`
|
||||||
UpdateDate *time.Time `json:"update_date" xml:"update_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"
|
||||||
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user