1
0
mirror of https://github.com/s00500/ESPUI.git synced 2024-07-07 01:45:09 +00:00
ESPUI/examples/UI_Test/UI_Test.ino
2017-05-19 05:01:51 +05:30

35 lines
802 B
C++

/*
* Author: Ayush Sharma (ayushsharma82) Github
* Library: EasyUI
* - This is a Test Code of EasyUI Library
* - It Will Use the OnBoard LED of ESP8266 and toggle it.
*/
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <EasyUI.h>
const char* ssid = "hotspotk4c";
const char* password = "frenzy99";
void setup(void) {
Serial.begin(115200);
WiFi.begin(ssid, password);
Serial.println("");
// Wait for connection
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.print("IP address: ");
Serial.println(WiFi.localIP());
EasyUI.label("Label","123");
EasyUI.toggleButton(D4, "LED", HIGH, true); // LED Toggle Button * D4 for Nodemcu , 2 for Generic
EasyUI.begin();
}
void loop(void) {
EasyUI.loop();
}