micropython: add micropython component

This commit is contained in:
KY-zhang-X
2022-09-29 12:10:37 +08:00
parent 1514f1cb9b
commit dd76146324
2679 changed files with 354110 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# test calling a subclass of a native class that supports calling
# For this test we need a native class that can be subclassed (has make_new)
# and is callable (has call). The only one available is machine.Signal, which
# in turns needs PinBase.
try:
try:
import umachine as machine
except ImportError:
import machine
machine.PinBase
machine.Signal
except:
print("SKIP")
raise SystemExit
class Pin(machine.PinBase):
#def __init__(self):
# self.v = 0
def value(self, v=None):
return 42
class MySignal(machine.Signal):
pass
s = MySignal(Pin())
# apply call to the subclass, which should call the native base
print(s())