Currently it only checks if time is greater than certain value. I’d like to check if it is equal to certain value to do things only once at specific point of time or if it is smaller than certain amount to ether do things within certain bounds (timer is greater than 2 seconds, but smaller than 5) or only until timer reaches certain value.
True, I could use variable to keep track on timer and do comparisons on it but it would be against KISS principle and I’d be wasting variables.