Search found 3 matches

by joker12
Sun Mar 07, 2021 10:19 pm
Forum: ESP32 boards
Topic: Micropython V1.14 Problem
Replies: 7
Views: 3501

Re: Micropython V1.14 Problem

Thanks for the update. I now know I'm sane?
by joker12
Thu Feb 11, 2021 12:23 am
Forum: ESP32 boards
Topic: Micropython V1.14 Problem
Replies: 7
Views: 3501

Re: Micropython V1.14 Problem

Thanks for the reply. I've installed version 1.14 on 3 ESP32's. Tried running webrepl in Thonney with the following result on each one: WebREPL connected >>> Exception in thread Thread-1: Traceback (most recent call last): File "D:\Users\xxx\AppData\Local\Programs\Thonny\lib\site-packages\websockets...
by joker12
Mon Feb 08, 2021 9:28 pm
Forum: ESP32 boards
Topic: Micropython V1.14 Problem
Replies: 7
Views: 3501

Micropython V1.14 Problem

Hi, I've been using Micropython v1.13 for some time and use webrepl to program the board using Thonny v3.3.3. This is the code in my boot.py: import esp esp.osdebug(None) import network wlan = network.WLAN(network.STA_IF) wlan.active(True) wlan.connect('xxxxx', 'xxxxx') wlan.isconnected() import web...