Documentation ¶
Overview ¶
Package pca9685 implements a PCA9685 HAT. It's probably also a generic PCA9685 but that has not been verified yet.
Index ¶
- type Config
- type PCA9685
- func (pca *PCA9685) AnalogReaderByName(name string) (board.AnalogReader, bool)
- func (pca *PCA9685) AnalogReaderNames() []string
- func (pca *PCA9685) DigitalInterruptByName(name string) (board.DigitalInterrupt, bool)
- func (pca *PCA9685) DigitalInterruptNames() []string
- func (pca *PCA9685) GPIOPinByName(pin string) (board.GPIOPin, error)
- func (pca *PCA9685) GPIOPinNames() []string
- func (pca *PCA9685) I2CByName(name string) (board.I2C, bool)
- func (pca *PCA9685) I2CNames() []string
- func (pca *PCA9685) ModelAttributes() board.ModelAttributes
- func (pca *PCA9685) SPIByName(name string) (board.SPI, bool)
- func (pca *PCA9685) SPINames() []string
- func (pca *PCA9685) SetFrequency(ctx context.Context, frequency float64) error
- func (pca *PCA9685) Status(ctx context.Context, extra map[string]interface{}) (*commonpb.BoardStatus, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { BoardName string `json:"board_name"` I2CName string `json:"i2c_name"` I2CAddress *int `json:"i2c_address"` }
Config describes a PCA9685 board attached to some other board via I2C.
type PCA9685 ¶
type PCA9685 struct { generic.Unimplemented // contains filtered or unexported fields }
PCA9685 is a general purpose 16-channel 12-bit PWM controller.
func (*PCA9685) AnalogReaderByName ¶
func (pca *PCA9685) AnalogReaderByName(name string) (board.AnalogReader, bool)
AnalogReaderByName returns the analog reader by the given name if it exists.
func (*PCA9685) AnalogReaderNames ¶
AnalogReaderNames returns the name of all known analog readers.
func (*PCA9685) DigitalInterruptByName ¶
func (pca *PCA9685) DigitalInterruptByName(name string) (board.DigitalInterrupt, bool)
DigitalInterruptByName returns the interrupt by the given name if it exists.
func (*PCA9685) DigitalInterruptNames ¶
DigitalInterruptNames returns the name of all known digital interrupts.
func (*PCA9685) GPIOPinByName ¶
GPIOPinByName returns a GPIOPin by name.
func (*PCA9685) GPIOPinNames ¶
GPIOPinNames returns the names of all known GPIO pins.
func (*PCA9685) ModelAttributes ¶
func (pca *PCA9685) ModelAttributes() board.ModelAttributes
ModelAttributes returns attributes related to the model of this board.
func (*PCA9685) SetFrequency ¶
SetFrequency sets the global PWM frequency for the pca.