Arduino Nano
The Arduino Nano is a small, complete, and breadboard-friendly board based on the ATmega328P released in 2008. It offers the same connectivity and specs of the Arduino Uno board in a smaller form factor.[1]
Arduino Nano Every | |
Developer | Arduino |
---|---|
Manufacturer | Many |
Type | Single-board microcontroller |
Retail availability | https://store.arduino.cc/usa/ |
Operating system | None |
CPU | Microchip AVR (8-bit) |
Memory | SRAM |
Storage | Flash, EEPROM |
The Arduino Nano is equipped with 30 male I/O headers, in a dip-30 like configuration, which can be programmed using the Arduino Software integrated development environment (IDE), which is common to all Arduino boards and running both online and offline.[2] The board can be powered through a type-b micro-USB cable, or through a 9V battery.[3]
In 2019, Arduino released the Arduino Nano Every, an pin-equivalent evolution of the Nano. It features a more powerful ATmega4809 processor, and twice the RAM.[4]
Technical specifications
- Microcontroller: Microchip ATmega328P [5]
- Operating Voltage: 5 Volts
- Input Voltage: 6 to 20 Volts
- Digital I/O Pins: 14 (plus 6 can PWM output pins)
- Analog Input Pins: 8
- DC Current per I/O Pin: 40 mA
- DC Current for 3.3V Pin: 50 mA
- Flash Memory: 32 KB of which 0.5 KB used by bootloader
- SRAM: 2 KB
- EEPROM: 1 KB
- Clock Speed: 16 MHz
- Length: 45 mm
- Width: 18 mm
- Weight: 7 g
Communication
The Arduino Nano has a number of facilities for communicating with a computer, another Arduino, or other microcontrollers. The ATmega328 provide UART TTL (5V) serial communication, which is available on digital pins 0 (RX) and 1 (TX). An FTDI FT232RL on the board channels this serial communication over USB and the FTDI drivers (included with the Arduino software) provide a virtual com port to software on the computer. The Arduino software includes a serial monitor which allows simple textual data to be sent to and from the Arduino board. The RX and TX LEDs on the board will flash when data is being transmitted via the FTDI chip and USB connection to the computer (but not for serial communication on pins 0 and 1). A SoftwareSerial library allows for serial communication on any of the Nano's digital pins. The ATmega328 also support I2C (TWI) and SPI communication. The Arduino software includes a Wire library to simplify use of the I2C bus. [5]
Automatic (software) reset
Rather than requiring a physical press of the reset button before an upload, the Arduino Nano is designed in a way that allows it to be reset by software running on a connected computer. One of the hardware flow control lines (DTR) of the FT232RL is connected to the reset line of the ATmega328 via a 100 nanofarad capacitor. When this line is asserted (taken low), the reset line drops long enough to reset the chip. [5]
This setup has other implications. When the Uno is connected to a computer running Mac OS X or Linux, it resets each time a connection is made to it from software (via USB). For the following half-second or so, the bootloader is running on the Uno. While it is programmed to ignore malformed data (i.e. anything besides an upload of new code), it will intercept the first few bytes of data sent to the board after a connection is opened.[5]
References
- "Arduino - ArduinoNano". www.arduino.cc.
- Aqeel, Adnan (2018-06-25). "Introduction to Arduino Nano". The Engineering Projects. Retrieved 2020-04-30.
- "Arduino Nano". arduino.cc. Retrieved 2020-11-25.
- "Deep dive with Dario: Get to know the Arduino Nano Every". Arduino.cc. Retrieved 2020-11-25.
- "Arduino Nano". arduino.cc. Retrieved 2020-11-25.