2021-10-01 20:00:15 +08:00
|
|
|
from PikaObj import *
|
|
|
|
import PikaStdLib
|
|
|
|
|
2021-10-26 20:08:34 +08:00
|
|
|
|
2021-11-21 09:41:57 +08:00
|
|
|
class RGB(TinyObj):
|
2021-10-01 20:00:15 +08:00
|
|
|
def init():
|
|
|
|
pass
|
2021-10-26 20:08:34 +08:00
|
|
|
|
2021-10-01 20:00:15 +08:00
|
|
|
def enable():
|
|
|
|
pass
|
2021-10-26 20:08:34 +08:00
|
|
|
|
2021-10-01 20:00:15 +08:00
|
|
|
def red():
|
|
|
|
pass
|
2021-10-26 20:08:34 +08:00
|
|
|
|
2021-10-01 20:00:15 +08:00
|
|
|
def green():
|
|
|
|
pass
|
2021-10-26 20:08:34 +08:00
|
|
|
|
2021-10-01 20:00:15 +08:00
|
|
|
def blue():
|
|
|
|
pass
|
2021-10-26 20:08:34 +08:00
|
|
|
|
2021-10-01 20:00:15 +08:00
|
|
|
def white():
|
|
|
|
pass
|
2021-10-26 20:08:34 +08:00
|
|
|
|
2021-10-01 20:00:15 +08:00
|
|
|
def flow():
|
|
|
|
pass
|
|
|
|
|
2021-10-26 20:08:34 +08:00
|
|
|
|
2021-11-21 09:41:57 +08:00
|
|
|
class KEY(TinyObj):
|
|
|
|
def init():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get() -> int:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2021-11-22 12:10:48 +08:00
|
|
|
class LCD(TinyObj):
|
|
|
|
def init():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def clear(color: str):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def fill(x0: int, y0: int, hight: int, wight: int, color: str):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2021-10-26 21:44:10 +08:00
|
|
|
class Point(TinyObj):
|
|
|
|
pass
|