mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-09 09:23:39 +00:00
18 lines
209 B
Go
18 lines
209 B
Go
// +build wioterminal
|
|
|
|
package main
|
|
|
|
import (
|
|
"machine"
|
|
)
|
|
|
|
func init() {
|
|
spi = machine.SPI2
|
|
sckPin = machine.SCK2
|
|
sdoPin = machine.SDO2
|
|
sdiPin = machine.SDI2
|
|
csPin = machine.SS2
|
|
|
|
ledPin = machine.LED
|
|
}
|