1
0
mirror of https://github.com/s00500/ESPUI.git synced 2024-11-22 04:00:55 +00:00

Updated Readme.md

This commit is contained in:
ayushsharma82 2017-05-19 05:12:46 +05:30 committed by GitHub
parent 4064e11666
commit 95990b4d65

View File

@ -58,14 +58,14 @@ EasyUI is Based on [Skeleton CSS](http://getskeleton.com/) and Jquery for Handli
EasyUI is not Internet Dependent and will Continue working without any Internet Connection, All Assets are Loaded form ESP8266 Program Memory. EasyUI is not Internet Dependent and will Continue working without any Internet Connection, All Assets are Loaded form ESP8266 Program Memory.
##### Following Functions can be Used in Sketch: ##### Following Functions can be Used in Sketch:
<br>
**To Set an Title for your Webpage:** **To Set an Title for your Webpage:**
This Line of Code will Add your Custom Title to the Webpage Displayed by ESP8266. By Default is "EasyUI". This Line of Code will Add your Custom Title to the Webpage Displayed by ESP8266. By Default is "EasyUI".
``` ```
EasyUI.title(""); EasyUI.title("");
``` ```
<br>
**To Make Label on Webpage:** **To Make Label on Webpage:**
This will add an Label on your Web Interface. This will add an Label on your Web Interface.
@ -73,7 +73,7 @@ This will add an Label on your Web Interface.
EasyUI.label("Title", "Value"); EasyUI.label("Title", "Value");
``` ```
<br>
**To Make Toggle Button on Webpage:** **To Make Toggle Button on Webpage:**
This will add an toggle Button on your Webpage. For Extra Functionality* See Below This will add an toggle Button on your Webpage. For Extra Functionality* See Below
@ -81,7 +81,7 @@ This will add an toggle Button on your Webpage. For Extra Functionality* See Bel
EasyUI.toggleButton(pin,"Title"); EasyUI.toggleButton(pin,"Title");
``` ```
<br>
**Start the Library:** **Start the Library:**
Once you have Specified Any of the above Elements, Use this Below them to Start Inializing the Library. Once you have Specified Any of the above Elements, Use this Below them to Start Inializing the Library.
@ -89,7 +89,7 @@ Once you have Specified Any of the above Elements, Use this Below them to Start
EasyUI.begin(); EasyUI.begin();
``` ```
<br>
**Loop Function:** **Loop Function:**
Don't Forget to Add this in your void loop() Don't Forget to Add this in your void loop()
@ -97,7 +97,6 @@ Don't Forget to Add this in your void loop()
EasyUI.loop(); EasyUI.loop();
``` ```
<br>
## Extra Functionality ## Extra Functionality
There are Some Elements in Library which have Added extra Functionality for Ease of Use. There are Some Elements in Library which have Added extra Functionality for Ease of Use.