-->
Page 65 of 74

Re: Introducing esp-httpd: webserver on an ESP8266.

PostPosted: Tue Mar 17, 2015 8:59 am
by banitama
Hi,
I want to create a project based on esphttpd.
I need to store a configuration parameter that persist when the ESP8266 is power cycled.
Since esphttpd only provide RO filesystem, I was thinking of embedding another filesystem (spiffs, for example) to store configuration data.
What do you folks think? Have anyone meet similar need to me (storing persistent configuration)?

Re: Introducing esp-httpd: webserver on an ESP8266.

PostPosted: Wed Mar 18, 2015 10:18 am
by MK1888
Does esphttpd handle page requests such as this: 192.168.4.1/index.tpl?myvar=somedata ?

And if not, what do I need to do to handle that?

Re: Introducing esp-httpd: webserver on an ESP8266.

PostPosted: Wed Mar 18, 2015 11:42 am
by bjpirt
@MK1888 Yes, it pulls out the GET variables into a buffer for you to use later

Re: Introducing esp-httpd: webserver on an ESP8266.

PostPosted: Wed Mar 18, 2015 2:26 pm
by MK1888
Cool! This is a useful and educational project for developing ESP apps.