Search found 2 matches

by Headless
Tue Oct 31, 2017 7:35 am
Forum: Showcase
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 49
Views: 97988

Re: MicroPython on ESP32 with SPIRAM support

Thanks for fixing the ifconfig function. But DNS still doesnt work for me: >>> sta_if.isconnected() True >>> sta_if.ifconfig() ('192.168.1.123', '255.255.255.0', '192.168.1.1', '8.8.8.8') >>> import socket,usocket >>> print(socket.getaddrinfo("www.google.de", 80)) [] >>> print(usocket.getaddrinfo("w...
by Headless
Mon Oct 23, 2017 1:38 pm
Forum: Showcase
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 49
Views: 97988

Re: MicroPython on ESP-WROVER with 4MB of psRAM

Great work :D I think that i might have found a bug though. When I use the following code I cant set the DNS address for some reason. import network import time sta_if = network.WLAN(network.STA_IF) sta_if.ifconfig(("192.168.1.123", "255.255.255.0", "192.168.1.1", "192.168.1.1")) sta_if.active(True)...