Skip to content

Commit 385f32f

Browse files
update docs
1 parent 070498b commit 385f32f

File tree

1 file changed

+4
-18
lines changed

1 file changed

+4
-18
lines changed

docs/apps/creating-apps.md

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -90,30 +90,16 @@ Just copy or move your the top-level folder `com.micropythonos.helloworld/` (and
9090

9191
On the ESP32, you can use MicroPython tools such as [mpremote.py](https://github.com/micropython/micropython/tree/master/tools/mpremote) to copy files and folders from-to your device using the MicroPython REPL.
9292

93-
You may need to change this one line:
94-
95-
```
96-
diff --git a/tools/mpremote/mpremote/main.py b/tools/mpremote/mpremote/main.py
97-
index e6e3970..7f5d934 100644
98-
--- a/tools/mpremote/mpremote/main.py
99-
+++ b/tools/mpremote/mpremote/main.py
100-
@@ -477,7 +477,7 @@ class State:
101-
self.ensure_connected()
102-
soft_reset = self._auto_soft_reset if soft_reset is None else soft_reset
103-
if soft_reset or not self.transport.in_raw_repl:
104-
- self.transport.enter_raw_repl(soft_reset=soft_reset)
105-
+ self.transport.enter_raw_repl(soft_reset=False)
106-
self._auto_soft_reset = False
107-
108-
def ensure_friendly_repl(self):
109-
```
110-
11193
Then connect your device with a cable and install your app using:
11294

11395
```
11496
/path/to/mpremote.py fs cp -r com.micropythonos.helloworld/ :/apps/
11597
```
11698

99+
Take a look at [`scripts/install.sh`](https://github.com/MicroPythonOS/MicroPythonOS/blob/main/scripts/install.sh) for convenient "install everything" or "install one app" scripting.
100+
101+
There might also exist MicroPython File Managers with a graphical user interface, if you prefer.
102+
117103
## Starting your App
118104

119105
If the app is installed into the /apps/ folder, it should show up in the launcher after refreshing it.

0 commit comments

Comments
 (0)