Arduino Nano: Turn on the led of the arduino by sending a character from the PC.

in #utopian-io7 years ago (edited)

Screenshot.jpg
photocredits

for this activity you must remember the concepts shown below.

serial communication

Serial ports are the main way to communicate an Arduino board with a computer. Thanks to the serial port we can, for example, move the mouse

There are endless possibilities in which the use of the serial port is required. Therefore, the serial port is a fundamental component of a large number of Arduino projects, and it is one of the basic elements that we must learn in order to take full advantage of Arduino.

Serial ports

A port is the generic name with which we name interfaces, physical or virtual, that allow communication between two computers or devices.

A serial port sends the information through a sequence of bits. This requires at least two connectors to perform data communication, RX (reception) and TX (transmission). Sometimes you will see refer to the serial ports as UART.

Arduino and the Serial Port

Virtually all Arduino boards have at least one UART unit. Many models of Arduino boards have a USB or Micro USB connector connected to one of the serial ports, which simplifies the process of connecting to a computer. However some boards, such as the Mini Pro, do not have this connector so the only way to connect to them is directly through the corresponding pins.
we will connect using the USB cable.

Here we are going to see a photo of the arduino nano:

Screenshot002.jpg
PhotoCredits

Activity

we are going to use a pc key to turn on a led in arduino by serial communication. Specifically, we will turn on the LED with key number 1 and turn it off with any other key.

difficulty

This tutorial is for those who know the basics of Arduino.

Requirement

  • Arduino nano with USB Cable
  • Laptop with Arduino IDE

Steps to follow

  • Prepare the equipment needed for the activity.
  • Connect the arduino to the Laptop using the usb cable
  • Open Arduino IDE

now we are going to open a new project in arduino:

Sin título.png

you will see this window:

Sin título1.png

we will see the code to receive a character from the keyboard and verify whether the led is turned on or not. Remember that you must have basic arduino notions.

Program

now you must write the following code that I have explained:

foto1.jpg

This is the text code:


int key;
void setup() {
// put your setup code here, to run once:
pinMode(13, OUTPUT); // We declare that we use pin 13 as output
Serial.begin(9600); //sets the baud rate of the UART for serial transmission

}

void loop() {
// put your main code here, to run repeatedly:
if (Serial.available()>0){
//Get the number of bytes (characters) available for reading
//from the serial port. if the number of bytes available to read is greater than 0
//we continue.

key=Serial.read(); //Reads incoming serial data and
//returns the first byte of incoming serial data available.
if (key=='1'){
digitalWrite(13, HIGH); //if the value of the variable key is 1., the led turns on.
}
else{
digitalWrite(13, LOW); //if the value of the variable key is different from 1, the LED turns off.
}
}
}


The serial port monitor is a small utility integrated within IDE Standard that allows us to easily send and receive information through the serial port. In the image we see how to open the serial monitor:

Sin título.png

Using the serial monitor is very simple, and has two zones, one that shows the data received, and another to send them. You should check that the baud is 9600 as you configured it with the Serial.begin(9600) function.

Sin título1.png

Run the code. The characters will be sent to Arduino using the Serial Monitor. When we press 1 and SEND, the LED turns on. When we press any other character and SEND, will turn off.

Sin título2.png

try to run the code and start to learn.

Collaborations



Posted on Utopian.io - Rewarding Open Source Contributors

Sort:  

Hey @luisrod I am @utopian-io. I have just upvoted you!

Achievements

  • You have less than 500 followers. Just gave you a gift to help you succeed!
  • Seems like you contribute quite often. AMAZING!

Suggestions

  • Contribute more often to get higher and higher rewards. I wish to see you often!
  • Work on your followers to increase the votes/rewards. I follow what humans do and my vote is mainly based on that. Good luck!

Get Noticed!

  • Did you know project owners can manually vote with their own voting power or by voting power delegated to their projects? Ask the project owner to review your contributions!

Community-Driven Witness!

I am the first and only Steem Community-Driven Witness. Participate on Discord. Lets GROW TOGETHER!

mooncryption-utopian-witness-gif

Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x

Thank you for the contribution. It has been approved.

You can contact us on Discord.
[utopian-moderator]

Coin Marketplace

STEEM 0.20
TRX 0.13
JST 0.029
BTC 65927.86
ETH 3481.42
USDT 1.00
SBD 2.66