Current News

Moderator: Mmiscool

User avatar
By Mmiscool
#26312
Does the esp8266 store as pcode or entire text strings?

The whole program is stored as strings and can be saved and loaded from flash memory.

If i have not already implemented it I will be doing it over the next couple of days such that one basic script can launch another basic script.

- Very interesting, esp. the web objects. Are they "placeable" on a virtual grid?

The web objects are placed in to the page sequentially along with printed ted and can be located by printing html around them to position them.
If there is a demand for an x and y location on them I will implement it but that would make auto sizing the page for browsers on different devices tricky.
Take a look at the gui demo for more information.
http://esp8266basic.com/gui-example/

Code: Select allWill advance math functions be included

Currently it supports math in the following format

Evaluating expressions math.
let {Result variable} = {value or variable} {operator *,/,+,-,&} {value or variable}

Evaluation expressions logic
let {Result variable} = {value or variable} {=, ==,>,<,<>,} {value or variable}

I do plan on implementing a more robust math evaluation function and would be open to any one who has one pre built that I could use but for right now its not terribly high on the list of todos.