Μετρών την ώραν#
Εισαγωγή#
Ο Χρονοδιακόπτης στο VEX 123 σάς επιτρέπει να παρακολουθείτε τον χρόνο που έχει παρέλθει και να εκτελείτε ενέργειες με βάση χρονικά διαστήματα. Μπορεί να χρησιμοποιηθεί για να μετρήσετε πόσο χρόνο χρειάζεται κάτι ή να το επαναφέρετε για νέες λειτουργίες χρονισμού.
Παρακάτω είναι μια λίστα με όλες τις μεθόδους:
Μέθοδοι – Έλεγχος και αλληλεπίδραση με το χρονόμετρο.
Κατασκευαστής – Δημιουργήστε επιπλέον χρονόμετρα.
Timer– Creates an additional timer.
επαναφορά#
reset sets the timer to zero. This can be used to time additional sections of code within the same project.
Usage:
timer.reset()
Παράμετροι |
Περιγραφή |
|---|---|
Αυτή η μέθοδος δεν έχει παραμέτρους. |
# Reset the timer when the Move button is pressed
while True:
console.clear()
console.print(timer.time(SECONDS))
wait(50, MSEC)
if robot.get_button(MOVE):
timer.reset()
φορά#
time returns the time since the timer was last reset as a decimal. The timer is automatically reset at the start of a project.
Usage:
timer.time(units)
Παράμετροι |
Περιγραφή |
|---|---|
|
The unit that represents the time: |
# Display the time until the Move button is pressed
while True:
console.clear()
console.print(timer.time(SECONDS))
wait(50, MSEC)
if robot.get_button(MOVE):
timer.reset()
Κατασκευαστές#
Timer#
Timer creates a new timer. A Timer object will immediately begin counting the moment it is created and will work with all timer methods.
Usage:
my_timer = Timer()
Παράμετροι |
Περιγραφή |
|---|---|
Αυτός ο κατασκευαστής δεν έχει παραμέτρους. |
# Display the time of two timers
wait(2, SECONDS)
timer_1 = Timer()
while True:
console.clear()
console.print("Timer: ", timer.time(SECONDS))
console.new_line()
console.print("timer_1: ", timer_1.time(SECONDS))
wait(15, MSEC)