-->
Page 1 of 2

Edit Page is not connecting

PostPosted: Fri Dec 18, 2015 1:50 pm
by MuriloLD
Hi everyone,

I'm learning about the BASIC interpreter for the ESP and I fount it very interesting.
Just after I flashed my ESP, I could open the edit page ( http://192.168.4.1/edit ) normally. But now, I don't know why, I'm not getting into it.
The browser is not getting access to the http://192.168.4.1/edit page anymore.

Could anyone help me?
Thanks! :D

Re: Edit Page is not connecting

PostPosted: Fri Dec 18, 2015 6:45 pm
by Mmiscool
Can you post the output from the serial terminal.

Make sure your terminal is set at 9600

Re: Edit Page is not connecting

PostPosted: Sat Dec 19, 2015 10:51 am
by heckler
Murilo,

Is it because your module is busy running your code??
Do you need to incude an exit button and "end" function to be able to stop your device??

Code: Select allbutton "Exit " [Exit]
[Exit] end


Or is the "edit" capability supposed to always work?
You might be able to restart your module and then go right into the edit window.
or use the 30 second window that you have when restarting a module before the default program starts to flash new code or reflash the basic OS.

dwight

Re: Edit Page is not connecting

PostPosted: Sun Dec 20, 2015 10:32 am
by MuriloLD
Hello,

Thanks for the reply!
So, the only thing that I got from the serial output was strange characters (the baudrate was set to 9600). I've used an Arduino Uno connected to the RX/TX pins.

I think the edit page should always work, independently if there is any code running, isn't it?

The code that I first tried to run was this one:
Code: Select allbla = 0
timer 5000 [update.Values]
wprint |<meta http-equiv="refresh" content="10; url=./input" />|
wprint htmlvar(bla)
button "this is a test" [test.1]
wait
[test.1]
wprint "test 1 was clicked"
wait
[update.Values]
input "enter value" bla
wait
Provided by Mmiscool in this topic (viewtopic.php?f=45&t=5981).

Regardless of that, I already tried to flash a couple of times and reset my ESP8266 again and nothing.
Is there any chance that the URL for accessing the edit page is changed?

Thanks in advance,
Murilo