Page 1 of 1

Can Not Type into the WebREPL Terminal

Posted: Fri Jul 19, 2019 3:35 am
by eGRan
I can not type anything into the Micropython WebREPL terminal. I can get the webrepl running on a esp32 using the following code:

Code: Select all

import network
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
wlan.connect('ssid', 'password')

import webrepl_setup
import webrepl
webrepl.start()
Passing the IP address from

Code: Select all

wlan.ifconfig()
to the terminal on a web browser gives the appropriate

Code: Select all

Password:
however I can not type anything into the terminal. I have tried this on Chromium, Chrome, and Firefox with the same behavior.

What am I missing? Has anything seen this behavior?