mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-03 06:27:47 +00:00
12 lines
247 B
Go
12 lines
247 B
Go
// +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
|