PKGBUILD/pkg/sensor/ds18b20.go

90 lines
2.1 KiB
Go
Raw Normal View History

2019-02-22 12:08:58 +00:00
package sensor
import (
"context"
2019-02-22 12:08:58 +00:00
"fmt"
"io/ioutil"
"path/filepath"
"strconv"
"strings"
"sync"
2019-02-22 12:08:58 +00:00
"time"
2019-06-15 13:58:41 +00:00
"github.com/go-flucky/flucky/pkg/types"
2019-02-22 12:08:58 +00:00
uuid "github.com/satori/go.uuid"
)
// DS18B20 is a sensor to measure humidity and temperature.
2019-02-22 12:08:58 +00:00
type DS18B20 struct {
*types.Sensor
}
// GetSensorModel returns the sensor model
func (s *DS18B20) GetSensorModel() types.SensorModel {
return s.Sensor.SensorModel
}
// GetSensor return the sensor struct
func (s *DS18B20) GetSensor() *types.Sensor {
return s.Sensor
}
// ReadTemperature measure the temperature
2019-02-24 21:46:36 +00:00
func (s *DS18B20) ReadTemperature() (*types.Temperature, error) {
2019-02-22 12:08:58 +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 {
return nil, fmt.Errorf("Can not read data from sensor %v", s.SensorName)
}
raw := string(data)
i := strings.LastIndex(raw, "t=")
if i == -1 {
return nil, ErrReadSensor
}
celsius, err := strconv.ParseFloat(raw[i+2:len(raw)-1], 64)
if err != nil {
return nil, ErrParseData
2019-02-22 12:08:58 +00:00
}
temperature := &types.Temperature{
TemperatureID: uuid.NewV4().String(),
TemperatureValue: celsius / 1000,
TemperatureFromDate: time.Now(),
TemperatureTillDate: time.Now(),
SensorID: s.SensorID,
2019-02-22 12:08:58 +00:00
}
return temperature, nil
}
// ReadTemperatureWriteIntoChannel and write values into a channel
func (s *DS18B20) ReadTemperatureWriteIntoChannel(temperatureChannel chan<- *types.Temperature, errorChannel chan<- error, wg *sync.WaitGroup) {
if wg != nil {
defer wg.Done()
}
temperature, err := s.ReadTemperature()
if err != nil {
errorChannel <- err
return
}
temperatureChannel <- temperature
}
// ReadTemperatureContinously into a channel until context closed
func (s *DS18B20) ReadTemperatureContinously(ctx context.Context, temperatureChannel chan<- *types.Temperature, errorChannel chan<- error) {
for {
select {
case <-ctx.Done():
errorChannel <- fmt.Errorf("%v: Context closed: %v", s.SensorName, ctx.Err())
return
default:
s.ReadTemperatureWriteIntoChannel(temperatureChannel, errorChannel, nil)
}
}
}