tests/extmod: Add test for machine.Signal class.

pull/2925/head
Damien George 2017-03-02 16:09:16 +11:00
rodzic f1ea3bc72b
commit ecc635d551
2 zmienionych plików z 44 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,40 @@
# test machine.Signal class
try:
import umachine as machine
except ImportError:
import machine
try:
machine.PinBase
machine.Signal
except AttributeError:
print("SKIP")
import sys
sys.exit()
class Pin(machine.PinBase):
def __init__(self):
self.v = 0
def value(self, v=None):
if v is None:
return self.v
else:
self.v = int(v)
# test non-inverted
p = Pin()
s = machine.Signal(p)
s.value(0)
print(p.value(), s.value())
s.value(1)
print(p.value(), s.value())
# test inverted, and using on/off methods
p = Pin()
s = machine.Signal(p, inverted=True)
s.off()
print(p.value(), s.value())
s.on()
print(p.value(), s.value())

Wyświetl plik

@ -0,0 +1,4 @@
0 0
1 1
1 0
0 1