Is there any specific purpose/special functionality for each pin group(A, B, C)? #3606
Replies: 2 comments
-
Posted at 2014-02-24 by ltj @Samarthwiz, no the A, B C refers to the GPIO ports (groups of i/o pins if you like) on the STM32F103xx chip. Microcontroller pins usually have more than one function, ie. can be both analog or digital in the Arduino sense. You can see what each pin can be used for in the reference: Espruino Board |
Beta Was this translation helpful? Give feedback.
-
Posted at 2014-02-24 by @gfwilliams @ltj: Thanks! That pretty much sums it up :) The names are the names that the chip manufacturer gives to them. If you were writing C code you might have to worry about which port they were on a bit, but Espruino handles all of that so all you need to do is look at the board reference that @ltj posted up. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2014-02-23 by Samarthwiz
Arduino had A be analog, and D be digital, is espruino the same?
Beta Was this translation helpful? Give feedback.
All reactions