Widgets / directory

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

FieldTypeDefaultEffect
optionstext (csv)Red,Green,BlueComma-separated item labels.
colorcolorAccent 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.

See also

Related widgets