Arduino Mega 2560 support
If the following lines are added into ardustim.ino, ardustim will work correctly on an Arduino Mega 2560 (Outputting on Pins 52 and 53)
#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__)
pinMode(53, OUTPUT);
pinMode(52, OUTPUT);
#endif