I have a background in programming embedded systems (TI MSP430, Atmel ATxmega). How is programming an Arduino different than those? What knowledge about C can I take in to p
Arduino is C, except that this is inserted into every program:
void main() { setup(); for(;;) { loop(); } }