]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - tmk_core/protocol/usb_hid/arduino-1.0.1/cores/arduino/main.cpp
3d4e079d2a000a076350509dd424942df5949921
[max/tmk_keyboard.git] / tmk_core / protocol / usb_hid / arduino-1.0.1 / cores / arduino / main.cpp
1 #include <Arduino.h>
2
3 int main(void)
4 {
5         init();
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