Advertisement
Guest User

Untitled

a guest
Nov 9th, 2021
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1.  
  2. // Fill-in information from your Blynk Template here
  3. #define BLYNK_TEMPLATE_ID "TMPLN6ZnPedc"
  4. #define BLYNK_DEVICE_NAME "LED Blink"
  5.  
  6. #define BLYNK_FIRMWARE_VERSION "0.1.0"
  7.  
  8. #define BLYNK_PRINT Serial
  9. //#define BLYNK_DEBUG
  10.  
  11. #define APP_DEBUG
  12.  
  13. // Uncomment your board, or configure a custom board in Settings.h
  14. //#define USE_SPARKFUN_BLYNK_BOARD
  15. //#define USE_NODE_MCU_BOARD
  16. //#define USE_WITTY_CLOUD_BOARD
  17. //#define USE_WEMOS_D1_MINI
  18.  
  19. #include "BlynkEdgent.h"
  20.  
  21. void setup()
  22. {
  23. Serial.begin(115200);
  24. delay(100);
  25.  
  26. BlynkEdgent.begin();
  27. }
  28.  
  29. void loop() {
  30. BlynkEdgent.run();
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement