Stops a timer with a given ID :param timer_id: Timer ID of timer to stop :type timer_id: int :return:
(self, timer_id)
| 12544 | return timer.id |
| 12545 | |
| 12546 | def timer_stop(self, timer_id): |
| 12547 | """ |
| 12548 | Stops a timer with a given ID |
| 12549 | |
| 12550 | :param timer_id: Timer ID of timer to stop |
| 12551 | :type timer_id: int |
| 12552 | :return: |
| 12553 | """ |
| 12554 | _TimerPeriodic.stop_timer_with_id(timer_id) |
| 12555 | |
| 12556 | def timer_stop_all(self): |
| 12557 | """ |
no test coverage detected