2019-02-22 12:08:58 +00:00
|
|
|
package sensor
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-06-17 21:37:48 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"path/filepath"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2020-01-10 18:42:19 +00:00
|
|
|
"time"
|
2019-02-22 12:08:58 +00:00
|
|
|
|
2020-01-19 12:30:47 +00:00
|
|
|
"github.com/volker-raschek/flucky/pkg/internal/format"
|
|
|
|
"github.com/volker-raschek/flucky/pkg/types"
|
2019-02-22 12:08:58 +00:00
|
|
|
uuid "github.com/satori/go.uuid"
|
|
|
|
)
|
|
|
|
|
2019-06-13 19:25:32 +00:00
|
|
|
// DS18B20 is a sensor to measure humidity and temperature.
|
2019-02-22 12:08:58 +00:00
|
|
|
type DS18B20 struct {
|
|
|
|
*types.Sensor
|
|
|
|
}
|
|
|
|
|
2020-01-10 21:03:49 +00:00
|
|
|
// GetID returns the sensor id
|
|
|
|
func (s *DS18B20) GetID() string {
|
|
|
|
return s.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetTicker returns a new ticker, which tick every when the sensor should be read
|
|
|
|
func (s *DS18B20) GetTicker() *time.Ticker {
|
|
|
|
duration, err := time.ParseDuration(s.TickDuration)
|
|
|
|
if err != nil {
|
|
|
|
duration = time.Minute
|
|
|
|
}
|
|
|
|
return time.NewTicker(duration)
|
2019-06-13 19:25:32 +00:00
|
|
|
}
|
|
|
|
|
2019-06-25 20:22:34 +00:00
|
|
|
// Read measured values
|
2019-07-02 20:33:01 +00:00
|
|
|
func (s *DS18B20) Read() ([]*types.MeasuredValue, error) {
|
2019-02-22 12:08:58 +00:00
|
|
|
|
2019-06-27 07:17:34 +00:00
|
|
|
if s.WireID == nil {
|
2020-01-10 21:03:49 +00:00
|
|
|
return nil, fmt.Errorf("WireID is not specified for sensor %v", s.Name)
|
2019-06-27 07:17:34 +00:00
|
|
|
}
|
|
|
|
|
2019-06-17 21:37:48 +00:00
|
|
|
data, err := ioutil.ReadFile(filepath.Join("/sys/bus/w1/devices", *s.WireID, "/w1_slave"))
|
2019-02-22 12:08:58 +00:00
|
|
|
if err != nil {
|
2020-01-10 21:03:49 +00:00
|
|
|
return nil, fmt.Errorf("Can not read data from sensor %v", s.Name)
|
2019-06-17 21:37:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
raw := string(data)
|
|
|
|
|
|
|
|
i := strings.LastIndex(raw, "t=")
|
|
|
|
if i == -1 {
|
2020-01-10 18:42:19 +00:00
|
|
|
return nil, errorReadData
|
2019-06-17 21:37:48 +00:00
|
|
|
}
|
|
|
|
|
2019-06-18 21:02:11 +00:00
|
|
|
c, err := strconv.ParseFloat(raw[i+2:len(raw)-1], 64)
|
2019-06-17 21:37:48 +00:00
|
|
|
if err != nil {
|
2020-01-10 18:42:19 +00:00
|
|
|
return nil, errorParseData
|
2019-02-22 12:08:58 +00:00
|
|
|
}
|
|
|
|
|
2019-06-18 21:02:11 +00:00
|
|
|
temperatureValue := c / 1000
|
|
|
|
|
2019-07-02 20:33:01 +00:00
|
|
|
measuredValues := []*types.MeasuredValue{
|
|
|
|
&types.MeasuredValue{
|
|
|
|
ID: uuid.NewV4().String(),
|
|
|
|
Value: float64(temperatureValue),
|
|
|
|
ValueType: types.MeasuredValueTypeTemperature,
|
2019-08-20 19:37:45 +00:00
|
|
|
FromDate: format.FormatedTime(),
|
|
|
|
TillDate: format.FormatedTime(),
|
2020-01-10 21:03:49 +00:00
|
|
|
SensorID: s.ID,
|
2019-06-25 20:22:34 +00:00
|
|
|
},
|
2019-02-22 12:08:58 +00:00
|
|
|
}
|
|
|
|
|
2019-06-25 20:22:34 +00:00
|
|
|
return measuredValues, nil
|
2020-01-10 18:42:19 +00:00
|
|
|
}
|