Experiment 4 Serial Port Communication
by pcduino in Circuits > Arduino
1773 Views, 4 Favorites, 0 Comments
Experiment 4 Serial Port Communication
The components used in this experiment are shown below:
The experiment needs only the Arduino board.
The experiment needs only the Arduino board.
Wire Diagram
Plug the Arduino to PC through the USB port.
Arduino Code
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println(“Hello World!”);
delay(1000);
}
Observe the output using a serial terminal console.
Serial.begin(9600);
}
void loop() {
Serial.println(“Hello World!”);
delay(1000);
}
Observe the output using a serial terminal console.