How to get arduino to print something excatly once every milisecond?

westfw:
If that's not acceptable, you can probably use one of the "timer2" libraries to get interrupts that show up exactly every millisecond (at the expense of losing two PWM outputs.)

Or use micros() rather than millis() ?

...R