You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

main.cpp 202B

1234567891011121314151617181920
  1. #include <Arduino.h>
  2. int main(void)
  3. {
  4. init();
  5. #if defined(USBCON)
  6. USBDevice.attach();
  7. #endif
  8. setup();
  9. for (;;) {
  10. loop();
  11. if (serialEventRun) serialEventRun();
  12. }
  13. return 0;
  14. }