diff options
author | Craig Barnes <craig.barnes@member.fsf.org> | 2014-05-02 21:36:07 +0100 |
---|---|---|
committer | Craig Barnes <craig.barnes@member.fsf.org> | 2014-05-02 21:36:07 +0100 |
commit | 71a1e3520667e19f355c5e761465796a2721bc5a (patch) | |
tree | fb7c0562dd0691273cfe7c3a28f1dbc3426e4a54 /tools/pyboard.py | |
parent | e276753b458ef7c4c05469324173a455c0e2db46 (diff) | |
download | micropython-71a1e3520667e19f355c5e761465796a2721bc5a.tar.gz micropython-71a1e3520667e19f355c5e761465796a2721bc5a.zip |
Fix pyboard.py tests.
Diffstat (limited to 'tools/pyboard.py')
-rw-r--r-- | tools/pyboard.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tools/pyboard.py b/tools/pyboard.py index a44710914e..2f77ba37ca 100644 --- a/tools/pyboard.py +++ b/tools/pyboard.py @@ -110,18 +110,19 @@ def run_test(): pyb.exec('def apply(l, f):\r\n for item in l:\r\n f(item)\r\n') - pyb.exec('leds=[pyb.Led(l) for l in range(1, 5)]') + pyb.exec('leds=[pyb.LED(l) for l in range(1, 5)]') pyb.exec('apply(leds, lambda l:l.off())') ## USR switch test - if True: - for i in range(2): - print("press USR button") - pyb.exec('while pyb.switch(): pyb.delay(10)') - pyb.exec('while not pyb.switch(): pyb.delay(10)') + pyb.exec('switch = pyb.Switch()') + + for i in range(2): + print("press USR button") + pyb.exec('while switch(): pyb.delay(10)') + pyb.exec('while not switch(): pyb.delay(10)') - print('USR switch passed') + print('USR switch passed') ## accel test |