Does the Arduino Nano provide a Serial2 interface like the Arduino Mega? If so what pins are the Rx/Tx?
Does the Arduino Nano provide a Serial2 interface like the Arduino Mega ? If
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No. Arduino Nano uses either an ATmega168 or ATmega368 microcontroller, and these only have a single UART. Just like a regular Arduino (Uno or Duemilanove).
They do have both I2C and SPI, which you can use for communicating with another Arduino, and for some applications you can use SoftwareSerial, which allows you to do async serial on any pins, but also uses up a lot of CPU cycles.