mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
14 lines
189 B
Go
14 lines
189 B
Go
//go:build circuitplay_express
|
|
|
|
package main
|
|
|
|
import (
|
|
"machine"
|
|
)
|
|
|
|
func init() {
|
|
enable := machine.PA30
|
|
enable.Configure(machine.PinConfig{Mode: machine.PinOutput})
|
|
enable.Set(true)
|
|
}
|