Skip to content
arduino nano

What Arduino to use?

«What Arduino I can use?» : this is the first question that we ask ourselves after to start a do-it-yourself project. The choice between the various boards of rapid prototyping is vast and includes many types. (We can do a project fully embedded for example).

What Arduino we can use?

On this website was chosen an “Arduino Nano” inside of projects, decisive are the small size of the board (45×18 mm) that matched with the necessity of to have an CPU unity for the application cards, not renouncing Arduino’s intuitive ease and fast of programming.

Arduino Nano is equipped with an ATmega328, and it can be feeded with Mini-B USB, o through a Pin30 with an unregulated voltage between 6-20V or through Pin27 with an externally stabilized voltage included between the 4,5-5,5V. It have an internal memory from 32KB (where 2KB are used by bootloader), 2KB of SRAM e 1KB of EEPROM.

  • Serial: pin 0 (RX) and 1 (TX). Used for TTL serial data communications.
  • External Interrupts: pin 2 and 3. Used for handling external interrupts.
  • PWM: pin 3, 5, 6, 9, 10, and 11. They provide an output PWM signal.
  • SPI: pin 10 (SS), 11 (MOSI), 12 (MISO), 13 (SCK). These pins support the SPI protocol.
  • I2C: pin A4 (SDA) and A5 (SCL). They support the I2C standard.

Arduino Nano have also 8 analog inputs with 10 bit of resolution (1024 colours) that of default and they go from 0 to 5V.

There are another one couples of Pin:

  • AREF. Reference voltage for analog pin measurements used with analogReference().
  • Reset. Bring the signal to LOW to reset the microcontroller, typically there is a button on the board.

Specifications:

MicrocontrollerAtmel ATmega328
Operating logic level5 V
Feeding (recommanded)7-12 V
Feeding (maximum)6-20 V
Digital Pins14 (of which 6 PWM)
Analog Pins8
Max current delivered for I/O pin40 mA
Flash Memory32 KB of which 2 KB used from bootloader
SRAM2 KB
EEPROM1 KB
Clock Speed16 MHz
Dimensions0.73″ x 1.70″
Lenght45 mm
Width18 mm
Weight5 g

Pinout:

Arduino nano
Arduino nano pinout

To find the products of this article at the cheapest price, you can access our discount page by clicking here.


Share:


Related post

What is I2C

I2C, which stands for “Inter-Integrated Circuit”, is a serial bus interface. This article explains what I2C is and if IoT systems can use it.
Read More