You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
968 B
Go

8 years ago
package main
import (
"flag"
"fmt"
8 years ago
"image/color"
"github.com/mcuadros/go-rpi-rgb-led-matrix"
)
var (
rows = flag.Int("led-rows", 32, "number of rows supported")
parallel = flag.Int("led-parallel", 1, "number of daisy-chained panels")
8 years ago
chain = flag.Int("led-chain", 2, "number of displays daisy-chained")
brightness = flag.Int("brightness", 100, "brightness (0-100)")
)
func main() {
config := &rgbmatrix.DefaultConfig
config.Rows = *rows
config.Parallel = *parallel
8 years ago
config.ChainLength = *chain
config.Brightness = *brightness
m, err := rgbmatrix.NewRGBLedMatrix(config)
fatal(err)
c := rgbmatrix.NewCanvas(m)
defer c.Close()
bounds := c.Bounds()
for x := bounds.Min.X; x < bounds.Max.X; x++ {
for y := bounds.Min.Y; y < bounds.Max.Y; y++ {
fmt.Println("x", x, "y", y)
8 years ago
c.Set(x, y, color.RGBA{255, 0, 0, 255})
c.Render()
}
}
}
func init() {
flag.Parse()
}
func fatal(err error) {
if err != nil {
panic(err)
}
}