General area when it fits no where else

Moderator: Mmiscool

User avatar
By MuriloLD
#36730 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
User avatar
By Mmiscool
#36749 Can you post the output from the serial terminal.

Make sure your terminal is set at 9600
User avatar
By heckler
#36784 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
User avatar
By MuriloLD
#36829 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