hybridgroup.gobot/drivers/i2c/sht3x_driver.go

218 lines
5.5 KiB
Go

/*
* Copyright (c) 2016-2017 Weston Schmidt <weston_schmidt@alumni.purdue.edu>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package i2c
// SHT3xDriver is a driver for the SHT3x-D based devices.
//
// This module was tested with AdaFruit Sensiron SHT32-D Breakout.
// https://www.adafruit.com/products/2857
import (
"errors"
"time"
"github.com/sigurn/crc8"
)
// SHT3xAddressA is the default address of device
const SHT3xAddressA = 0x44
// SHT3xAddressB is the optional address of device
const SHT3xAddressB = 0x45
// SHT3xAccuracyLow is the faster, but lower accuracy sample setting
const SHT3xAccuracyLow = 0x16
// SHT3xAccuracyMedium is the medium accuracy and speed sample setting
const SHT3xAccuracyMedium = 0x0b
// SHT3xAccuracyHigh is the high accuracy and slowest sample setting
const SHT3xAccuracyHigh = 0x00
var (
crc8Params = crc8.Params{
Poly: 0x31, Init: 0xff, RefIn: false, RefOut: false, XorOut: 0x00, Check: 0xf7, Name: "CRC-8/SENSIRON",
}
ErrInvalidAccuracy = errors.New("Invalid accuracy")
ErrInvalidCrc = errors.New("Invalid crc")
ErrInvalidTemp = errors.New("Invalid temperature units")
)
// SHT3xDriver is a Driver for a SHT3x humidity and temperature sensor
type SHT3xDriver struct {
*Driver
Units string
accuracy byte
delay time.Duration
crcTable *crc8.Table
}
// NewSHT3xDriver creates a new driver with specified i2c interface
// Params:
//
// c Connector - the Adaptor to use with this Driver
//
// Optional params:
//
// i2c.WithBus(int): bus to use with this driver
// i2c.WithAddress(int): address to use with this driver
func NewSHT3xDriver(c Connector, options ...func(Config)) *SHT3xDriver {
s := &SHT3xDriver{
Driver: NewDriver(c, "SHT3x", SHT3xAddressA),
Units: "C",
crcTable: crc8.MakeTable(crc8Params),
}
if err := s.SetAccuracy(SHT3xAccuracyHigh); err != nil {
panic(err)
}
for _, option := range options {
option(s)
}
return s
}
// Accuracy returns the accuracy of the sampling
func (s *SHT3xDriver) Accuracy() byte { return s.accuracy }
// SetAccuracy sets the accuracy of the sampling
func (s *SHT3xDriver) SetAccuracy(a byte) error {
switch a {
case SHT3xAccuracyLow:
s.delay = 5 * time.Millisecond // Actual max is 4, wait 1 ms longer
case SHT3xAccuracyMedium:
s.delay = 7 * time.Millisecond // Actual max is 6, wait 1 ms longer
case SHT3xAccuracyHigh:
s.delay = 16 * time.Millisecond // Actual max is 15, wait 1 ms longer
default:
return ErrInvalidAccuracy
}
s.accuracy = a
return nil
}
// SerialNumber returns the serial number of the chip
func (s *SHT3xDriver) SerialNumber() (uint32, error) {
ret, err := s.sendCommandDelayGetResponse([]byte{0x37, 0x80}, nil, 2)
if err != nil {
return 0, err
}
sn := (uint32(ret[0]) << 16) | uint32(ret[1])
return sn, nil
}
// Heater returns true if the heater is enabled
func (s *SHT3xDriver) Heater() (bool, error) {
sr, err := s.getStatusRegister()
if err != nil {
return false, err
}
if (1 << 13) == (sr & (1 << 13)) {
return true, nil
}
return false, nil
}
// SetHeater enables or disables the heater on the device
func (s *SHT3xDriver) SetHeater(enabled bool) error {
out := []byte{0x30, 0x66}
if enabled {
out[1] = 0x6d
}
_, err := s.connection.Write(out)
return err
}
// Sample returns the temperature in celsius and relative humidity for one sample
//
//nolint:nonamedreturns // is sufficient here
func (s *SHT3xDriver) Sample() (temp float32, rh float32, err error) {
ret, err := s.sendCommandDelayGetResponse([]byte{0x24, s.accuracy}, &s.delay, 2)
if nil != err {
return
}
// From the datasheet:
// RH = 100 * Srh / (2^16 - 1)
rhSample := uint64(ret[1])
rh = float32((uint64(1000000)*rhSample)/uint64(0xffff)) / 10000.0
tempSample := uint64(ret[0])
switch s.Units {
case "C":
// From the datasheet:
// T[C] = -45 + 175 * (St / (2^16 - 1))
temp = float32((uint64(1750000)*tempSample)/uint64(0xffff)-uint64(450000)) / 10000.0
case "F":
// From the datasheet:
// T[F] = -49 + 315 * (St / (2^16 - 1))
temp = float32((uint64(3150000)*tempSample)/uint64(0xffff)-uint64(490000)) / 10000.0
default:
err = ErrInvalidTemp
}
return
}
// getStatusRegister returns the device status register
func (s *SHT3xDriver) getStatusRegister() (uint16, error) {
ret, err := s.sendCommandDelayGetResponse([]byte{0xf3, 0x2d}, nil, 1)
if err != nil {
return 0, err
}
return ret[0], nil
}
// sendCommandDelayGetResponse is a helper function to reduce duplicated code
func (s *SHT3xDriver) sendCommandDelayGetResponse(send []byte, delay *time.Duration, expect int) ([]uint16, error) {
if _, err := s.connection.Write(send); err != nil {
return nil, err
}
if nil != delay {
time.Sleep(*delay)
}
buf := make([]byte, 3*expect)
got, err := s.connection.Read(buf)
if err != nil {
return nil, err
}
if got != (3 * expect) {
return nil, ErrNotEnoughBytes
}
read := make([]uint16, expect)
for i := 0; i < expect; i++ {
crc := crc8.Checksum(buf[i*3:i*3+2], s.crcTable)
if buf[i*3+2] != crc {
return nil, ErrInvalidCrc
}
read[i] = uint16(buf[i*3])<<8 | uint16(buf[i*3+1])
}
return read, nil
}