Advertisement
pleasedontcode

Serial Hello rev_02

Oct 30th, 2024
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: Serial Hello
  13.     - Source Code compiled for: Arduino Nano ESP32
  14.     - Source Code created on: 2024-10-30 23:21:46
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* print hello every 1 second. */
  21. /****** END SYSTEM REQUIREMENTS *****/
  22.  
  23.  
  24. /* START CODE */
  25.  
  26. /****** DEFINITION OF LIBRARIES *****/
  27. #include <Arduino.h>
  28.  
  29. /****** FUNCTION PROTOTYPES *****/
  30. void setup(void);
  31. void loop(void);
  32.  
  33. void setup(void)
  34. {
  35.     // Initialize serial communication at 9600 bits per second
  36.     Serial.begin(9600);
  37. }
  38.  
  39. void loop(void)
  40. {
  41.     // Print "Hello" to the serial monitor
  42.     Serial.println("Hello");
  43.    
  44.     // Wait for 1 second (1000 milliseconds)
  45.     delay(1000);
  46. }
  47.  
  48. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement