From 4064e11666472b40d31fb7ca54e53d1951e7cbe0 Mon Sep 17 00:00:00 2001 From: ayushsharma82 Date: Fri, 19 May 2017 05:10:09 +0530 Subject: [PATCH] Improved ReadME --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 1f586f7..002fd63 100644 --- a/README.md +++ b/README.md @@ -61,33 +61,42 @@ EasyUI is not Internet Dependent and will Continue working without any Internet
**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". + ``` EasyUI.title(""); ```
**To Make Label on Webpage:** This will add an Label on your Web Interface. + ``` EasyUI.label("Title", "Value"); ``` +
**To Make Toggle Button on Webpage:** This will add an toggle Button on your Webpage. For Extra Functionality* See Below + ``` EasyUI.toggleButton(pin,"Title"); ``` +
**Start the Library:** Once you have Specified Any of the above Elements, Use this Below them to Start Inializing the Library. + ``` EasyUI.begin(); ``` +
**Loop Function:** Don't Forget to Add this in your void loop() + ``` EasyUI.loop(); ``` +
## Extra Functionality