Advertisement
rclott

MicroPython RP2 One Shot Timer Explorations

Apr 3rd, 2025
409
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.85 KB | Software | 0 0
  1. import time
  2. from machine import Timer
  3.  
  4. class OneShot:
  5.   def __init__(self, name, period, io):
  6.     self.flag = False
  7.     self.name = name
  8.     self.period = period
  9.     self.io = io
  10.     self.io.lamp_clear(0)
  11.     # self.timer = Timer()
  12.     self.timer = Timer(period = self.period,
  13.                     mode = Timer.ONE_SHOT,
  14.                     callback = self.callback )
  15.   def callback(self, t):
  16.     self.flag = True
  17.     self.io.lamp_toggle(0)
  18.   def go(self):
  19.     # self.timer.init()
  20.     self.timer.init(period = self.period,
  21.                     mode = Timer.ONE_SHOT,
  22.                     callback = self.callback )
  23. # testit
  24. io.lamp_clear(0)
  25. io.lamp_set(1)
  26. bang = OneShot('reply', 1000, io )
  27. print('starting...')
  28. while(True):
  29.   if bang.flag:
  30.     bang.flag = False;
  31.     io.lamp_toggle(1)
  32.     print('...')
  33.     bang.go()
  34.   time.sleep_ms(10)
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement