Files
drivers/examples/ws2812/qtpy.go
T
2022-02-11 23:47:55 +01:00

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()
}