PikaPiZero.pyi 542 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. class RGB:
  2. def init(self):
  3. pass
  4. def enable(self):
  5. pass
  6. def red(self):
  7. pass
  8. def green(self):
  9. pass
  10. def blue(self):
  11. pass
  12. def white(self):
  13. pass
  14. def flow(self):
  15. pass
  16. class KEY:
  17. def init(self):
  18. pass
  19. def get(self) -> int:
  20. pass
  21. class LCD:
  22. def init(self):
  23. pass
  24. def clear(self, color: str):
  25. pass
  26. def fill(self, x0: int, y0: int, hight: int, wight: int, color: str):
  27. pass
  28. class Point:
  29. pass