mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-04 15:07:46 +00:00
35 lines
882 B
Go
35 lines
882 B
Go
package main
|
|
|
|
import (
|
|
"machine"
|
|
|
|
"image/color"
|
|
|
|
"tinygo.org/x/drivers/st7789"
|
|
)
|
|
|
|
func main() {
|
|
machine.SPI0.Configure(machine.SPIConfig{
|
|
Frequency: 8000000,
|
|
Mode: 3,
|
|
})
|
|
display := st7789.New(machine.SPI0, machine.P6, machine.P7, machine.P8)
|
|
display.Configure(st7789.Config{Rotation: st7789.NO_ROTATION})
|
|
|
|
width, height := display.Size()
|
|
|
|
white := color.RGBA{255, 255, 255, 255}
|
|
red := color.RGBA{255, 0, 0, 255}
|
|
blue := color.RGBA{0, 0, 255, 255}
|
|
green := color.RGBA{0, 255, 0, 255}
|
|
black := color.RGBA{0, 0, 0, 255}
|
|
|
|
display.FillScreen(black)
|
|
|
|
display.FillRectangle(0, 0, width/2, height/2, white)
|
|
display.FillRectangle(width/2, 0, width/2, height/2, red)
|
|
display.FillRectangle(0, height/2, width/2, height/2, green)
|
|
display.FillRectangle(width/2, height/2, width/2, height/2, blue)
|
|
display.FillRectangle(width/4, height/4, width/2, height/2, black)
|
|
}
|