1
0
mirror of https://github.com/s00500/ESPUI.git synced 2024-06-24 11:24:14 +00:00

send button value for button text

This commit is contained in:
Lukas Bachschwell 2017-11-13 17:22:02 +01:00
parent 3c26def22a
commit 6d206d21f9
2 changed files with 8 additions and 2 deletions

View File

@ -87,7 +87,7 @@ void ESPUIClass::label(const char *label, String value) {
cIndex++;
}
void ESPUIClass::button(const char *label, void (*callBack)(Control*, int)) {
void ESPUIClass::button(const char *label, void (*callBack)(Control*, int), String value) {
if (labelExists(label)) {
if (debug) Serial.println("UI ERROR: Element " + String(label) + " exists, skipping creating element!");
return;
@ -96,6 +96,12 @@ void ESPUIClass::button(const char *label, void (*callBack)(Control*, int)) {
Control *newB = new Control();
newB->type = UI_BUTTON;
newB->label = label;
if (value != "")
newB->value = value; // Init with labeltext
else
newB->value = String(label);
newB->callback = callBack;
newB->id = cIndex;
controls[cIndex] = newB;

View File

@ -63,7 +63,7 @@ void begin(const char* _title); // Setup servers and page
// Creating Elements
void label(const char* label, String value = ""); // Create Label
void button(const char* label, void (* callBack)(Control*, int)); // Create Event Button
void button(const char* label, void (* callBack)(Control*, int), String value = ""); // Create Event Button
void switcher(const char* label, bool startState, void (* callBack)(Control*, int)); // Create Toggle Button
void pad(const char* label, bool centerButton, void (* callBack)(Control*, int)); // Create Pad Control