update bsp/simulation-keil/pikascript/Device.py.

This commit is contained in:
李昂 2022-04-07 15:25:59 +00:00 committed by Gitee
parent 8fb6fbf0c6
commit 181b10da1e
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -1,15 +1,15 @@
from PikaObj import *
class LED(TinyObj):
def on():
def on(self):
pass
def off():
def off(self):
pass
class Uart(TinyObj):
def send(data:str):
def send(self, data:str):
pass
def setName(name:str):
def setName(self, name:str):
pass
def printName():
def printName(self):
pass