mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-02 22:17:49 +00:00
e70beede1c
Signed-off-by: deadprogram <ron@hybridgroup.com>
13 lines
268 B
Go
13 lines
268 B
Go
//go:build digispark
|
|
// +build digispark
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
// This is the pin assignment for the Digispark only.
|
|
// Replace neo and led in the code below to match the pin
|
|
// that you are using if different.
|
|
var neo machine.Pin = 0
|
|
var led = machine.LED
|