Add support for millisecond delays within a macro sequence
This commit is contained in:
@@ -29,3 +29,16 @@ def reset_bootloader():
|
||||
import microcontroller
|
||||
microcontroller.on_next_reset(microcontroller.RunMode.BOOTLOADER)
|
||||
microcontroller.reset()
|
||||
|
||||
|
||||
def sleep_ms(ms):
|
||||
'''
|
||||
Tries to sleep for a number of milliseconds in a cross-implementation
|
||||
way. Will raise an ImportError if time is not available on the platform.
|
||||
'''
|
||||
try:
|
||||
import time
|
||||
time.sleep_ms(ms)
|
||||
except AttributeError:
|
||||
import time
|
||||
time.sleep(ms / 1000)
|
||||
|
Reference in New Issue
Block a user