I am trying to understand what each pin on my Arduino Due is and what it is used for, and so I have been searching for things like "Arduino Due pinout", "Arduino Due pin mapping" and similar.
The best I could find was this table, however it doesn't help you out at all if you are completely new to electronics and have no idea what TX2
, SDA
or NPCSO
mean, etc.
Does anybody know of Arduino/Due documentation that explains what each I/O pin is?
-
1Yes, it's called the datasheet for the chip on the board. TX2 is UART 2 Transmit. SDA is I2C Serial DAta. NPSC0 is Chip Select 0 for SPI (the N is "Not", or "Active Low").Majenko– Majenko2015年06月08日 16:17:38 +00:00Commented Jun 8, 2015 at 16:17
-
Thanks @Majenko - is this what you're talking about?smeeb– smeeb2015年06月08日 16:18:26 +00:00Commented Jun 8, 2015 at 16:18
-
That is a start - you can use it in conjunction with this: atmel.com/images/doc11057s.pdfMajenko– Majenko2015年06月08日 16:19:59 +00:00Commented Jun 8, 2015 at 16:19
-
Check out: robgray.com/temp/Due-pinout.svg OR robgray.com/temp/Due-pinout.pdf Search 'Due Pinout'!electron1979– electron19792017年10月12日 01:42:04 +00:00Commented Oct 12, 2017 at 1:42
1 Answer 1
The Arduino Due is backed by an Atmel SAM3X8E ARM Cortex-M3 microprocessor and most of the pins on the Due are connected directly to this chip. Therefore, you can refer directly to the chip's datasheet for descriptions of these hardware features.
-
I'm shocked that something as mainstream as Arduino hasn't incorporated this into their end user docs. But thanks!smeeb– smeeb2015年06月08日 19:22:58 +00:00Commented Jun 8, 2015 at 19:22