Widgets / directory

Value Display

VALUE_DISPLAY

Fast numeric readout for single values like temperature, current or uptime.

At a glance

Default4 x 2
Minimum2 x 1
Resizeboth
Pinrequired
Interactiveno

Behavior

  • One of the most common dashboard widgets.
  • Can be styled as large telemetry tiles.
  • Often paired with charts and gauges showing the same signal.

Firmware contract

Just publish a value with Blynk.virtualWrite(Vx, value).

On the app side this widget snaps to the 8-column square grid and uses both resizing. Its raw type is VALUE_DISPLAY and the matching icon token in the app is textformat.123.

Pin support: A configured pin is required before the widget becomes meaningful.

Transmission: Payload format depends on the widget type and the selected pinType.

Canvas preview

docs.widget.preview
25
Value Display
stable
STATUS

Widget contract

PropertyValue
Raw typeVALUE_DISPLAY
Default size4 x 2
Minimum size2 x 1
Resize modeboth
Pin requirementrequired
Pin supportSee behavior and firmware contract above
Interactiveread-only / service
TransmissionDepends on the widget payload type

Allowed pin families

Bound to the configured pinType and limited by how the current app/connector serialize the widget payload.

Transport path

Payload leaves the canvas through the dashboard transport and lands on the selected virtual, digital or analog endpoint.

Operational limits

Server-side behavior may still depend on board library support and project policy.

Configuration surface

  • Color, label and position are stored in the dashboard profile.
  • Use the app-side widget config sheet to tune behavior per widget type.

Limits and caveats

  • Server-side behavior may still depend on board library support and project policy.

Firmware example

A minimal pattern that matches how this widget usually talks to the board.

value-display.ino
void loop() {  float temp = readTemp();  Blynk.virtualWrite(V4, temp);}

Layout notes

Canvas footprint

4 x 2

Default footprint in the Plynx canvas before user resizing.

Resize floor

2 x 1

The minimum size accepted by the app during drag-resize.

Interaction model

Display

Whether the user edits state directly or only reads it.

Related widgets