Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
openmv 可以通过按键控制不同的main函数嘛,如果可以需要怎么操作
直接定义不同的函数,然后在死循环里面查询调用:
def f1(): pass def f2(): pass while True: if 按键1按下: f1() if 按键2按下: f2()