From 8cad42b980e269b2a16f582bb1b527b19ddf0390 Mon Sep 17 00:00:00 2001 From: Gavin Douch Date: Sun, 26 Jan 2025 10:02:36 +1100 Subject: [PATCH] mpremote: add page (#15573) Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/common/mpremote.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/mpremote.md diff --git a/pages/common/mpremote.md b/pages/common/mpremote.md new file mode 100644 index 0000000000..a62af2f826 --- /dev/null +++ b/pages/common/mpremote.md @@ -0,0 +1,24 @@ +# mpremote + +> Remotely control MicroPython devices. +> More information: . + +- List all connected MicroPython devices: + +`mpremote connect list` + +- Open an interactive REPL session with a connected device: + +`mpremote connect {{device}}` + +- Run a local script on a connected device: + +`mpremote run {{path/to/script.py}}` + +- Mount a local directory to the device: + +`mpremote mount {{path/to/directory}}` + +- Install a mip package on the device: + +`mpremote mip install {{package}}`