mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
18 lines
332 B
Python
18 lines
332 B
Python
|
|
class GPIO(TinyObj):
|
|
def __init__(self, name:str, PinMode:str, Speed:str):
|
|
pass
|
|
def High(self):
|
|
pass
|
|
def Low(self):
|
|
pass
|
|
def Read(self) -> int:
|
|
pass
|
|
def Write(self, state:int):
|
|
pass
|
|
def Toggle(self):
|
|
pass
|
|
|
|
class HELP(TinyObj):
|
|
def __init__():
|
|
pass |