Timer
Last updated
Was this helpful?
Last updated
Was this helpful?
PyloidTimer
is a convenient timer management class based on PySide6's QTimer. It allows you to easily create and manage various types of timers.
First, create a PyloidTimer
instance:
To start a timer that runs periodically, use the start_periodic_timer
method:
To start a timer that runs only once, use the start_single_shot_timer
method:
For more precise timing, you can use precise timers:
PyloidTimer
is a powerful tool for managing various timing requirements easily. It can be useful in a wide range of situations, from simple periodic tasks to tasks that require precise timing.