utime.py 307 B

123456789101112131415
  1. # Copyright 2016 by MPI-SWS and Data-Ken Research.
  2. # Licensed under the Apache 2.0 License.
  3. """Emuation for micropython's utime module
  4. """
  5. from time import time, sleep
  6. def ticks_ms():
  7. return int(round(time()*1000))
  8. def sleep_ms(ms):
  9. sleep(ms/1000)
  10. def ticks_diff(old, new):
  11. return new - old