Arduino Nano

by robogeekinc in Circuits > Arduino

27070 Views, 11 Favorites, 0 Comments

Arduino Nano

Arduino Nano.jpg
ARDUINO IDE.png

In this tutorial we will learn how to install Arduino IDE and connect the Arduino Nano compatible micro-controller.

To learn about what Arduino is, watch this quick video:

Downloading the Arduino IDE

ARDUINO IDE.png

Watch the video and follow the steps carefully to install in your computer

Connect Arduino Nano for the First Time

Arduino_nano_blink_example.gif

Follow the instructions in this video and implement the blink example shown.

Tips When Connecting Arduino Nano Compatible Board

IMG_1736.jpg
IMG_1737.jpg

Be gentle when connecting the Arduino Nano compatible board to the breadboard. The pins can bent if you do it forcefully, so press gently from the middle, then gradually press from each side until it's completely inserted as shown in the picture.

Also make sure the USB connection is facing out as shown. It will be much easier to follow the layouts and less cables crossing.

Test Arduino Nano With Red Led

arduino nano Red Led.jpg

Excellent tutorial. Follow instructions carefully and take your time to ensure connections are done properly.

Notice the green wire is connected to Ground. Red wire is connected to Pin 13.

The code:

int redPin = 12;

void setup() { // initialize Leds pinMode(redPin, OUTPUT);

}

void loop() { digitalWrite(redPin, HIGH); delay(1000); digitalWrite(redPin, LOW); delay(1000);

}