mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-07-26 10:38:41 +00:00
8b3075fdba
Signed-off-by: deadprogram <ron@hybridgroup.com>
12 lines
168 B
Go
12 lines
168 B
Go
//go:build qtpy
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
func init() {
|
|
pwr := machine.NEOPIXELS_POWER
|
|
pwr.Configure(machine.PinConfig{Mode: machine.PinOutput})
|
|
pwr.High()
|
|
}
|