We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 480c128 commit 410f9c5Copy full SHA for 410f9c5
1 file changed
docs/arduino-deviations.rst
@@ -160,13 +160,13 @@ Analog pins for XMC14_2GO
160
161
On the **XMC14_2GO board**, **pins 12 and 13 are incorrectly named**
162
- Correct mapping:
163
- -pin 12 -> 'A1' (also index '0')
164
- -pin 13 -> 'A0' (also index '1')
+ -pin 12 -> 'A1'
+ -pin 13 -> 'A0'
165
166
**Correct Usage:**
167
Use the analog pin defintions instead of 12 and 13 numbers:
168
- analogRead(0); //Instead of using pin 12
169
- analogRead(1); //Instead of using pin 13
+ analogRead(A0); //Instead of using pin 12
+ analogRead(A1); //Instead of using pin 13
170
171
I2C Analog pins
172
^^^^^^^^^^^^^^^
0 commit comments