Files
Damien George 7bbcee3cf0 tests: Move port-specific test directories into tests/ports/ directory.
To keep them all together, mirroring the top-level directory structure.

Signed-off-by: Damien George <damien@micropython.org>
2024-01-22 11:48:27 +11:00

16 lines
213 B
Python

from machine import Pin
p = Pin("SW1", Pin.IN)
if p.value() == 1:
print("pass")
else:
print("FAIL")
p = Pin("LED1", Pin.OUT)
p.high()
if p.value() == 1:
print("pass")
else:
print("FAIL")
p.low()