MicroPython - ESP32 - Is is possible to update files?

All ESP32 boards running MicroPython.
Target audience: MicroPython users with an ESP32 board.
User avatar
pythoncoder
Posts: 5956
Joined: Fri Jul 18, 2014 8:01 am
Location: UK
Contact:

Re: MicroPython - ESP32 - Is is possible to update files?

Post by pythoncoder » Mon Jul 30, 2018 6:58 am

A forum search is your friend ;) It would have turned up this solution.
Peter Hinch
Index to my micropython libraries.

guyd
Posts: 81
Joined: Fri Jul 20, 2018 6:08 am

Re: MicroPython - ESP32 - Is is possible to update files?

Post by guyd » Thu Aug 02, 2018 11:14 am

@pythoncoder,
last time I used telnet server you've suggested- everything went OK, even from a linux terminal.
since I needed to flash again my ESP32 board ( and copied exact files again), when I start the exact same telnet ( I see a message that telnet server is running with relevant IP ), but when I try to connect from Linux or Putty - though it connects, but doesn't respond to any key stroke.

Any idea why?

guyd
Posts: 81
Joined: Fri Jul 20, 2018 6:08 am

Re: MicroPython - ESP32 - Is is possible to update files?

Post by guyd » Fri Aug 03, 2018 10:13 am

and after reflashing again ( other reasons :) ):
got this"

Code: Select all

>>> import utelnetserver
>>> utelnetserver.start()
Telnet server started on 192.168.2.150:23
>>> Telnet connection from: ('192.168.2.101', 36718)
Traceback (most recent call last):
  File "utelnetserver.py", line 81, in accept_telnet_connect
OSError: stream operation not supported

qanuta
Posts: 2
Joined: Sun Feb 24, 2019 1:33 am

Re: MicroPython - ESP32 - Is is possible to update files?

Post by qanuta » Sun Feb 24, 2019 1:37 am

guyd,

I'm struggling with this same error on utelnetserver.py line 81 -- did you ever find a solution?

User avatar
Roberthh
Posts: 3667
Joined: Sat May 09, 2015 4:13 pm
Location: Rhineland, Europe

Re: MicroPython - ESP32 - Is is possible to update files?

Post by Roberthh » Sun Feb 24, 2019 6:41 am


qanuta
Posts: 2
Joined: Sun Feb 24, 2019 1:33 am

Re: MicroPython - ESP32 - Is is possible to update files?

Post by qanuta » Wed Feb 27, 2019 1:28 am

That did the trick. Thanks!

Post Reply