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
| Field | Type | Default | Effect |
|---|---|---|---|
startSeconds | number | 0 | Start time as seconds from midnight. |
stopSeconds | number | 0 | Stop time as seconds from midnight. |
color | color | — | Accent 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.