Widgets / directory

Value Display widget

What it does

Large numeric readout for a single scalar. The most common tile for telemetry like temperature, current or uptime.

Pins

  • Semantics: Single virtual pin (V1..V127)
  • Reads from one virtual pin, V1..V127.
  • Default size: 3 x 2

Config fields

FieldTypeDefaultEffect
minnumberOptional lower bound for coloring.
maxnumberOptional upper bound for coloring.
unittextUnit suffix beside the number.
precisionnumber0Decimal places rendered.
titletextOptional caption above the number.
hideValuebooleanfalseHides the number while keeping the frame.
colorcolorAccent for the readout.

Typical use

firmware.ino
void loop() {  float value = readTemp();  Blynk.virtualWrite(V3, value);}

iOS app

Yes — iOS Value Display uses the same title/unit/precision fields.

See also

Related widgets