Skip to content

Commit a4038f5

Browse files
committed
Avoid 'select' as variable name, as it will clash with some libraries.
1 parent 1c64477 commit a4038f5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

examples/Inputs/Inputs.ino

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ const char* radio_opts[] = {"Option1", "Option2", "Option3"};
2626
EmbAJAXRadioGroup<3> radio("radio", radio_opts);
2727
EmbAJAXMutableSpan radio_d("radio_d");
2828

29-
EmbAJAXOptionSelect<3> select("select", radio_opts);
30-
EmbAJAXMutableSpan select_d("select_d");
29+
EmbAJAXOptionSelect<3> optionselect("optionselect", radio_opts);
30+
EmbAJAXMutableSpan optionselect_d("optionselect_d");
3131

3232
EmbAJAXSlider slider("slider", 0, 1000, 500);
3333
EmbAJAXMutableSpan slider_d("slider_d");
@@ -71,9 +71,9 @@ MAKE_EmbAJAXPage(page, "EmbAJAX example - Inputs", "",
7171
&radio_d,
7272
&nextRow,
7373

74-
&select,
74+
&optionselect,
7575
&nextCell,
76-
&select_d,
76+
&optionselect_d,
7777
&nextRow,
7878

7979
&slider,
@@ -142,7 +142,7 @@ void updateUI() {
142142
// placing it here makes the client UI more responsive (try it).
143143
check_d.setValue(check.isChecked() ? "checked" : "not checked");
144144
radio_d.setValue(radio_opts[radio.selectedOption()]);
145-
select_d.setValue(radio_opts[select.selectedOption()]);
145+
optionselect_d.setValue(radio_opts[optionselect.selectedOption()]);
146146
slider_d.setValue(itoa(slider.intValue(), slider_d_buf, 10));
147147
color_d.setValue(strncpy(color_d_buf, color.value(), BUFLEN)); // r, g, b, are also available, numerically.
148148
text_d.setValue(strncpy(text_d_buf, text.value(), BUFLEN));

examples/Visibility/Visibility.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ EmbAJAXStatic statics[] = {
3333
EmbAJAXCheckButton check("check", "Some option");
3434
const char* radio_opts[] = {"Option1", "Option2", "Option3"};
3535
EmbAJAXRadioGroup<3> radio("radio", radio_opts);
36-
EmbAJAXOptionSelect<3> select("select", radio_opts);
36+
EmbAJAXOptionSelect<3> optionselect("optionselect", radio_opts);
3737
EmbAJAXSlider slider("slider", 0, 1000, 500);
3838
EmbAJAXTextInput<30> text("text");
3939
void buttonPressed(EmbAJAXPushButton*) { }
4040
EmbAJAXPushButton button("button", "I can count", buttonPressed);
4141

42-
EmbAJAXBase* container1_contents[] = {&statics[0], &check, &statics[1], &select, &statics[2], &slider, &statics[3]};
42+
EmbAJAXBase* container1_contents[] = {&statics[0], &check, &statics[1], &optionselect, &statics[2], &slider, &statics[3]};
4343
EmbAJAXContainer<7> container1(container1_contents);
4444

4545
EmbAJAXBase* container2_contents[] = {&statics[0], &button, &statics[1], &text, &statics[2], &radio, &statics[3]};

0 commit comments

Comments
 (0)