Search found 2 matches

by amwales
Thu Jun 09, 2016 2:15 pm
Forum: ESP8266 boards
Topic: Initial Setup via AP
Replies: 8
Views: 13345

Re: Initial Setup via AP

I am planning on doing something very similar. You want to get the esp8266 to act as a captive portal. Basically setup the esp8266 in AP mode and intercept DNS requests such that the address returned for any query is the address of the esp8266 device. The esp8266 needs to be running as a webserver l...
by amwales
Wed Jun 08, 2016 1:51 pm
Forum: ESP8266 boards
Topic: esp8266 async sockets
Replies: 3
Views: 5876

esp8266 async sockets

I would like to process UDP and TCP data in an async manner.
What is the recommended approach with in micropython for esp8266.
I was unable to import select/poll and I didn't see SO_NONBLOCK so dont think I can
just poll the sockets myself in a non blocking way. Ideas?