So currently I am using a 5 second repeated timer to run all my operations but there is a draw back to this that the max accuracy I can achieve is of 5 sec, like if I want a time of 10 seconds, since the timer is already running, I will get a time of between 10 to 15 seconds.
So whats stopping me to initialize further timers is the factor of power consumption. How much effect would it happen on power consumption if I were to introduce a 1 second timer in parallel or only a 1 second timer.
I am using this method to initialize timer:
app_timer_create(); app_timer_start();
Please let me know if further clarification is needed.