private void calculateTempo()
{
_quarterNote = 60000/_tempo;
_sixteenthNote = (_quarterNote/4);
}/M--
You received this message because you are subscribed to the Google Groups "ioio-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ioio-users+...@googlegroups.com.
To post to this group, send email to ioio-...@googlegroups.com.
Visit this group at http://groups.google.com/group/ioio-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
i can get millisecond timing with android and ioio
it all depends how you code it
tip, dont create any new variables in the loop, else the gc will cause stutter
also you need a wait command and use a timer not a sleep command.