1 Star 1 Fork 0

anve/my_coroutines_os

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
example3.py 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
anve 提交于 2019-04-16 21:16 . 优化在stm32f407上运行的速度。
from App import *
from TM1638 import *
class App1(App):
def __init__(self):
self.count = 0
self.count1 = 0
self.tm1638 = getTM1638()
def foo(self):
while True:
self.count = self.count+1
if(self.count > 0x0f):
self.count = 0
self.tm1638.write_NUM(0, self.count)
yield SleepTask(1000)
def foo2(self):
while True:
self.count1 = self.count1+1
if(self.count1>7):
self.count1 = 0
self.tm1638.write_allLED(0x01<<self.count1)
yield SleepTask(1000)
def main(self):
child = yield NewTask(self.foo())
child1 = yield NewTask(self.foo2())
print("sleep time", time.ticks_ms())
yield SleepTask(10000)
yield KillTask(child)
yield KillTask(child1)
print("exit count=", self.count, "time=", time.ticks_ms())
if __name__ == '__main__':
app = App1()
app.mainloop()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/anve/my_coroutines_os.git
[email protected]:anve/my_coroutines_os.git
anve
my_coroutines_os
my_coroutines_os
master

搜索帮助