Widgets / directory

Timer widget

What it does

Schedule widget for time-based automation. The server evaluates startAt/stopAt and emits the configured values on boundary crossings.

Pins

  • Semantics: Single virtual pin (V1..V127)
  • Writes start/stop payloads to one virtual pin, V1..V127.
  • Default size: 2 x 2

Config fields

FieldTypeDefaultEffect
startSecondsnumber0Start time as seconds from midnight.
stopSecondsnumber0Stop time as seconds from midnight.
colorcolorAccent for the scheduled band.

Typical use

firmware.ino
BLYNK_WRITE(V1) {  int state = param.asInt();  digitalWrite(PUMP_PIN, state);}

iOS app

Yes — iOS timer uses server-side scheduling with the same start/stop payload model.

See also

Related widgets