mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
updte pikapizero pyi
This commit is contained in:
parent
bb1e31606b
commit
fdb8b66a15
@ -1,49 +1,44 @@
|
||||
#api
|
||||
from PikaObj import *
|
||||
import PikaStdLib
|
||||
|
||||
|
||||
class RGB(TinyObj):
|
||||
def init():
|
||||
class RGB:
|
||||
def init(self):
|
||||
pass
|
||||
|
||||
def enable():
|
||||
def enable(self):
|
||||
pass
|
||||
|
||||
def red():
|
||||
def red(self):
|
||||
pass
|
||||
|
||||
def green():
|
||||
def green(self):
|
||||
pass
|
||||
|
||||
def blue():
|
||||
def blue(self):
|
||||
pass
|
||||
|
||||
def white():
|
||||
def white(self):
|
||||
pass
|
||||
|
||||
def flow():
|
||||
def flow(self):
|
||||
pass
|
||||
|
||||
|
||||
class KEY(TinyObj):
|
||||
def init():
|
||||
class KEY:
|
||||
def init(self):
|
||||
pass
|
||||
|
||||
def get() -> int:
|
||||
def get(self) -> int:
|
||||
pass
|
||||
|
||||
|
||||
class LCD(TinyObj):
|
||||
def init():
|
||||
class LCD:
|
||||
def init(self):
|
||||
pass
|
||||
|
||||
def clear(color: str):
|
||||
def clear(self, color: str):
|
||||
pass
|
||||
|
||||
def fill(x0: int, y0: int, hight: int, wight: int, color: str):
|
||||
def fill(self, x0: int, y0: int, hight: int, wight: int, color: str):
|
||||
pass
|
||||
|
||||
|
||||
class Point(TinyObj):
|
||||
class Point:
|
||||
pass
|
||||
|
Loading…
x
Reference in New Issue
Block a user