I'm working on a sequencer, to use as a midi controller or OSC controller I'd like to my sketch to be able to generate its own sync source.
So my question is, should I use the draw() function and try to set fps in setup() or do I use a function like millis()
or should I use a library? seems like overkill for a glorified timer.. I just don't want any of my code to interfere with the timing..