Documentation ¶
Index ¶
- Constants
- Variables
- type Animation
- type Canvas
- func (c *Canvas) At(x, y int) color.Color
- func (c *Canvas) Bounds() image.Rectangle
- func (c *Canvas) Clear() error
- func (c *Canvas) Close() error
- func (c *Canvas) ColorModel() color.Model
- func (c *Canvas) Disable()
- func (c *Canvas) Enable()
- func (c *Canvas) Enabled() bool
- func (c *Canvas) GetHTTPHandlers() ([]*board.HTTPHandler, error)
- func (c *Canvas) Name() string
- func (c *Canvas) Render() error
- func (c *Canvas) Set(x, y int, color color.Color)
- type ConsoleMatrix
- func (c *ConsoleMatrix) Apply(leds []color.Color) error
- func (c *ConsoleMatrix) At(position int) color.Color
- func (c *ConsoleMatrix) Close() error
- func (c *ConsoleMatrix) Geometry() (int, int)
- func (c *ConsoleMatrix) Render() error
- func (c *ConsoleMatrix) Reset()
- func (c *ConsoleMatrix) Set(position int, clr color.Color)
- func (c *ConsoleMatrix) SetBrightness(brightness int)
- type HardwareConfig
- type Matrix
- type RGBLedMatrix
- func (c *RGBLedMatrix) Apply(leds []color.Color) error
- func (c *RGBLedMatrix) At(position int) color.Color
- func (c *RGBLedMatrix) Close() error
- func (c *RGBLedMatrix) Geometry() (width, height int)
- func (c *RGBLedMatrix) Initialize() error
- func (c *RGBLedMatrix) Render() error
- func (c *RGBLedMatrix) Set(position int, color color.Color)
- func (c *RGBLedMatrix) SetBrightness(brightness int)
- type RuntimeOptions
- type ScanMode
- type ToolKit
- func (tk *ToolKit) Close() error
- func (tk *ToolKit) PlayAnimation(a Animation) error
- func (tk *ToolKit) PlayGIF(r io.Reader) (chan bool, error)
- func (tk *ToolKit) PlayImage(i image.Image, delay time.Duration) error
- func (tk *ToolKit) PlayImageUntil(i image.Image, notify <-chan time.Time) error
- func (tk *ToolKit) PlayImages(images []image.Image, delay []time.Duration, loop int) chan bool
Constants ¶
const MatrixEmulatorENV = "MATRIX_EMULATOR"
Variables ¶
var DefaultConfig = HardwareConfig{ Rows: 32, Cols: 32, ChainLength: 1, Parallel: 1, PWMBits: 11, PWMLSBNanoseconds: 130, Brightness: 100, ScanMode: Progressive, }
DefaultConfig default WS281x configuration
var DefaultRuntimeOptions = RuntimeOptions{ GPIOSlowdown: 0, Daemon: 0, DropPrivileges: 1, DoGPIOInit: true, }
DefaultRuntimeOptions default WS281x runtime options
Functions ¶
This section is empty.
Types ¶
type Canvas ¶
type Canvas struct {
// contains filtered or unexported fields
}
Canvas is a image.Image representation of a WS281x matrix, it implements image.Image interface and can be used with draw.Draw for example
func NewCanvas ¶
NewCanvas returns a new Canvas using the given width and height and creates a new WS281x matrix using the given config
func (*Canvas) ColorModel ¶
ColorModel returns the canvas' color model, always color.RGBAModel
func (*Canvas) GetHTTPHandlers ¶ added in v0.0.8
func (c *Canvas) GetHTTPHandlers() ([]*board.HTTPHandler, error)
GetHTTPHandlers ...
type ConsoleMatrix ¶ added in v0.0.6
type ConsoleMatrix struct {
// contains filtered or unexported fields
}
ConsoleMatrix prints a representation of a matrix to a terminal. Useful for testing layouts without a Pi or an LED matrix.
func NewConsoleMatrix ¶ added in v0.0.6
NewConsoleMatrix ...
func (*ConsoleMatrix) Apply ¶ added in v0.0.6
func (c *ConsoleMatrix) Apply(leds []color.Color) error
Apply ...
func (*ConsoleMatrix) At ¶ added in v0.0.6
func (c *ConsoleMatrix) At(position int) color.Color
At ...
func (*ConsoleMatrix) Geometry ¶ added in v0.0.6
func (c *ConsoleMatrix) Geometry() (int, int)
Geometry ...
func (*ConsoleMatrix) Set ¶ added in v0.0.6
func (c *ConsoleMatrix) Set(position int, clr color.Color)
Set ...
func (*ConsoleMatrix) SetBrightness ¶ added in v0.0.6
func (c *ConsoleMatrix) SetBrightness(brightness int)
SetBrightness does nothing
type HardwareConfig ¶
type HardwareConfig struct { // Rows the number of rows supported by the display, so 32 or 16. Rows int `json:"rows"` // Cols the number of columns supported by the display, so 32 or 64 . Cols int `json:"cols"` // ChainLengthis the number of displays daisy-chained together // (output of one connected to input of next). ChainLength int `json:"chainLength"` // Parallel is the number of parallel chains connected to the Pi; in old Pis // with 26 GPIO pins, that is 1, in newer Pis with 40 interfaces pins, that // can also be 2 or 3. The effective number of pixels in vertical direction is // then thus rows * parallel. Parallel int `json:"parallel"` // Set PWM bits used for output. Default is 11, but if you only deal with // limited comic-colors, 1 might be sufficient. Lower require less CPU and // increases refresh-rate. PWMBits int `json:"pwmBits"` // Change the base time-unit for the on-time in the lowest significant bit in // nanoseconds. Higher numbers provide better quality (more accurate color, // less ghosting), but have a negative impact on the frame rate. PWMLSBNanoseconds int `json:"pwmlsbNanoseconds"` // the DMA channel to use // Brightness is the initial brightness of the panel in percent. Valid range // is 1..100 Brightness int `json:"brightness"` // ScanMode progressive or interlaced ScanMode ScanMode `json:"scanMode"` // strip color layout // Disable the PWM hardware subsystem to create pulses. Typically, you don't // want to disable hardware pulsing, this is mostly for debugging and figuring // out if there is interference with the sound system. // This won't do anything if output enable is not connected to GPIO 18 in // non-standard wirings. DisableHardwarePulsing bool `json:"disableHardwarePulsing"` ShowRefreshRate bool `json:"showRefreshRate"` InverseColors bool `json:"inverseColors"` // Name of GPIO mapping used HardwareMapping string `json:"hardwareMapping"` // Limit refresh rate of LED panel. This will help on a loaded system // to keep a constant refresh rate. <= 0 for no limit. LimitRefreshRateHz int `json:"limitRefreshRateHz"` }
HardwareConfig rgb-led-matrix configuration
type Matrix ¶
type Matrix interface { Geometry() (width, height int) At(position int) color.Color Set(position int, c color.Color) Apply([]color.Color) error Render() error Close() error SetBrightness(brightness int) }
Matrix is an interface that represent any RGB matrix, very useful for testing
func NewRGBLedMatrix ¶
func NewRGBLedMatrix(config *HardwareConfig, rtOptions *RuntimeOptions) (c Matrix, err error)
NewRGBLedMatrix returns a new matrix using the given size and config
type RGBLedMatrix ¶
type RGBLedMatrix struct { Config *HardwareConfig RuntimeOptions *RuntimeOptions // contains filtered or unexported fields }
RGBLedMatrix matrix representation for ws281x
func (*RGBLedMatrix) Apply ¶
func (c *RGBLedMatrix) Apply(leds []color.Color) error
Apply set all the pixels to the values contained in leds
func (*RGBLedMatrix) At ¶
func (c *RGBLedMatrix) At(position int) color.Color
At return an Color which allows access to the LED display data as if it were a sequence of 24-bit RGB values.
func (*RGBLedMatrix) Close ¶
func (c *RGBLedMatrix) Close() error
Close finalizes the ws281x interface
func (*RGBLedMatrix) Geometry ¶
func (c *RGBLedMatrix) Geometry() (width, height int)
Geometry returns the width and the height of the matrix
func (*RGBLedMatrix) Initialize ¶
func (c *RGBLedMatrix) Initialize() error
Initialize initialize library, must be called once before other functions are called.
func (*RGBLedMatrix) Render ¶
func (c *RGBLedMatrix) Render() error
Render update the display with the data from the LED buffer
func (*RGBLedMatrix) Set ¶
func (c *RGBLedMatrix) Set(position int, color color.Color)
Set set LED at position x,y to the provided 24-bit color value.
func (*RGBLedMatrix) SetBrightness ¶
func (c *RGBLedMatrix) SetBrightness(brightness int)
type RuntimeOptions ¶
type RuntimeOptions struct { // 0 = no slowdown. (Available 0...4) GPIOSlowdown int `json:"gpioSlowdown"` // Thre are three possible values here // -1 : don't leave choise of becoming daemon to the command line parsing. // If set to -1, the --led-daemon option is not offered. // 0 : do not becoma a daemon, run in forgreound (default value) // 1 : become a daemon, run in background. // // If daemon is disabled (= -1), the user has to call // RGBMatrix::StartRefresh() manually once the matrix is created, to leave // the decision to become a daemon // after the call (which requires that no threads have been started yet). // In the other cases (off or on), the choice is already made, so the thread // is conveniently already started for you. // -1 disabled. 0=off, 1=on. Daemon int `json:"daemon"` // Drop privileges from 'root' to 'daemon' once the hardware is initialized. // This is usually a good idea unless you need to stay on elevated privs. DropPrivileges int `json:"dropPrivileges"` // By default, the gpio is initialized for you, but if you run on a platform // not the Raspberry Pi, this will fail. If you don't need to access GPIO // e.g. you want to just create a stream output (see content-streamer.h), // set this to false. DoGPIOInit bool `json:"doGPIOInit"` }
type ToolKit ¶
type ToolKit struct { // Canvas is the Canvas wrapping the Matrix, if you want to instanciate // a ToolKit with a custom Canvas you can use directly the struct, // without calling NewToolKit Canvas *Canvas // Transform function if present is applied just before draw the image to // the Matrix, this is a small example: // tk.Transform = func(img image.Image) *image.NRGBA { // return imaging.Fill(img, 64, 96, imaging.Center, imaging.Lanczos) // } Transform func(img image.Image) *image.NRGBA }
ToolKit is a convinient set of function to operate with a led of Matrix
func NewToolKit ¶
NewToolKit returns a new ToolKit wrapping the given Matrix
func (*ToolKit) PlayAnimation ¶
PlayAnimation play the image during the delay returned by Next, until an err is returned, if io.EOF is returned, PlayAnimation finish without an error
func (*ToolKit) PlayGIF ¶
PlayGIF reads and draw a gif file from r. It use the contained images and delays and loops over it, until a true is sent to the returned chan
func (*ToolKit) PlayImageUntil ¶
PlayImageUntil draws the given image until is notified to stop
func (*ToolKit) PlayImages ¶
PlayImages draws a sequence of images during the given delays, the len of images should be equal to the len of delay. If loop is true the function loops over images until a true is sent to the returned chan