mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 03:27:48 +00:00
14 lines
180 B
Go
14 lines
180 B
Go
//go:build pyportal
|
|
|
|
package main
|
|
|
|
import (
|
|
"machine"
|
|
)
|
|
|
|
func init() {
|
|
enable := machine.SPK_SD
|
|
enable.Configure(machine.PinConfig{Mode: machine.PinOutput})
|
|
enable.Set(true)
|
|
}
|