37class CustomCheckboxParameter :
public HtmlElement {
39 CustomCheckboxParameter(
const char *paramTag,
40 const char *paramLabel,
41 uint8_t defaultValue = 0);
42 virtual ~CustomCheckboxParameter();
44 bool handleResponse(
const char* key,
const char* value)
override;
45 void onProcessingEnd()
override;
47 void setTag(
const char *tagValue);
48 void setLabel(
const char *labelValue);
52 char *label =
nullptr;
53 uint8_t checkboxValue;
54 bool checkboxFound =
false;