mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
21 lines
365 B
Python
21 lines
365 B
Python
import PikaStdDevice
|
|
|
|
|
|
class GPIO(PikaStdDevice.GPIO):
|
|
def platformHigh(self): ...
|
|
|
|
def platformLow(self): ...
|
|
|
|
def platformEnable(self): ...
|
|
|
|
def platformDisable(self): ...
|
|
|
|
def platformSetMode(self): ...
|
|
|
|
def platformRead(self): ...
|
|
|
|
class Time(PikaStdDevice.Time):
|
|
def sleep_s(self, s: int): ...
|
|
|
|
def sleep_ms(self, ms: int): ...
|