Current News

Moderator: Mmiscool

User avatar
By Erni
#26944 I think you should make the startup instructions more clear.
You write:
Goto http://192.168.4.1/edit in your browser. You should see a screen that looks like this.


That didn't work for me (I have a ESP-01 that connects to my WiFi at startup)
What i did:
Ater flashing open a serial terminal @9600
You vil see this message (the IP number will be different)

8—þƒ‡H‡þÿSimple Basic Interperter For ESP8266...
file open failed
1234
Connected to
IP address : 192.168.0.104


Point your browser to this IP-number, and click "edit"

Now you can follow the rest of the instructions
User avatar
By Mmiscool
#26948 That is true.

I wrote those instruction for a virgin module. Will have to update the instructions.
User avatar
By Mmiscool
#26961 added graphics commands!

GRAPHICS
Adds a graphics element to the page
Each parameter can be a variable or a value.
graphics {width} {height}


LINE:
Creates a line in the graphic element
Each parameter can be a variable or a value.
line {x1} {y1} {x2} {y2}


CIRCLE:
Creates a circle in the graphic element
Each parameter can be a variable or a value.
circle {x1} {y1} {radius}


ELLIPSE:
Creates a ellipse in the graphic element
Each parameter can be a variable or a value.
ellipse {x1} {y1} {radiusX} {radiusY}


RECT:
Creates a rectangle in the graphic element
Each parameter can be a variable or a value.
rect {x1} {y1} {radiusX} {radiusY}
User avatar
By Mmiscool
#26978 Added new examples:

http://www.esp8266basic.com/blink-example.html
and
http://www.esp8266basic.com/graphics-example.html