How to "lock" mpremote access to ESP32 board #16773
Unanswered
MatejKovacic
asked this question in
ESP32
Replies: 2 comments 2 replies
-
https://github.com/micropython/micropython/wiki/Securing-a-MicroPython-system |
Beta Was this translation helpful? Give feedback.
1 reply
-
If anyone is interested in this topic, please take a look at |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a small ESP32 board running an app that is writing some text on built-in OLED screen and to a serial console.
Now, the problem is, that anyone can copy my
main.py
file from the device withmpremote
and change it. It it possible to somehow "lock" the device that it would not be possible to see .py (or other) files on it? If I usemachine.UART(0).deinit()
, app is not running (i. e. I can not see the data on the serial console). What are other options?(Warning: total newbie here)
Beta Was this translation helpful? Give feedback.
All reactions