Advertisement
pleasedontcode

Arduino 1 - Sender

Jul 28th, 2024
399
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Arduino 0.23 KB | Source Code | 0 0
  1. void setup() {
  2.   Serial.begin(9600); // Initialize UART communication at 9600 baud
  3. }
  4.  
  5. void loop() {
  6.   Serial.println("Hello, Arduino 2!"); // Send a message
  7.   delay(1000); // Wait for 1 second before sending the next message
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement