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
|
class RGB:
|
||||||
from PikaObj import *
|
def init(self):
|
||||||
import PikaStdLib
|
|
||||||
|
|
||||||
|
|
||||||
class RGB(TinyObj):
|
|
||||||
def init():
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def enable():
|
def enable(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def red():
|
def red(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def green():
|
def green(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def blue():
|
def blue(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def white():
|
def white(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def flow():
|
def flow(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
class KEY(TinyObj):
|
class KEY:
|
||||||
def init():
|
def init(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def get() -> int:
|
def get(self) -> int:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
class LCD(TinyObj):
|
class LCD:
|
||||||
def init():
|
def init(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def clear(color: str):
|
def clear(self, color: str):
|
||||||
pass
|
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
|
pass
|
||||||
|
|
||||||
|
|
||||||
class Point(TinyObj):
|
class Point:
|
||||||
pass
|
pass
|
||||||
|
Loading…
x
Reference in New Issue
Block a user