Current News

Moderator: Mmiscool

User avatar
By Mmiscool
#31465 Bonus to every one
You can now use the basic interpreter to host files from your esp. This means images, java script and what ever else you want to use.

Download the latest version from the site.
http://www.esp8266basic.com/download.html

Added the following commands.

IMAGE:
Will insert an image in to the web page. Image file should be uploaded to device using the file manager.
button {image file name}


JAVESCRIPT:
Will allow you to include javascript files in your page. File must be uploaded to the device using the file manager.
javascript {filename}


IMAGEBUTTON:
Functions like a goto command. Will be sent to the browser on the wait command.
Will goto the branch label when clicked in the browser. The image file must be uploaded to the device using the file manager.
imagebutton {image file name} {Branch Label}


DROPDOWN:
Note that variable must be populated prior to use.
The selected item will be placed in to the variable.
dropdown {Item list seperated by commas} {var name}
example
​dropdown "One,Two,Three" bla