Files
Core2forAWS-MicroPython/tests/pyb/timer.py
T

14 lines
260 B
Python
Raw Normal View History

2015-02-23 13:18:33 +00:00
# check basic functionality of the timer class
2014-05-04 12:40:51 +01:00
import pyb
from pyb import Timer
tim = Timer(4)
tim = Timer(4, prescaler=100, period=200)
print(tim.prescaler())
print(tim.period())
tim.prescaler(300)
print(tim.prescaler())
tim.period(400)
print(tim.period())