Note
Hello, welcome to the SunFounder Raspberry Pi & Arduino & ESP32 Enthusiasts Community on Facebook! Dive deeper into Raspberry Pi, Arduino, and ESP32 with fellow enthusiasts.
Why Join?
Expert Support: Solve post-sale issues and technical challenges with help from our community and team.
Learn & Share: Exchange tips and tutorials to enhance your skills.
Exclusive Previews: Get early access to new product announcements and sneak peeks.
Special Discounts: Enjoy exclusive discounts on our newest products.
Festive Promotions and Giveaways: Take part in giveaways and holiday promotions.
👉 Ready to explore and create with us? Click [here] and join today!
1.8 Serial Read¶
Overview¶
In addition to reading data from the electronic components, the Mega2560 board can read the data input in the serial port monitor, and you can use Serial.read() as the controller of the circuit experiment. Then we use LED to experiment with the Serial. Read() statement to control LED to turn on and off.
Components Required¶
Fritzing Circuit¶
In this example, we use digital pin 9 to drive LED. When 1 is entered in serial monitor, the LED lights up. When 0 is entered, the LED turns off.
Schematic Diagram¶
Code¶
Note
You can open the file
1.8_serialRead.ino
under the path ofsunfounder_vincent_kit_for_arduino\code\1.8_serialRead
directly.Or copy this code into Arduino IDE.
After the codes are uploaded to the Mega2560 board, please turn on the serial port monitor. Typing in ”1” can make LED turn on and typing in ”0” can make it turn off.
Code Analysis¶
Declare digital pin 9 as ledPin.
const int ledPin = 9;
Serial.read() reads a single byte of ASCII value, and therefore you need to declare a int type variable, incomingByte to store the acquired data.
int incomingByte = 0;
Run the serial communication in setup() and set the data rate to 9600.
Serial.begin(9600);
Set ledPin to OUTPUT mode.
pinMode(ledPin,OUTPUT);
The state of serial port monitor is judged in loop(), and the information processing will be carried out only when the data are received.
if (Serial.available() > 0){}
Reads the input value in the serial port monitor and stores it to the variable incomingByte.
incomingByte = Serial.read();
When the character ‘1’ is obtained, the LED is lit; when ’0’ is obtained, the LED turns off.
if(incomingByte=='1'){digitalWrite(ledPin,HIGH);}
else if(incomingByte=='0'){digitalWrite(ledPin,LOW);}
Note
Serial.read() takes the ASCII value in single character, which means that when you input ‘1’, the obtained value is not the number ‘1’, but the character ‘1’ whose corresponding ASCII value is 49.
※ ASCII chart¶
The ASCII (American Standard Code for Information Interchange) encoding dates to the 1960’s. It is the standard way that text is encoded numerically.
Note that the first 32 characters (0-31) are non-printing characters, often called control characters. The more useful characters have been labeled.