1
0
mirror of https://github.com/s00500/ESPUI.git synced 2025-07-04 01:00:19 +00:00

2 Commits
1.1 ... 1.1.1

Author SHA1 Message Date
0f0162ad8b Versionbump 2017-10-20 12:40:48 +02:00
356f3d6edd More example mistakes
when stressed out...
2017-10-20 12:04:03 +02:00
2 changed files with 13 additions and 13 deletions

View File

@ -31,22 +31,22 @@ void setup(void) {
Serial.println(WiFi.localIP()); Serial.println(WiFi.localIP());
*/ */
EasyUI.label("Status: Stop"); ESPUI.label("Status: Stop");
EasyUI.label("0"); ESPUI.label("0");
EasyUI.button("Push Button", &buttonCallback); ESPUI.button("Push Button", &buttonCallback);
EasyUI.button("Push Button", &buttonExample); ESPUI.button("Push Button", &buttonExample);
EasyUI.pad("center", true, &padExample); ESPUI.pad("center", true, &padExample);
EasyUI.pad("NoCenter", false, &padExample); ESPUI.pad("NoCenter", false, &padExample);
EasyUI.switcher("Switch one", false, &switchExample); ESPUI.switcher("Switch one", false, &switchExample);
EasyUI.switcher("Switch two", true, &otherSwitchExample); ESPUI.switcher("Switch two", true, &otherSwitchExample);
EasyUI.begin("ESP32 Control"); ESPUI.begin("ESP32 Control");
} }
void loop(void) { void loop(void) {
if (millis() - oldTime > 5000) { if (millis() - oldTime > 5000) {
EasyUI.print(1, String(millis())); ESPUI.print(1, String(millis()));
oldTime = millis(); oldTime = millis();
} }
} }
@ -67,11 +67,11 @@ void buttonExample(int id, int type) {
switch (type) { switch (type) {
case B_DOWN: case B_DOWN:
Serial.println("Status: Start"); Serial.println("Status: Start");
EasyUI.print(0, "Status: Start"); ESPUI.print(0, "Status: Start");
break; break;
case B_UP: case B_UP:
Serial.println("Status: Stop"); Serial.println("Status: Stop");
EasyUI.print(0, "Status: Stop"); ESPUI.print(0, "Status: Stop");
break; break;
} }
} }

View File

@ -1,5 +1,5 @@
name=ESPUI name=ESPUI
version=1.1 version=1.1.1
author=Lukas Bachschwell author=Lukas Bachschwell
maintainer=Lukas Bachschwell <lukas@lbsfilm.at> maintainer=Lukas Bachschwell <lukas@lbsfilm.at>
sentence=ESP32 Web Interface Library sentence=ESP32 Web Interface Library