Hello!! I have been making programs with app inventor classic for a couple of years just for fun and just migrated to MIT app inventor 2. I made an app that utilizes a timer that fires every 100 milliseconds and then I devide it by ten to get tenths of seconds. The problem is, some of my users have noticed that the app's timer is slow. About 16% slow. I cannot think of any reason why this would be, but maybe you could take a look at my blocks. The notifier timer just keeps the screen on.
Trying to push the limits of App Inventor! Snippets and Tutorials from Pura Vida Apps by Taifun.
Working with the Timer I find that the TimerInterval is from the time you exit the .Timer procedure until it restarts, ie if TimerInterval is 1000ms (1 second) and it takes 45ms for the phone to do your blocks the total time between any one block will be 1045ms.
Remember that your App is not the only thing running on the phone. If it's time for your Timer to go off and the phone is busy doing something else, your event will be delayed until the phone can get to it.
I made an app that utilizes a timer that fires every 100 milliseconds and then I devide it by ten to get tenths of seconds. The problem is, some of my users have noticed that the app's timer is slow. About 16% slow.