Widgets / directory

Number Input widget

What it does

Keypad-driven numeric entry with min/max clamping. Useful for calibration constants, setpoints and PID parameters.

Pins

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

Config fields

FieldTypeDefaultEffect
minnumberClamps entries below this value.
maxnumberClamps entries above this value.
unittextUnit suffix shown beside the value.
precisionnumber0Decimals accepted in the input.
titletextLabel rendered above the input.
colorcolorAccent for the input frame.

Typical use

firmware.ino
BLYNK_WRITE(V1) {  float target = param.asDouble();  setSetpoint(target);}

iOS app

Yes — iOS number input uses the same min/max/precision contract.

See also

Related widgets