1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-30 19:52:13 +01:00
David A. Mellis afb60e1163 Moving all pin definitions into pins_arduino.h.
This is a step towards providing portability across AVR's by simply including an appropriate header file.
2011-03-03 23:54:33 -05:00

16 lines
128 B
C++
Executable File

#define ARDUINO_MAIN
#include <Arduino.h>
int main(void)
{
init();
setup();
for (;;)
loop();
return 0;
}