Arduino
Arduino
Arduino
TOTAL - 36 Pins
Pin Description
• Pins - 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
and 16
• As mentioned earlier, Arduino Nano has 14
digital I/O pins that can be used either as
digital input or output.
• The pins work with 5V voltage as maximum,
i.e., digital high is 5V and digital low is 0V.
Pin Description
• Serial Communication Pins - 1, 2
1 . RX:- These two pins RX- receive and TX-
transmit are used for TTL serial data
communication.
2 . TX :-The pins RX and TX are connected to
the corresponding pins of the USB-to-TTL
Serial chip.
Pin Description
• PWM(Pulse Width Modulation) (Pins - 6, 8, 9, 12, 13, and
14)
Each of these digital pins provide a Pulse Width Modulation
signal of 8-bit resolution. The PWM signal can be generated
using analogWrite () function.
• External Interrupts(Pins - 5, 6)
When we need to provide an external interrupt to other
processor or controller we can make use of these pins. These
pins can be used to enable interrupts INT0 and INT1
respectively by using the attachInterrupt () function.
Pin Description
• SPI Pins(Serial Peripheral Interface)(Pins - 13, 14,
15, and 16)
When you don’t want the data to be transmitted
asynchronously you can use these Serial Peripheral
Interface pins. These pins support synchronous
communication with SCK as the synchronizing clock.
• LED(Pin – 16)
The pin 16 is being connected to the blinking LED on
the board.
Pin Description
Pin Description
• Arduino Nano Analog (Pins - 18, 19, 20, 21, 22, 23, 24, 25, and 26)
As mentioned earlier UNO got 6 analog input pins but Arduino Nano
has 8 analog inputs (19 to 26), marked A0 through A7. Each of these
analog pins has a inbuilt ADC of resolution of 1024 bits (so it will give
1024 values). By default, the pins are measured from ground to 5V.