i have a while loop as my main function. within it i check several IF statements and call functions accordingly. one particular function i dont want to call if it has been run already within the last two minutes. i dont want to put a WAIT() statement in the function because i want the other IF tests to be performed duiring that time.
the code is something like this before any attempt at pausing myFunction()
while not(exit condition):
if(test):
otherFunction()
if(test):
otherFunction()
if(test):
myFunction()
i want myFunction() to only run at most once every two minutes. i could put a wait(120) within it but that would prevent otherFunction() being called in that time.
i tried
import time
set = 0
while not(exit condition):
if(test):
otherFunction()
if(test):
otherFunction()
if(test):
now = time.clock()
diff = 0
if not(set):
then = 0
set = 1
else:
diff = now - then
if (diff > 120):
myFunction()
then = now
without success. not sure if it is the right approach, and if it is, if this code is correct. my first time working in Python (actually Sikuli) and i dont seem to be able to trace execution through to see how that is being executed.
setis a bad variable name. It masks theset()command. – eumiro May 3 '11 at 8:21