Chat freely about anything...

User avatar
By mikez
#2210 I put together an isolated build environment that's easy to spin up with just a few command line operations. It's based on a Debian Linux image running in VirtualBox, and managed by Vagrant, making it very cross-platform compatible. Check it out at:

https://github.com/mziwisky/esp8266-dev

Let me know if you have any questions/comments/suggestions/etc.
Last edited by mikez on Fri Nov 07, 2014 3:41 pm, edited 1 time in total.
User avatar
By alonewolfx2
#2221 Thank you for your awesome work :) (cats very pretty :) ) i have a couple questions and i have suggestions.
1-)what is the tpl extension and can i change this extension?
2-) i saw .js file in wifi directory. Can i add my script in here?
3-) can you add periodical send operation for web. like connect url and send gpio data from url. (mysite.com/savevalue.php?value)
thanks again for your source code.
User avatar
By rrprime
#2224 First of all I think you should have a good look at the code ant try to understand it and then we can help.

but to cut the story short:
1) tpl = template is a file that is read by the program and served to the browser. Can be changed. see folder for file name and also the binding in user_main.c
2) yes you can. but be careful as the setup is configured to write the web files to a certain address in memory. So you might overwrite other stuff when flashing or run out of memory to write to.
3) not really sure what you want here.
User avatar
By alonewolfx2
#2228 I am reading adc value to the tout pin and i want to send my website . I can send with at example and serial commant (at cipstart and cipsend) but i cant auto send from usermain.c