mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-16 18:53:29 +00:00
machine: reorder pin definitions to improve pin list on tinygo.org
This commit is contained in:
committed by
Ron Evans
parent
411333327e
commit
0a93347e1c
@@ -8,14 +8,6 @@ const HasLowFrequencyCrystal = true
|
||||
// More info: https://docs.particle.io/datasheets/wi-fi/argon-datasheet/
|
||||
// Board diagram: https://docs.particle.io/assets/images/argon/argon-block-diagram.png
|
||||
|
||||
// LEDs
|
||||
const (
|
||||
LED Pin = 44
|
||||
LED_GREEN Pin = 14
|
||||
LED_RED Pin = 13
|
||||
LED_BLUE Pin = 15
|
||||
)
|
||||
|
||||
// GPIOs
|
||||
const (
|
||||
A0 Pin = 3
|
||||
@@ -40,6 +32,14 @@ const (
|
||||
D13 Pin = 47 // Also SCK
|
||||
)
|
||||
|
||||
// LEDs
|
||||
const (
|
||||
LED Pin = 44
|
||||
LED_GREEN Pin = 14
|
||||
LED_RED Pin = 13
|
||||
LED_BLUE Pin = 15
|
||||
)
|
||||
|
||||
// UART
|
||||
var (
|
||||
DefaultUART = UART0
|
||||
|
||||
Reference in New Issue
Block a user