Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QML Timer - How to improve accuracy?

I'm developing a QML metronome. I used a timer with interval 60000/Beats per minute. However it isn't really accurate. How can I improve the accuracy. Should I use a Timer, or is there a better solution?

like image 849
user1217990 Avatar asked Jan 11 '14 18:01

user1217990


1 Answers

The fundamental issue with QTimer that it uses the Qt event loop for the timing. Unfortunately, it cannot be accurate enough, inherently. The latency for notifications and all that within the event loop is getting in the way.

You would need to consider a timer that does not actually depend highly on the Qt event loop, like QueryPerformanceCounter() on Windows. That is how we get to the realm of QElapsedTimer.

Thereby, I would use QElapsedTimer for this purpose.

The following post has a custom class implemented for this purpose as it seems. You may be able to take it as is, and then tweak it to suit your need even better if needed.

High Resolution Timer

like image 139
lpapp Avatar answered Nov 07 '22 13:11

lpapp