Circular analog-style meter for sensor values and percentages.
At a glance
Behavior
Firmware contract
Send a number in the configured range; the app maps it into the gauge arc.
On the app side this widget snaps to the 8-column square grid and uses both resizing. Its raw type is GAUGE and the matching icon token in the app is gauge.medium.
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
Widget contract
| Property | Value |
|---|---|
| Raw type | GAUGE |
| Default size | 4 x 4 |
| Minimum size | 2 x 2 |
| Resize mode | both |
| Pin requirement | required |
| Pin support | See behavior and firmware contract above |
| Interactive | read-only / service |
| Transmission | Depends 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
Limits and caveats
A minimal pattern that matches how this widget usually talks to the board.
void loop() { float pressure = readPressure(); Blynk.virtualWrite(V5, pressure);}Layout notes
Canvas footprint
4 x 4
Default footprint in the Plynx canvas before user resizing.
Resize floor
2 x 2
The minimum size accepted by the app during drag-resize.
Interaction model
Display
Whether the user edits state directly or only reads it.
Value Display
Fast numeric readout for single values like temperature, current or uptime.
Labeled Value
String template display with inline placeholder replacement for the current pin value.
LCD
Character display widget inspired by classic 16x2 LCD modules.
LED
Simple indicator surface where brightness or on/off state mirrors a pin.