Doorev1200 wrote:Can someone please explain this user condition to me and how it is interpreted.
Next button false and not(next button false(for 0.10s)) and display mode change false (for 0.20s)
OK, three conditions have to all be true (the "and" operator forces this):
1) Next Button false (so it's not being currently pushed if it's a momentary button)
2) not (invert the state of ) (next button false for 0.1 sec) so this condition is only true when next button is either true (which conflicts with the first condition) or has been false for less than 0.1 second (so it was true)
3)display mode change false for 0.2 sec -- we have not changed display modes in last 0.2 sec.
So, the result is that this condition becomes true only when you do quick clicks of the Next Button. Holding down the next button will generally change the display mode. -- it's a trick for overloading the next button to do two things.