We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MicroPython version can be found by doing this at the REPL prompt:
>>> from sys import version >>> print(version) 3.4.0; MicroPython v1.21.0 on 2023-10-05
It could also be done with an MPRemote Exec one-liner:
py.exe -m mpremote connect COM3 exec 'from sys import version; print(version.split(";")[1].lstrip())' MicroPython v1.21.0 on 2023-10-05
Might be nice to have a menu option for this. Like maybe, Show MicroPython Version (version), right under Set realtime clock
The text was updated successfully, but these errors were encountered:
DavesCodeMusings
No branches or pull requests
MicroPython version can be found by doing this at the REPL prompt:
It could also be done with an MPRemote Exec one-liner:
Might be nice to have a menu option for this. Like maybe, Show MicroPython Version (version), right under Set realtime clock
The text was updated successfully, but these errors were encountered: