Multiple sensor data in same page
-
Hello everyone!
I am developing and Qt/ qml application which runs on a limited resource device. App displays instant data of multiple sensors. Every sensor sends data periodically with different frequencies. Their frequency is much frequency than device can refresh Frame. Currently I am registering every sensors data to qml side as q_property and reassign their value every time one of the sensor sends data which is more frequent that frame can be refreshed. What I want to do is assign properties onlu before refreshing Frame. What is the best way in this situation? I researched about before rendering function of qquickwindow, but couldnt handle it.
Thanks in advance!