Post about your Basic project here

Moderator: Mmiscool

User avatar
By Mmiscool
#30602 Grab a copy of the latest version of the interpreter.

I believe I solved the problem with saving large programs.

Let me know what your results are.
User avatar
By xtal
#30703
Mmiscool wrote:Grab a copy of the latest version of the interpreter.

I believe I solved the problem with saving large programs.

Let me know what your results are.

FW booted to AP
According to chrome I saved ok, this only happen twice in about 15 tries, BUT
I could not open the files , would get reset ,, then FW booted STA
try to save in station mode -nothing happens try to open and reboots.
The code below is what I was trying...
Code: Select all rfh = "15"
Ipage = "http://i.imgur.com/KS1dPa7.png"

wprint |<!DOCTYPE HTML>|
wprint |<html lang="en-US">|
wprint |<head><meta http-equiv="refresh" content="15" ></head>|
wprint |<script type = "text/javascript">|
wprint |var timeInSecs;|
wprint |var ticker;function startTimer(secs){|
wprint |timeInSecs = parseInt(secs)-1;|
wprint |ticker = setInterval("tick()",1000);}|
wprint |function tick() {|
wprint |var secs = timeInSecs;|
wprint |if (secs>0) {timeInSecs--;} else {clearInterval(ticker);|
wprint |startTimer(15);}document.getElementById("countdown").innerHTML = secs;} startTimer(15);|
wprint |</script><body><div>|
wprint |<table bgcolor="Lawngreen" border="1" cellpadding="5">|
wprint |<th><h1>ESP8266 Blinker Thing!</h1></th>|
wprint |<td><IMG SRC="http://i.imgur.com/KS1dPa7.png" LEFT="1" WIDTH="120" HEIGHT="60" BORDER="1"></td>|
wprint |<th id="countdown">15</th></table><br>|
wprint |<div><textarea name="cmd1s" cols="70" rows="14"></textarea></div><br>|
wprint |<div><textarea name="cmd2s" cols="70" rows="6"></textarea></div><br>|
wprint |<div><table bgcolor="Yellow" border="1" cellpadding="5">
wprint |<tr><th>Sensor</th><th>TempC</th><th>TempF</th><th>PPMcntr</th><th>PPM__</th><th>Adj__1</th><th>Adj__2</th></tr>|
wprint |<tr><td>DS18B20P</td><td>25.9</td><td>78.6</td><td>43708</td><td>1676</td><td>1644.9</td><td>1644.2</td></tr>|
wprint |<tr><th>Probe-K</th><th>Pool-PH</th><th>PH-Adj</th><th>ADC Value</th></tr>|
wprint |<tr><td>01.0</td><td>7.0</td><td>7</td><td bgcolor="Red">902</td></tr></table></div><br>|
wprint |<form action="" method="POST">|
wprint |<input type="submit" name="m_do" value="BLINK" style="padding:5px;10px;">|
wprint |<input type="submit" name="m_do" value="RD_ADC" style="padding:5px;10px;">|
wprint |<input type="submit" name="m_do" value="TEMP_DN" style="padding:5px;10px;">|
wprint |<input type="submit" name="m_do" value="TEMP_UP" style="padding:5px;10px;"><br>|
wprint |"CMD:"<input type="text" name="m_do" value="" maxlength="100" style="padding:5px;10px;">|
wprint |<input type="submit" value="Submit"></form><br></body></html>
wait
User avatar
By xtal
#30835 Tried again, using ESP-210 instead of 12E. Same result, webpage says it saved and serial log says saved.
Try to open , esp resets.
after reboot and display, clicking edit or settings causes reboots
just HW reset/reboot clicked vars get no page , cannot reconnect, then retry later reboots
User avatar
By Mmiscool
#30840 Working on another fix to make programs able to be longer length.