Search found 13 matches

by jamesb
Fri Dec 02, 2016 2:07 am
Forum: ESP8266 boards
Topic: wlan.connect timeout
Replies: 9
Views: 8806

Re: wlan.connect timeout

Thanks for that! After a bit more digging, it seems it was connecting to my router, but ifconfig revealed the IP addresses were for the router's configuration (10.0.0.xxx). I tried tethering to my phone and it got access to the internet no problems. Not sure why the router wasn't giving it access or...
by jamesb
Thu Dec 01, 2016 8:15 pm
Forum: ESP8266 boards
Topic: wlan.connect timeout
Replies: 9
Views: 8806

wlan.connect timeout

I'm using an ESP12E module. After deep sleep, WLAN sometimes connects, sometimes doesn't. I'm doing this: import network wlan = network.WLAN(network.STA_IF) wlan.disconnect() wlan.active(True) # activate the interface wlan.connect("ssid","password") # connect to an AP if (not wlan.isconnected()): ti...
by jamesb
Tue Nov 29, 2016 3:34 am
Forum: ESP8266 boards
Topic: Building the firmware broke I2C
Replies: 8
Views: 9754

Re: Building the firmware broke I2C

[quote="deshipu"]Oh, sorry, seems like the docs are not updated. Too bad.[/quote] Hi @deshipu, Could you provide an example of using the new signature? I'm using the i2c.init(scl=Pin(5), sda=Pin(4), freq=100000) i2c.scan() is finding my device (TMP112 on address 72), but I don't seem to be able to r...