Using pyboard.py and ESP32 WIFI #9488
-
I have an ESP32 connected to my home network at 192.168.1.3 I tried changing the environment variable: export PYBOARD_DEVICE=ip:192.168.1.3 When I run the script: python pyboard.py main.py to try to run local file main.py on the ESP32, I get an error: failed to access ip:192.168.1.3 Regards |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
This is not currently supported on the ESP32. I think just the CC3200 port supports it (via its built-in telnet server). In the meantime webrepl is the best tool to use to access the esp32 over thr network, and we plan to add webrepl support to mpremote/pyboard. |
Beta Was this translation helpful? Give feedback.
-
For fuile access using wifi, you could as well use the ftp server. https://github.com/robert-hh/FTP-Server-for-ESP8266-ESP32-and-PYBD |
Beta Was this translation helpful? Give feedback.
This is not currently supported on the ESP32. I think just the CC3200 port supports it (via its built-in telnet server).
In the meantime webrepl is the best tool to use to access the esp32 over thr network, and we plan to add webrepl support to mpremote/pyboard.