Skip to main content

Timer is module ported from micropython's machine.Timer and adapted to work with Python

Project description

Timer

Version 1.0

Description

Timer is module ported from micropython's machine.Timer and adapted to work with Python

Timer(tid)

Returns a timer object with the folowing functions

init(period,mode,interrupt,callback)

Sets the timers data

period (int):

timer length in milliseconds.

mode (var):

Can be the folowing

  • Timer.ONE_SHOT: A timer that only runs once
  • Timer.PERIODIC: A timer that runs forever until deinitalized

interrupt (bool)

Defaults to False
Whether to interupt main before executing callback

callback (object)

The function to call when the timer is finished.

cancel()

Cancels the timer and waits to be re-initalized

start()

Starts the timer

pause()

Pauses the timer

reset()

Restarts the timer from 0

deinit()

Kills the timer and removes it form memory.

dump()

Kills the timer while keeping its data in memory.

setCallback(callback)

Set's the timers callback.

callback (object)

The function to call when the timer is finished.

status()

Returns the timer status

Constants

  • Timer.ONE_SHOT: A timer that only runs once
  • Timer.PERIODIC: A timer that runs forever until deinitalized
  • Timer.NOT_RUNNING: The timer is not started
  • Timer.PAUSED: The timer is paused
  • Timer.FINISHED: The timer is finished
  • Timer.DUMPED:The timer was dumped

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mptimer-0.0.0.0.0.5.tar.gz (2.7 kB view hashes)

Uploaded Source

Built Distribution

mptimer-0.0.0.0.0.5-py3-none-any.whl (2.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page