Getting started with Arduino Nano

  • avatar
  • 1.3K Views
  • 5 mins read

Arduino is an open-source electronics platform based on easy-to-use hardware and software. Arduino boards are able to read inputs - light on a sensor, a finger on a button, or a Twitter message - and turn it into an output - activating a motor, turning on an LED, publishing something online. You can tell your board what to do by sending a set of instructions to the microcontroller on the board. To do so you use the Arduino programming language and the Arduino Software (IDE).

Over the years Arduino has been the brain of thousands of projects, from everyday objects to complex scientific instruments. A worldwide community of makers - students, hobbyists, artists, programmers, and professionals - has gathered around this open-source platform, their contributions have added up to an incredible amount of accessible knowledge that can be of great help to novices and experts alike.

Components

arduino-nano

1x Arduino Nano (or compatible Arduino module)

Buy now

arduino-ide

Arduino IDE

Download here

Arduino Nano specification

Microcontroller

ATmega328

Architecture

AVR

Operating Voltage

5V

Flash Memory

32 KB of which 2 KB used by bootloader

SRAM

2KB

Clock Speed

16MHz

Analog IN Pins

8

EEPROM

1KB

DC Current

40mA (I/O Pins)

Input Voltage

7-12V

Digital I/O Pins

22 (6 of which are PWM)

Power Consumption

19mA

PCB Size

18x45mm

Weight

7g

Arduino Nano pinout

arduino_nano_pinout.png

Each of the 14 digital pins on the Nano can be used as an input or output, using pinMode(), digitalWrite(), and digitalRead() functions. They operate at 5 volts. Each pin can provide or receive a maximum of 40mA and has an internal pull-up resistor (disconnected by default) of 20-50kOhms. In addition, some pins have specialized functions:

  • Serial: 0 (RX) and 1 (TX). Used to receive (RX) and transmit (TX) TTL serial data.

  • External Interrupts: 2 and 3. These pins can be configured to trigger an interrupt on a low value, a rising or falling edge, or a change in value. See the attachInterrupt() function for details.

  • PWM: 3, 5, 6, 9, 10, and 11. Provide 8-bit PWM output with the analogWrite() function.

  • SPI: 10 (SS), 11 (MOSI), 12 (MISO), 13 (SCK). These pins support SPI communication.

  • I2C: A4 (SDA) and A5 (SCL). Support I2C communication using the Wire library.

  • LED: 13. There is a built-in LED connected to digital pin 13. When the pin is HIGH value, the LED is on, when the pin is LOW, it's off.

The Nano has 8 analog inputs, each of which provide 10 bits of resolution (i.e. 1024 different values). By default they measure from ground to 5 volts, though is it possible to change the upper end of their range using the analogReference() function. Analog pins 6 and 7 cannot be used as digital pins.

There are a couple of other pins on the board:

  • AREF. Reference voltage for the analog inputs. Used with analogReference().

  • Reset. Bring this line LOW to reset the microcontroller.

Arduino IDE

The open-source Arduino Software (IDE) allows you to write programs and upload them to your board. This software can be used with any Arduino board and it's compatible with most operating systems. It is available for downloading on the official Arduino website.

Arduino blank sketch

As you can see, the interface is very simple and easy to use. The most used buttons are available on the top (from left to right):

  • Verify: verify your sketch for errors and try to compile it

  • Upload: verify, compile and upload the sketch to the Arduino board

  • New: create a new sketch

  • Open: open already existing sketch

  • Save: save open sketch

  • Serial Monitor: I/O interface to communicate with the board

Arduino sketch

A sketch is a program written with the Arduino IDE. Sketches are saved on the development computer as text files with the file extension .ino.

A minimal Arduino C/C++ program consists of only two functions:

  • setup(): This function is called once when a sketch starts after power-up or reset. It is used to initialize variables, input and output pin modes, and other libraries needed in the sketch.

  • loop(): After setup() function exits/ends, the loop() function is executed repeatedly in the main program. It controls the board until the board is powered off or is reset.

Conclusion

Thanks to its simple and accessible user experience, Arduino has been used in thousands of different projects and applications. The Arduino software is easy-to-use for beginners, yet flexible enough for advanced users. It runs on Mac, Windows and Linux. We have chosen Arduino Nano board because of its power, size and compatibility with other modules. But you are free to choose the board that better fits your project needs.

 Join Our Monthly Newsletter

Get the latest news and popular articles to your inbox every month

We never send SPAM nor unsolicited emails

0 Comments

Leave a Reply

Your email address will not be published.

Replying to the message: View original

Hey visitor! Unlock access to featured articles, remove ads and much more - it's free.