-->
Page 1 of 2

I built a tool to set up an isolated build environment

PostPosted: Mon Nov 03, 2014 4:50 pm
by mikez
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.

Re: Getting started with development? Look here!

PostPosted: Tue Nov 04, 2014 6:42 am
by alonewolfx2
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.

Re: Getting started with development? Look here!

PostPosted: Tue Nov 04, 2014 8:34 am
by rrprime
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.

Re: Getting started with development? Look here!

PostPosted: Tue Nov 04, 2014 9:25 am
by alonewolfx2
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