mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-03 06:27:47 +00:00
9fc1c0aedc
Signed-off-by: deadprogram <ron@hybridgroup.com>
12 lines
189 B
Go
12 lines
189 B
Go
//go:build arduino || arduino_uno
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
func init() {
|
|
// Replace neo in the code below to match the pin
|
|
// that you are using if different.
|
|
neo = machine.D2
|
|
}
|