what command can output OpenMV firmware version?
时间: 2024-04-08 22:32:52 浏览: 94
To output the OpenMV firmware version, you can use the following command:
```python
import pyb
print(pyb.firmware_version())
```
This will print the firmware version of your OpenMV camera to the console.
阅读全文