mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-03 06:27:47 +00:00
13 lines
183 B
Go
13 lines
183 B
Go
//go:build qtpy
|
|
// +build qtpy
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
func init() {
|
|
pwr := machine.NEOPIXELS_POWER
|
|
pwr.Configure(machine.PinConfig{Mode: machine.PinOutput})
|
|
pwr.High()
|
|
}
|