Widgets / directory

Gauge widget

What it does

Analog-style circular meter for bounded sensor values. Read-only; the firmware publishes the latest scalar through Blynk.virtualWrite.

Pins

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

Config fields

FieldTypeDefaultEffect
minnumber0Lower bound of the arc.
maxnumber100Upper bound of the arc.
unittextUnit suffix rendered inside the dial.
precisionnumber0Decimal places for the readout.
titletextOptional caption above the dial.
styleselect (arc / ring / half)arcDial geometry.
colorcolorActive arc color.

Typical use

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

iOS app

Yes — iOS gauge supports arc/ring/half with identical range semantics.

See also

Related widgets