Menu widget
What it does
Dropdown selector. Writes the selected index to the pin — handy when the option count outgrows a segmented control.
Pins
- Semantics: Single virtual pin (V1..V127)
- Writes an integer index to one virtual pin, V1..V127.
- Default size: 3 x 1
Config fields
| Field | Type | Default | Effect |
|---|---|---|---|
options | text (csv) | Red,Green,Blue | Comma-separated item labels. |
color | color | — | Accent for the trigger. |
Typical use
firmware.ino
BLYNK_WRITE(V1) { int idx = param.asInt(); setMode(idx);}iOS app
Yes — iOS menu shares labels + selected-index payload.