@@ -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):
- def red():
+ def red(self):
- def green():
+ def green(self):
- def blue():
+ def blue(self):
- def white():
+ def white(self):
- def flow():
+ def flow(self):
-class KEY(TinyObj):
+class KEY:
- def get() -> int:
+ def get(self) -> int:
-class LCD(TinyObj):
+class LCD:
- def clear(color: str):
+ def clear(self, color: str):
- 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):
-class Point(TinyObj):
+class Point: