47 lines
729 B
Go
47 lines
729 B
Go
// +build example
|
|
//
|
|
// Do not build by default.
|
|
|
|
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"gobot.io/x/gobot"
|
|
"gobot.io/x/gobot/drivers/i2c"
|
|
"gobot.io/x/gobot/platforms/raspi"
|
|
)
|
|
|
|
func main() {
|
|
width := 128
|
|
height := 32
|
|
r := raspi.NewAdaptor()
|
|
oled := i2c.NewSSD1306Driver(r, i2c.WithSSD1306DisplayWidth(width), i2c.WithSSD1306DisplayHeight(height))
|
|
|
|
stage := false
|
|
|
|
work := func() {
|
|
|
|
gobot.Every(1*time.Second, func() {
|
|
oled.Clear()
|
|
if stage {
|
|
for x := 0; x < width; x += 5 {
|
|
for y := 0; y < height; y++ {
|
|
oled.Set(x, y, 1)
|
|
}
|
|
}
|
|
}
|
|
stage = !stage
|
|
oled.Display()
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("ssd1306Robot",
|
|
[]gobot.Connection{r},
|
|
[]gobot.Device{oled},
|
|
work,
|
|
)
|
|
|
|
robot.Start()
|
|
}
|