mirror of
https://github.com/openmv/openmv.git
synced 2025-09-26 23:09:13 +08:00
Update timer tests example.
This commit is contained in:
parent
9c5a15973a
commit
55366647ff
@ -15,8 +15,7 @@ print("")
|
||||
for i in range(1, 18):
|
||||
try:
|
||||
print("Testing TIM%d... "%(i), end="")
|
||||
tim = Timer(i, freq=10) # create a timer object using timer 4 - trigger at 1Hz
|
||||
tim.callback(tick) # set the callback to our tick function
|
||||
tim = Timer(i, freq=10, callback=tick)
|
||||
time.sleep_ms(1000)
|
||||
tim.deinit()
|
||||
except ValueError as e:
|
||||
|
Loading…
Reference in New Issue
Block a user