What's On The Board?: Learn
What's On The Board?: Learn
SHOP LEARN BLOG SUPPORT
What is an Arduino?
CONTRIBUTORS: B_E_N
FAVORITE 32
The USB connection is also how you will load code onto your Arduino board. More on how to program with Arduino
can be found in our Installing and Programming Arduino tutorial.
NOTE: Do NOT use a power supply greater than 20 Volts as you will overpower (and thereby destroy) your Arduino.
The recommended voltage for most Arduino models is between 6 and 12 Volts.
Reset Button
Just like the original Nintendo, the Arduino has a reset button (10). Pushing it will temporarily connect the reset pin
to ground and restart any code that is loaded on the Arduino. This can be very useful if your code doesn’t repeat,
but you want to test it multiple times. Unlike the original Nintendo however, blowing on the Arduino doesn't usually
fix any problems.
TX RX LEDs
TX is short for transmit, RX is short for receive. These markings appear quite a bit in electronics to indicate the
pins responsible for serial communication. In our case, there are two places on the Arduino UNO where TX and RX
appear -- once by digital pins 0 and 1, and a second time next to the TX and RX indicator LEDs (12). These LEDs
will give us some nice visual indications whenever our Arduino is receiving or transmitting data (like when we’re
loading a new program onto the board).
Main IC
The black thing with all the metal legs is an IC, or Integrated Circuit (13). Think of it as the brains of our Arduino.
The main IC on the Arduino is slightly different from board type to board type, but is usually from the ATmega line
of IC’s from the ATMEL company. This can be important, as you may need to know the IC type (along with your
board type) before loading up a new program from the Arduino software. This information can usually be found in
writing on the top side of the IC. If you want to know more about the difference between various IC's, reading the
datasheets is often a good idea.
Voltage Regulator
The voltage regulator (14) is not actually something you can (or should) interact with on the Arduino. But it is
potentially useful to know that it is there and what it’s for. The voltage regulator does exactly what it says -- it
controls the amount of voltage that is let into the Arduino board. Think of it as a kind of gatekeeper; it will turn
away an extra voltage that might harm the circuit. Of course, it has its limits, so don’t hook up your Arduino to
anything greater than 20 volts.