Documentation ¶
Overview ¶
Package fake implements a fake board.
Index ¶
- type Analog
- type Board
- func (b *Board) AnalogReaderByName(name string) (board.AnalogReader, bool)
- func (b *Board) AnalogReaderNames() []string
- func (b *Board) Close(ctx context.Context) error
- func (b *Board) DigitalInterruptByName(name string) (board.DigitalInterrupt, bool)
- func (b *Board) DigitalInterruptNames() []string
- func (b *Board) GPIOPinByName(name string) (board.GPIOPin, error)
- func (b *Board) GPIOPinNames() []string
- func (b *Board) I2CByName(name string) (board.I2C, bool)
- func (b *Board) I2CNames() []string
- func (b *Board) ModelAttributes() board.ModelAttributes
- func (b *Board) SPIByName(name string) (board.SPI, bool)
- func (b *Board) SPINames() []string
- func (b *Board) Status(ctx context.Context, extra map[string]interface{}) (*commonpb.BoardStatus, error)
- func (b *Board) UpdateAction(c *config.Component) config.UpdateActionType
- type Config
- type GPIOPin
- func (gp *GPIOPin) Get(ctx context.Context, extra map[string]interface{}) (bool, error)
- func (gp *GPIOPin) PWM(ctx context.Context, extra map[string]interface{}) (float64, error)
- func (gp *GPIOPin) PWMFreq(ctx context.Context, extra map[string]interface{}) (uint, error)
- func (gp *GPIOPin) Set(ctx context.Context, high bool, extra map[string]interface{}) error
- func (gp *GPIOPin) SetPWM(ctx context.Context, dutyCyclePct float64, extra map[string]interface{}) error
- func (gp *GPIOPin) SetPWMFreq(ctx context.Context, freqHz uint, extra map[string]interface{}) error
- type I2C
- type I2CHandle
- func (h *I2CHandle) Close() error
- func (h *I2CHandle) Read(ctx context.Context, count int) ([]byte, error)
- func (h *I2CHandle) ReadBlockData(ctx context.Context, register byte, numBytes uint8) ([]byte, error)
- func (h *I2CHandle) ReadByteData(ctx context.Context, register byte) (byte, error)
- func (h *I2CHandle) ReadWordData(ctx context.Context, register byte) (uint16, error)
- func (h *I2CHandle) Write(ctx context.Context, tx []byte) error
- func (h *I2CHandle) WriteBlockData(ctx context.Context, register byte, numBytes uint8, data []byte) error
- func (h *I2CHandle) WriteByteData(ctx context.Context, register, data byte) error
- func (h *I2CHandle) WriteWordData(ctx context.Context, register byte, data uint16) error
- type SPI
- type SPIHandle
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Board ¶
type Board struct { generic.Echo Name string SPIs map[string]*SPI I2Cs map[string]*I2C Analogs map[string]*Analog Digitals map[string]board.DigitalInterrupt GPIOPins map[string]*GPIOPin CloseCount int }
A Board provides dummy data from fake parts in order to implement a Board.
func (*Board) AnalogReaderByName ¶
func (b *Board) AnalogReaderByName(name string) (board.AnalogReader, bool)
AnalogReaderByName returns the analog reader by the given name if it exists.
func (*Board) AnalogReaderNames ¶
AnalogReaderNames returns the name of all known analog readers.
func (*Board) DigitalInterruptByName ¶
func (b *Board) DigitalInterruptByName(name string) (board.DigitalInterrupt, bool)
DigitalInterruptByName returns the interrupt by the given name if it exists.
func (*Board) DigitalInterruptNames ¶
DigitalInterruptNames returns the name of all known digital interrupts.
func (*Board) GPIOPinByName ¶
GPIOPinByName returns the GPIO pin by the given name if it exists.
func (*Board) GPIOPinNames ¶
GPIOPinNames returns the name of all known digital interrupts.
func (*Board) ModelAttributes ¶
func (b *Board) ModelAttributes() board.ModelAttributes
ModelAttributes returns attributes related to the model of this board.
func (*Board) Status ¶
func (b *Board) Status(ctx context.Context, extra map[string]interface{}) (*commonpb.BoardStatus, error)
Status returns the current status of the board.
func (*Board) UpdateAction ¶
func (b *Board) UpdateAction(c *config.Component) config.UpdateActionType
UpdateAction helps hinting the reconfiguration process on what strategy to use given a modified config. See config.UpdateActionType for more information.
type Config ¶
type Config struct { I2Cs []board.I2CConfig `json:"i2cs,omitempty"` SPIs []board.SPIConfig `json:"spis,omitempty"` Analogs []board.AnalogConfig `json:"analogs,omitempty"` DigitalInterrupts []board.DigitalInterruptConfig `json:"digital_interrupts,omitempty"` Attributes config.AttributeMap `json:"attributes,omitempty"` FailNew bool `json:"fail_new"` }
A Config describes the configuration of an arduino board and all of its connected parts.
type GPIOPin ¶
type GPIOPin struct {
// contains filtered or unexported fields
}
A GPIOPin reads back the same set values.
type I2C ¶
type I2C struct {
// contains filtered or unexported fields
}
A I2C allows opening an I2CHandle.
type I2CHandle ¶
type I2CHandle struct {
// contains filtered or unexported fields
}
A I2CHandle allows read/write and Close.
func (*I2CHandle) ReadBlockData ¶ added in v0.2.0
func (h *I2CHandle) ReadBlockData(ctx context.Context, register byte, numBytes uint8) ([]byte, error)
ReadBlockData reads the given number of bytes from the i2c channel.
func (*I2CHandle) ReadByteData ¶
ReadByteData reads a byte from the i2c channel.
func (*I2CHandle) ReadWordData ¶
ReadWordData reads a word from the i2c channel.
func (*I2CHandle) WriteBlockData ¶ added in v0.2.0
func (h *I2CHandle) WriteBlockData(ctx context.Context, register byte, numBytes uint8, data []byte) error
WriteBlockData writes the given bytes to the i2c channel.
func (*I2CHandle) WriteByteData ¶
WriteByteData writes a byte to the i2c channel.
type SPI ¶
type SPI struct { FIFO chan []byte // contains filtered or unexported fields }
A SPI allows opening an SPIHandle.