Can Not Type into the WebREPL Terminal

General discussions and questions abound development of code with MicroPython that is not hardware specific.
Target audience: MicroPython Users.
Post Reply
eGRan
Posts: 7
Joined: Wed May 29, 2019 4:20 pm

Can Not Type into the WebREPL Terminal

Post by eGRan » Fri Jul 19, 2019 3:35 am

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?

Post Reply