mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-05 07:27:49 +00:00
df64ce8f50
* Merge AVR support for Digispark and non-Digispark * Fix the error "inline assembly requires more registers than available" * Use a single file for all AVR targets, in a similar style as the Xtensa support.
10 lines
189 B
Go
10 lines
189 B
Go
// +build !digispark,!arduino
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
// Replace neo in the code below to match the pin
|
|
// that you are using if different.
|
|
var neo machine.Pin = machine.NEOPIXELS
|