Advertisement
aaaranes

Serial Monitor Test Arduino

Apr 6th, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.11 KB | Source Code | 0 0
  1. void setup(){
  2.   Serial.begin(9600);
  3. }
  4.  
  5. void loop(){
  6.   Serial.print("Hello World!\n");
  7.   delay(3000);
  8. }
Tags: Arduino
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement