Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. int main(void)
  2. {
  3. init();
  4.  
  5. initVariant();
  6.  
  7. #if defined(USBCON)
  8. USBDevice.attach();
  9. #endif
  10.  
  11. setup();
  12.  
  13. for (;;) {
  14. loop();
  15. if (serialEventRun) serialEventRun();
  16. }
  17.  
  18. return 0;
  19. }
  20.  
  21. void setup() {
  22. }
  23.  
  24. void loop() {
  25. }
  26.  
  27. #include <Arduino.h>
  28.  
  29. void setup();
  30. void loop();
  31.  
  32. void setup() {
  33. }
  34.  
  35. void loop() {
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement