tinygo/src/machine/board_arduino.go
2018-09-22 15:47:08 +02:00

16 строки
170 Б
Go

// +build avr,arduino
package machine
// LED on the Arduino
const LED = 13
// ADC on the Arduino
const (
ADC0 = 0
ADC1 = 1
ADC2 = 2
ADC3 = 3
ADC4 = 4
ADC5 = 5
)