1
0
mirror of https://github.com/s00500/ESPUI.git synced 2024-06-28 18:04:14 +00:00
ESPUI/README.md

115 lines
4.0 KiB
Markdown
Raw Normal View History

2017-05-18 23:08:17 +00:00
# EasyUI
2017-05-18 23:38:18 +00:00
![alt text](https://github.com/ayushsharma82/EasyUI/blob/master/img-example1.PNG "EasyUI")
2017-05-18 23:08:17 +00:00
Did you Ever Got into the Trouble of Making a good Looking UI for ESP8266 without having the skills to Build Perfect Webpages?
2017-05-18 23:38:18 +00:00
EasyUI is an User Interface Library for ESP8266 to Solve this Problem. This Library Uses Light-weight Websockets Protocol for Communicating with Webpage to Control, Make and Update Elements. All Elements are Created in a Card Type Grid, Where Each Element Stacks aside the other. The Whole webpage is Responsive and Adapts to Mobile Displays.
2017-05-18 23:08:17 +00:00
EasyUI uses functions native to arduino for creating the perfect Good Looking User Interface without the Need of Knowing Complex Javascripts etc.
## How to Install
###### Directly Through Arduino IDE
Go to Sketch > Include Library > Library Manager > Search for "EasyUI" > Install
###### Mannual Install
For Windows: Download the [Repository](https://github.com/ayushsharma82/EasyUI/archive/master.zip) and extract the .zip in Documents>Arduino>Libraries>{Place "EasyUI" folder Here}
For Linux: Download the [Repository](https://github.com/ayushsharma82/EasyUI/archive/master.zip) and extract the .zip in Sketchbook>Libraries>{Place "EasyUI" folder Here}
###### Mannually through IDE
Download the [Repository](https://github.com/ayushsharma82/EasyUI/archive/master.zip), Go to Sketch>Include Library>Add .zip Library> Select the Downloaded .zip File.
## Dependancies
This Library is Dependent on the Following Libraries to Function Properly.
- [ESP8266 Core Library](https://github.com/esp8266/Arduino)
- [arduinoWebSockets Library](https://github.com/Links2004/arduinoWebSockets)
- [ArduinoJson](https://github.com/bblanchon/ArduinoJson)
Make Sure all Libraries are Installed to make this Work.
2017-05-18 23:31:51 +00:00
## Elements
2017-05-18 23:08:17 +00:00
2017-05-18 23:31:51 +00:00
EasyUI Currently has the Following User Interface Elements:
2017-05-18 23:08:17 +00:00
- Toggle Button
- Label
2017-05-18 23:31:51 +00:00
## Upcoming Elements and Features
Upcoming Elements:
2017-05-18 23:08:17 +00:00
- ~~Toggle Button~~
- ~~Label~~
- Smart Variable
- Progress Bar
- Click Button
2017-05-18 23:31:51 +00:00
- Dropbox Selection
2017-05-18 23:08:17 +00:00
- Forums
- Tables
2017-05-18 23:31:51 +00:00
Upcoming Features:
- Detect Internet and Switch to Online File CDN
- WiFi Credentials Setup Page
- Embed MQTT
2017-05-18 23:08:17 +00:00
## Documentation
EasyUI is Based on [Skeleton CSS](http://getskeleton.com/) and Jquery for Handling Click Events Etc. The Communication Between ESP8266 and Webpage is with Websockets.
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:
2017-05-18 23:42:46 +00:00
2017-05-18 23:08:17 +00:00
**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".
2017-05-18 23:40:09 +00:00
2017-05-18 23:08:17 +00:00
```
EasyUI.title("");
```
2017-05-18 23:42:46 +00:00
2017-05-18 23:08:17 +00:00
**To Make Label on Webpage:**
This will add an Label on your Web Interface.
2017-05-18 23:40:09 +00:00
2017-05-18 23:08:17 +00:00
```
EasyUI.label("Title", "Value");
```
2017-05-18 23:40:09 +00:00
2017-05-18 23:42:46 +00:00
2017-05-18 23:08:17 +00:00
**To Make Toggle Button on Webpage:**
This will add an toggle Button on your Webpage. For Extra Functionality* See Below
2017-05-18 23:40:09 +00:00
2017-05-18 23:08:17 +00:00
```
EasyUI.toggleButton(pin,"Title");
```
2017-05-18 23:40:09 +00:00
2017-05-18 23:42:46 +00:00
2017-05-18 23:08:17 +00:00
**Start the Library:**
Once you have Specified Any of the above Elements, Use this Below them to Start Inializing the Library.
2017-05-18 23:40:09 +00:00
2017-05-18 23:08:17 +00:00
```
EasyUI.begin();
```
2017-05-18 23:40:09 +00:00
2017-05-18 23:42:46 +00:00
2017-05-18 23:08:17 +00:00
**Loop Function:**
Don't Forget to Add this in your void loop()
2017-05-18 23:40:09 +00:00
2017-05-18 23:08:17 +00:00
```
EasyUI.loop();
```
2017-05-18 23:40:09 +00:00
2017-05-18 23:08:17 +00:00
## Extra Functionality
There are Some Elements in Library which have Added extra Functionality for Ease of Use.
**For Toggle Buttons:**
For Toggle Buttons There are 2 Extra Functionalities which can be defined by user.
- First is **{Start State}** , This is for Selecting if you want that **GPIO** to Start in **LOW** or **HIGH**. **By Default it's LOW.** (Define LOW or HIGH instead of '{Start State}' )
- Second **{Swap State}**, is useful for Swapping the States at which UI Buttons will work. making **'{Swap State}'** replace with **true** will make GPIO **LOW when Clicked "Turn On"** and **HIGH when clicked "Turn Off"**. By Default this is **false**.
```
EasyUI.toggleButton(pin, "Title", {Start State}, {Swap State});
```
# Contribute
Liked this Library? You can Support me by sending me a :coffee: [Coffee](https://www.paypal.me/ayushsharma82/3).