mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-06 16:03:41 +00:00
e70beede1c
Signed-off-by: deadprogram <ron@hybridgroup.com>
12 lines
207 B
Go
12 lines
207 B
Go
//go:build arduino
|
|
// +build arduino
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
// Replace neo and led in the code below to match the pin
|
|
// that you are using if different.
|
|
var neo = machine.D2
|
|
var led = machine.LED
|