From b92e7533d3b40fd5129982370f177f47b2790df8 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 8 Aug 2014 22:38:58 +0100 Subject: [PATCH] tests, pyb: Update pin test. --- tests/pyb/pin.py | 10 +++++++--- tests/pyb/pin.py.exp | 4 +++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/tests/pyb/pin.py b/tests/pyb/pin.py index 448ce53998..b3eb87b608 100644 --- a/tests/pyb/pin.py +++ b/tests/pyb/pin.py @@ -1,17 +1,21 @@ from pyb import Pin -p = Pin('X1') +p = Pin('X1', Pin.IN) print(p) print(p.name()) print(p.pin()) print(p.port()) p = Pin('X1', Pin.IN, Pin.PULL_UP) -#p = Pin('X1', Pin.IN, pull=Pin.PULL_UP) +p = Pin('X1', Pin.IN, pull=Pin.PULL_UP) +p = Pin('X1', mode=Pin.IN, pull=Pin.PULL_UP) +print(p) print(p.value()) p.init(p.IN, p.PULL_DOWN) -#p.init(p.IN, pull=p.PULL_DOWN) +p.init(p.IN, pull=p.PULL_DOWN) +p.init(mode=p.IN, pull=p.PULL_DOWN) +print(p) print(p.value()) p.init(p.OUT_PP) diff --git a/tests/pyb/pin.py.exp b/tests/pyb/pin.py.exp index 4856f5b8e7..599374600a 100644 --- a/tests/pyb/pin.py.exp +++ b/tests/pyb/pin.py.exp @@ -1,8 +1,10 @@ - +Pin(Pin.cpu.A0, mode=Pin.IN) A0 0 0 +Pin(Pin.cpu.A0, mode=Pin.IN, pull=Pin.PULL_UP) 1 +Pin(Pin.cpu.A0, mode=Pin.IN, pull=Pin.PULL_DOWN) 0 0 1