Search found 3 matches

by mzm
Sun Dec 18, 2022 9:24 pm
Forum: Programs, Libraries and Tools
Topic: VS Code Pymar microython
Replies: 9
Views: 38246

Re: VS Code Pymar microython

With VS Code 1.74.1 and Ubuntu 22.04 only pymakr-preview 2.25.2 works.
by mzm
Sun Feb 14, 2021 10:40 pm
Forum: ESP32 boards
Topic: ESP32 creates accesspoint although configured as WIFI client
Replies: 2
Views: 1173

Re: ESP32 creates accesspoint although configured as WIFI client

Thanks, that solved it.

Also ap.active() returns True
before I deactivate it.

Code: Select all

import network
ap = network.WLAN(network.AP_IF)
ap.active() -> True
ap.active(False)
Hmmm, looks kind of obvious now.
by mzm
Sat Feb 13, 2021 11:26 pm
Forum: ESP32 boards
Topic: ESP32 creates accesspoint although configured as WIFI client
Replies: 2
Views: 1173

ESP32 creates accesspoint although configured as WIFI client

Hi, Unfortunately I can't find my error with my ESP32 and esp32-the firmware idf3-20191220-v1.12.bin or esp32-idf3-20200902-v1.13.bin The Esp32 creates an accesspoint with the SSID "MicroPython-39XXXX" + default password although boot.py is configured as WIFI client. I was even able to connect to th...