Advertisement
pleasedontcode

**WiFi Hello** rev_03

Nov 1st, 2024
34
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: **WiFi Hello**
  13.     - Source Code NOT compiled for: Arduino Nano ESP32
  14.     - Source Code created on: 2024-11-01 13:36:33
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* print hello every 1 second. */
  21. /****** END SYSTEM REQUIREMENTS *****/
  22.  
  23. /* START CODE */
  24.  
  25. /****** DEFINITION OF LIBRARIES *****/
  26. #include <ESP_AT_WiFiManager.h> //https://github.com/khoih-prog/ESP_AT_WiFiManager
  27.  
  28. /****** FUNCTION PROTOTYPES *****/
  29. void setup(void);
  30. void loop(void);
  31.  
  32. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  33. ESP_AT_WiFiManager wifiManager; // Instance of the WiFi Manager
  34.  
  35. void setup(void)
  36. {
  37.     // put your setup code here, to run once:
  38.     Serial.begin(115200); // Initialize serial communication at 115200 baud rate
  39.     wifiManager.autoConnect(); // Connect to WiFi
  40. }
  41.  
  42. void loop(void)
  43. {
  44.     // put your main code here, to run repeatedly:
  45.     Serial.println("hello"); // Print "hello" to the Serial Monitor
  46.     delay(1000); // Wait for 1 second
  47. }
  48.  
  49. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement