Widgets / directory

Step widget

What it does

Plus/minus incremental control with fixed step size. Can either send the absolute value or the delta.

Pins

  • Semantics: Single virtual pin (V1..V127)
  • Writes a scalar to one virtual pin, V1..V127.
  • Default size: 4 x 1

Config fields

FieldTypeDefaultEffect
minValuenumber0Lower clamp for the value.
maxValuenumber100Upper clamp for the value.
stepnumber1Increment/decrement amount per tap.
showValuebooleantrueShows the current value between the arrows.
colorcolorAccent for the arrows.

Typical use

firmware.ino
BLYNK_WRITE(V1) {  int value = param.asInt();  setPoint = constrain(value, 0, 100);}

iOS app

Yes — iOS step widget uses the same min/max/step + optional delta send behavior.

See also

Related widgets