2023-05-20 20:25:21 +08:00
|
|
|
//go:build example
|
2017-09-26 12:31:32 +08:00
|
|
|
// +build example
|
2023-05-20 20:25:21 +08:00
|
|
|
|
2017-09-26 12:31:32 +08:00
|
|
|
//
|
|
|
|
// Do not build by default.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2024-02-11 22:34:50 +08:00
|
|
|
"fmt"
|
|
|
|
|
2023-05-20 20:25:21 +08:00
|
|
|
"gobot.io/x/gobot/v2"
|
|
|
|
"gobot.io/x/gobot/v2/drivers/i2c"
|
|
|
|
"gobot.io/x/gobot/v2/platforms/dexter/gopigo3"
|
|
|
|
"gobot.io/x/gobot/v2/platforms/raspi"
|
2017-09-26 12:31:32 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
raspiAdaptor := raspi.NewAdaptor()
|
|
|
|
gpg3 := gopigo3.NewDriver(raspiAdaptor)
|
|
|
|
screen := i2c.NewGroveLcdDriver(raspiAdaptor)
|
|
|
|
|
|
|
|
work := func() {
|
2024-02-11 22:34:50 +08:00
|
|
|
manufacturerName, _ := gpg3.GetManufacturerName()
|
|
|
|
boardName, _ := gpg3.GetBoardName()
|
|
|
|
hardwareVersion, _ := gpg3.GetHardwareVersion()
|
|
|
|
if err := screen.Write(manufacturerName[0:15]); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
if err := screen.SetPosition(16); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
if err := screen.Write(boardName + " " + hardwareVersion); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
if err := screen.SetRGB(0, 0, 255); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
if err := screen.Home(); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
2017-09-26 12:31:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("gopigo3lcd",
|
|
|
|
[]gobot.Connection{raspiAdaptor},
|
|
|
|
[]gobot.Device{gpg3, screen},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
2024-02-11 22:34:50 +08:00
|
|
|
if err := robot.Start(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2017-09-26 12:31:32 +08:00
|
|
|
}
|