2017-12-13 22:20:20 +08:00
|
|
|
package spi
|
|
|
|
|
|
|
|
import (
|
2022-12-17 18:56:11 +08:00
|
|
|
"fmt"
|
2017-12-13 22:20:20 +08:00
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
2017-12-14 03:08:31 +08:00
|
|
|
// MCP3008DriverMaxChannel is the number of channels of this A/D converter.
|
|
|
|
const MCP3008DriverMaxChannel = 8
|
2017-12-13 22:40:38 +08:00
|
|
|
|
2017-12-13 22:20:20 +08:00
|
|
|
// MCP3008Driver is a driver for the MCP3008 A/D converter.
|
|
|
|
type MCP3008Driver struct {
|
2022-12-17 18:56:11 +08:00
|
|
|
*Driver
|
2017-12-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewMCP3008Driver creates a new Gobot Driver for MCP3008Driver A/D converter
|
|
|
|
//
|
|
|
|
// Params:
|
|
|
|
// a *Adaptor - the Adaptor to use with this Driver
|
|
|
|
//
|
2018-04-12 02:22:59 +08:00
|
|
|
// Optional params:
|
2022-12-17 18:56:11 +08:00
|
|
|
// spi.WithBusNumber(int): bus to use with this driver
|
|
|
|
// spi.WithChipNumber(int): chip to use with this driver
|
|
|
|
// spi.WithMode(int): mode to use with this driver
|
|
|
|
// spi.WithBitCount(int): number of bits to use with this driver
|
|
|
|
// spi.WithSpeed(int64): speed in Hz to use with this driver
|
2018-04-12 02:22:59 +08:00
|
|
|
//
|
|
|
|
func NewMCP3008Driver(a Connector, options ...func(Config)) *MCP3008Driver {
|
2017-12-13 22:20:20 +08:00
|
|
|
d := &MCP3008Driver{
|
2022-12-17 18:56:11 +08:00
|
|
|
Driver: NewDriver(a, "MCP3008"),
|
2018-04-12 02:22:59 +08:00
|
|
|
}
|
|
|
|
for _, option := range options {
|
|
|
|
option(d)
|
2017-12-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
return d
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read reads the current analog data for the desired channel.
|
2017-12-13 22:40:38 +08:00
|
|
|
func (d *MCP3008Driver) Read(channel int) (result int, err error) {
|
2017-12-14 03:08:31 +08:00
|
|
|
if channel < 0 || channel > MCP3008DriverMaxChannel-1 {
|
2022-12-17 18:56:11 +08:00
|
|
|
return 0, fmt.Errorf("Invalid channel '%d' for read", channel)
|
2017-12-13 22:40:38 +08:00
|
|
|
}
|
|
|
|
|
2017-12-13 22:20:20 +08:00
|
|
|
tx := make([]byte, 3)
|
|
|
|
tx[0] = 0x01
|
2017-12-13 23:40:44 +08:00
|
|
|
tx[1] = byte(8+channel) << 4
|
2017-12-13 22:20:20 +08:00
|
|
|
tx[2] = 0x00
|
|
|
|
|
2017-12-13 22:40:38 +08:00
|
|
|
rx := make([]byte, 3)
|
|
|
|
|
2022-12-17 18:56:11 +08:00
|
|
|
err = d.connection.ReadCommandData(tx, rx)
|
2017-12-13 22:40:38 +08:00
|
|
|
if err == nil && len(rx) == 3 {
|
2018-04-12 00:59:01 +08:00
|
|
|
result = int((rx[1]&0x3))<<8 + int(rx[2])
|
2017-12-13 22:40:38 +08:00
|
|
|
}
|
2017-12-13 22:20:20 +08:00
|
|
|
|
2017-12-13 22:40:38 +08:00
|
|
|
return result, err
|
2017-12-13 22:20:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// AnalogRead returns value from analog reading of specified pin
|
|
|
|
func (d *MCP3008Driver) AnalogRead(pin string) (value int, err error) {
|
|
|
|
channel, _ := strconv.Atoi(pin)
|
|
|
|
value, err = d.Read(channel)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|