Moderator: Mmiscool
Branch labels, 10 characters
No limit on number of gui items
Maximum 100 variables (not including arrays)
Script length limit, 5000 lines
http://esp8266basic.com
A BASIC interpreter for your ESP
Working now on Autodrop3d. A 3d printer with automatic part ejection system. https://autodrop3d.com
Could you please clarify what the maximum length of a string variable can be ???
I am doing all kinds of neat stuff to fancy things up on my screen and am splitting up CSS variables like this:
test = 950
Timer 100, [start]
wprint "<!DOCTYPE html>"
wprint "<html> <body>"
wprint |<body style="background-color:greenyellow;">|
wprint |<H1><span style="color: red;">|
wprint " A counter"
wprint "</H1>"
wprint "</span>"
wprint |<H2><span style="color: blue;">|
wprint "We are at "
textbox test
a = "background-color:greenyellow;"
a = a & "display:block;width:50px;"
a = a & "border-style: hidden;"
a = a & "font-size: 22px;"
a = a & "font-weight: bold;"
a = a & "color: fuchsia ;"
cssid htmlid(), a
cssid htmlid(), "position:absolute; left:130px; top:67px;"
wprint "</span>"
wprint "</H2>"
Wait
[start]
test = test + 1
wait
Works like a charm but it is unclear to me how many chars can be in the variable a before I run into problems.
Luc