Search found 74 matches

by warren
Fri Jul 15, 2016 2:46 pm
Forum: ESP8266 boards
Topic: Binaries are free now!
Replies: 2
Views: 3207

Re: Binaries are free now!

I totally agree. I came to micropython on the ESP8266 through the Adafruit tutorial. That gives reasonable instructions for building a VM with the tool chain. I used that but then this week decided to update my micropython to the latest version. I ran into issues with the tool chain assembly and did...
by warren
Fri Jul 15, 2016 2:32 pm
Forum: ESP8266 boards
Topic: DHT11 & 22 question
Replies: 2
Views: 3105

DHT11 & 22 question

Hi Almost certainly this will strike some here as a tedious newbie question - sorry... I have a nicely working ESP8266 with Micropython - I got past all the teething troubles with poor power supplies, unreliable flashing sessions, general python learning curve etc.. But this has me stumped. I found ...
by warren
Thu Jul 14, 2016 10:52 am
Forum: ESP8266 boards
Topic: Wrong AP password entered, again
Replies: 6
Views: 5449

Re: "do_connect" function unstoppable?

Hi and thanks for the replies. I had tried ignoring the output and typing my commands while the "do_connect" output kept coming. It always glitched and the repl complained about bad syntax. I also tried speedily using the 'paste' mode - same again. :? It seems that erasing the flash memory is the on...
by warren
Tue Jul 12, 2016 6:07 pm
Forum: ESP8266 boards
Topic: Wrong AP password entered, again
Replies: 6
Views: 5449

Wrong AP password entered, again

Hi The micropython esp8266 docs give a "useful function": ******************************************************** def do_connect(): import network wlan = network.WLAN(network.STA_IF) wlan.active(True) if not wlan.isconnected(): print('connecting to network...') wlan.connect('essid', 'password') whi...