Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: add display.Pin interface #749

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions apa102/apa102.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ package apa102 // import "tinygo.org/x/drivers/apa102"

import (
"image/color"
"machine"

"tinygo.org/x/drivers"
)
Expand Down Expand Up @@ -37,7 +36,7 @@ func New(b drivers.SPI) *Device {

// NewSoftwareSPI returns a new APA102 driver that will use a software based
// implementation of the SPI protocol.
func NewSoftwareSPI(sckPin, sdoPin machine.Pin, delay uint32) *Device {
func NewSoftwareSPI(sckPin, sdoPin drivers.Pin, delay uint32) *Device {
return New(&bbSPI{SCK: sckPin, SDO: sdoPin, Delay: delay})
}

Expand Down
13 changes: 7 additions & 6 deletions apa102/softspi.go
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
package apa102

import "machine"
import (
"tinygo.org/x/drivers"
)

// bbSPI is a dumb bit-bang implementation of SPI protocol that is hardcoded
// to mode 0 and ignores trying to receive data. Just enough for the APA102.
// Note: making this unexported for now because it is probable not suitable
// most purposes other than the APA102 package. It might be desirable to make
// this more generic and include it in the TinyGo "machine" package instead.
type bbSPI struct {
SCK machine.Pin
SDO machine.Pin
SCK drivers.Pin
SDO drivers.Pin
Delay uint32
}

// Configure sets up the SCK and SDO pins as outputs and sets them low
// Configure sets the SCK and SDO pins to low.
// Note that the SCK and SDO pins must already be configured as outputs.
func (s *bbSPI) Configure() {
s.SCK.Configure(machine.PinConfig{Mode: machine.PinOutput})
s.SDO.Configure(machine.PinConfig{Mode: machine.PinOutput})
s.SCK.Low()
s.SDO.Low()
if s.Delay == 0 {
Expand Down
11 changes: 4 additions & 7 deletions bmi160/bmi160.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package bmi160

import (
"machine"
"time"

"tinygo.org/x/drivers"
Expand All @@ -11,7 +10,7 @@ import (
// also an I2C interface, but it is not yet supported.
type DeviceSPI struct {
// Chip select pin
CSB machine.Pin
CSB drivers.Pin

buf [7]byte

Expand All @@ -22,18 +21,16 @@ type DeviceSPI struct {
// NewSPI returns a new device driver. The pin and SPI interface are not
// touched, provide a fully configured SPI object and call Configure to start
// using this device.
func NewSPI(csb machine.Pin, spi drivers.SPI) *DeviceSPI {
func NewSPI(csb drivers.Pin, spi drivers.SPI) *DeviceSPI {
return &DeviceSPI{
CSB: csb, // chip select
Bus: spi,
}
}

// Configure configures the BMI160 for use. It configures the CSB pin and
// configures the BMI160, but it does not configure the SPI interface (it is
// assumed to be up and running).
// Configure configures the BMI160 for use. The CSB pin anf the SPI interface
// should be configured already. This function configures the BMI160 only.
func (d *DeviceSPI) Configure() error {
d.CSB.Configure(machine.PinConfig{Mode: machine.PinOutput})
d.CSB.High()

// The datasheet recommends doing a register read from address 0x7F to get
Expand Down
8 changes: 4 additions & 4 deletions buzzer/buzzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
package buzzer // import "tinygo.org/x/drivers/buzzer"

import (
"machine"

"time"

"tinygo.org/x/drivers"
)

// Device wraps a GPIO connection to a buzzer.
type Device struct {
pin machine.Pin
pin drivers.Pin
High bool
BPM float64
}

// New returns a new buzzer driver given which pin to use
func New(pin machine.Pin) Device {
func New(pin drivers.Pin) Device {
return Device{
pin: pin,
High: false,
Expand Down
17 changes: 8 additions & 9 deletions easystepper/easystepper.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ package easystepper // import "tinygo.org/x/drivers/easystepper"

import (
"errors"
"machine"
"time"

"tinygo.org/x/drivers"
)

// StepMode determines the coil sequence used to perform a single step
Expand Down Expand Up @@ -33,7 +34,7 @@ func (sm StepMode) stepCount() uint {
// DeviceConfig contains the configuration data for a single easystepper driver
type DeviceConfig struct {
// Pin1 ... Pin4 determines the pins to configure and use for the device
Pin1, Pin2, Pin3, Pin4 machine.Pin
Pin1, Pin2, Pin3, Pin4 drivers.Pin
// StepCount is the number of steps required to perform a full revolution of the stepper motor
StepCount uint
// RPM determines the speed of the stepper motor in 'Revolutions per Minute'
Expand All @@ -46,12 +47,12 @@ type DeviceConfig struct {
type DualDeviceConfig struct {
DeviceConfig
// Pin5 ... Pin8 determines the pins to configure and use for the second device
Pin5, Pin6, Pin7, Pin8 machine.Pin
Pin5, Pin6, Pin7, Pin8 drivers.Pin
}

// Device holds the pins and the delay between steps
type Device struct {
pins [4]machine.Pin
pins [4]drivers.Pin
stepDelay time.Duration
stepNumber uint8
stepMode StepMode
Expand All @@ -68,17 +69,15 @@ func New(config DeviceConfig) (*Device, error) {
return nil, errors.New("config.StepCount and config.RPM must be > 0")
}
return &Device{
pins: [4]machine.Pin{config.Pin1, config.Pin2, config.Pin3, config.Pin4},
pins: [4]drivers.Pin{config.Pin1, config.Pin2, config.Pin3, config.Pin4},
stepDelay: time.Second * 60 / time.Duration((config.StepCount * config.RPM)),
stepMode: config.Mode,
}, nil
}

// Configure configures the pins of the Device
// Configure does nothing, as it assumes that the pins of the Device have already
// been configured by the user as outputs.
func (d *Device) Configure() {
for _, pin := range d.pins {
pin.Configure(machine.PinConfig{Mode: machine.PinOutput})
}
}

// NewDual returns a new dual easystepper driver given 8 pins, number of steps and rpm
Expand Down
10 changes: 4 additions & 6 deletions ft6336/ft6336.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
package ft6336

import (
"machine"

"tinygo.org/x/drivers"
"tinygo.org/x/drivers/internal/legacy"
"tinygo.org/x/drivers/touch"
Expand All @@ -17,11 +15,11 @@ type Device struct {
bus drivers.I2C
buf []byte
Address uint8
intPin machine.Pin
intPin drivers.Pin
}

// New returns FT6336 device for the provided I2C bus using default address.
func New(i2c drivers.I2C, intPin machine.Pin) *Device {
func New(i2c drivers.I2C, intPin drivers.Pin) *Device {
return &Device{
bus: i2c,
buf: make([]byte, 11),
Expand All @@ -34,10 +32,10 @@ func New(i2c drivers.I2C, intPin machine.Pin) *Device {
type Config struct {
}

// Configure the FT6336 device.
// Configure the FT6336 device. Note that the interrupt pin must be configured
// separately as an input.
func (d *Device) Configure(config Config) error {
d.write1Byte(0xA4, 0x00)
d.intPin.Configure(machine.PinConfig{Mode: machine.PinInputPulldown})
return nil
}

Expand Down
18 changes: 7 additions & 11 deletions gc9a01/gc9a01.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ package gc9a01 // import "tinygo.org/x/drivers/gc9a01"

import (
"image/color"
"machine"
"time"

"errors"
Expand All @@ -22,10 +21,10 @@ type FrameRate uint8
// Device wraps an SPI connection.
type Device struct {
bus drivers.SPI
dcPin machine.Pin
resetPin machine.Pin
csPin machine.Pin
blPin machine.Pin
dcPin drivers.Pin
resetPin drivers.Pin
csPin drivers.Pin
blPin drivers.Pin
width int16
height int16
columnOffsetCfg int16
Expand All @@ -51,12 +50,9 @@ type Config struct {
Height int16
}

// New creates a new ST7789 connection. The SPI wire must already be configured.
func New(bus drivers.SPI, resetPin, dcPin, csPin, blPin machine.Pin) Device {
resetPin.Configure(machine.PinConfig{Mode: machine.PinOutput})
dcPin.Configure(machine.PinConfig{Mode: machine.PinOutput})
csPin.Configure(machine.PinConfig{Mode: machine.PinOutput})
blPin.Configure(machine.PinConfig{Mode: machine.PinOutput})
// New creates a new ST7789 connection. The SPI wire must already be configured, along with the
// data/command and reset pins as outputs.
func New(bus drivers.SPI, resetPin, dcPin, csPin, blPin drivers.Pin) Device {
return Device{
bus: bus,
resetPin: resetPin,
Expand Down
15 changes: 8 additions & 7 deletions hcsr04/hcsr04.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,31 @@
package hcsr04

import (
"machine"
"time"

"tinygo.org/x/drivers"
)

const TIMEOUT = 23324 // max sensing distance (4m)

// Device holds the pins
type Device struct {
trigger machine.Pin
echo machine.Pin
trigger drivers.Pin
echo drivers.Pin
}

// New returns a new ultrasonic driver given 2 pins
func New(trigger, echo machine.Pin) Device {
func New(trigger, echo drivers.Pin) Device {
return Device{
trigger: trigger,
echo: echo,
}
}

// Configure configures the pins of the Device
// Configure expects that the pins of the Device have already
// been configured by the user. Trigger pin should be an output
// and echo pin should be an input.
func (d *Device) Configure() {
d.trigger.Configure(machine.PinConfig{Mode: machine.PinOutput})
d.echo.Configure(machine.PinConfig{Mode: machine.PinInput})
}

// ReadDistance returns the distance of the object in mm
Expand Down
5 changes: 2 additions & 3 deletions max6675/max6675.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package max6675

import (
"errors"
"machine"

"tinygo.org/x/drivers"
)
Expand All @@ -14,13 +13,13 @@ var ErrThermocoupleOpen = errors.New("thermocouple input open")

type Device struct {
bus drivers.SPI
cs machine.Pin
cs drivers.Pin
}

// Create a new Device to read from a MAX6675 thermocouple.
// Pins must be configured before use. Frequency for SPI
// should be 4.3MHz maximum.
func NewDevice(bus drivers.SPI, cs machine.Pin) *Device {
func NewDevice(bus drivers.SPI, cs drivers.Pin) *Device {
return &Device{
bus: bus,
cs: cs,
Expand Down
11 changes: 3 additions & 8 deletions max72xx/max72xx.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,26 @@
package max72xx

import (
"machine"

"tinygo.org/x/drivers"
)

type Device struct {
bus drivers.SPI
cs machine.Pin
cs drivers.Pin
}

// NewDriver creates a new max7219 connection. The SPI wire must already be configured
// The SPI frequency must not be higher than 10MHz.
// parameter cs: the datasheet also refers to this pin as "load" pin.
func NewDevice(bus drivers.SPI, cs machine.Pin) *Device {
func NewDevice(bus drivers.SPI, cs drivers.Pin) *Device {
return &Device{
bus: bus,
cs: cs,
}
}

// Configure setups the pins.
// Configure expects that the pin of the Device has already been configured by the user as output.
func (driver *Device) Configure() {
outPutConfig := machine.PinConfig{Mode: machine.PinOutput}

driver.cs.Configure(outPutConfig)
}

// SetScanLimit sets the scan limit. Maximum is 8.
Expand Down
9 changes: 4 additions & 5 deletions mcp2515/mcp2515.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ package mcp2515 // import "tinygo.org/x/drivers/mcp2515"
import (
"errors"
"fmt"
"machine"
"time"

"tinygo.org/x/drivers"
Expand All @@ -17,7 +16,7 @@ import (
// Device wraps MCP2515 SPI CAN Module.
type Device struct {
spi SPI
cs machine.Pin
cs drivers.Pin
msg *CANMsg
mcpMode byte
}
Expand All @@ -36,7 +35,7 @@ const (
)

// New returns a new MCP2515 driver. Pass in a fully configured SPI bus.
func New(b drivers.SPI, csPin machine.Pin) *Device {
func New(b drivers.SPI, csPin drivers.Pin) *Device {
d := &Device{
spi: SPI{
bus: b,
Expand All @@ -50,9 +49,9 @@ func New(b drivers.SPI, csPin machine.Pin) *Device {
return d
}

// Configure sets up the device for communication.
// Configure sets up the device for communication. It expects the SPI interface to be already
// configured, and the CS configured as output.
func (d *Device) Configure() {
d.cs.Configure(machine.PinConfig{Mode: machine.PinOutput})
}

const beginTimeoutValue int = 10
Expand Down
Loading