hybridgroup.gobot/examples/firmata_gpio_max7219.go

76 lines
1.4 KiB
Go

//go:build example
// +build example
//
// Do not build by default.
/*
How to setup
This examples requires you to daisy-chain 4 led matrices based on MAX7219.
It will turn on one led at a time, from the first led at the first matrix to the last led of the last matrix.
How to run
Pass serial port to use as the first param:
go run examples/firmata_gpio_max7219.go /dev/ttyACM0
*/
package main
import (
"fmt"
"os"
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/gpio"
"gobot.io/x/gobot/v2/platforms/firmata"
)
func main() {
firmataAdaptor := firmata.NewAdaptor(os.Args[1])
maxim := gpio.NewMAX7219Driver(firmataAdaptor, "11", "10", "9", 4)
var digit byte = 1 // digit address goes from 0x01 (MAX7219Digit0) to 0x08 (MAX7219Digit8)
var bits byte = 1
var module uint
count := 0
work := func() {
gobot.Every(100*time.Millisecond, func() {
if err := maxim.ClearAll(); err != nil {
fmt.Println(err)
}
if err := maxim.One(module, digit, bits); err != nil {
fmt.Println(err)
}
bits = bits << 1
count++
if count > 7 {
count = 0
digit++
bits = 1
if digit > 8 {
digit = 1
module++
if module >= 4 {
module = 0
count = 0
}
}
}
})
}
robot := gobot.NewRobot("Max7219Bot",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{maxim},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
}