Files
drivers/st7789/bus.go
2025-12-20 10:29:55 +01:00

9 lines
212 B
Go

package st7789
// Bus is the interface that wraps the basic Tx and Transfer methods
// for communication buses like SPI or Parallel.
type Bus interface {
Tx(w, r []byte) error
Transfer(w byte) (byte, error)
}