Widgets / directory

Joystick widget

What it does

Two-axis XY control for steering, pan/tilt and driving. Streams throttled x/y samples to one pin, or splits axes across two pins.

Pins

  • Semantics: Two virtual pins (split axes)
  • Single-pin mode writes 'x,y'; split mode writes X to pinX and Y to pinY.
  • Default size: 3 x 3

Config fields

FieldTypeDefaultEffect
autoReturnbooleanfalseRecenters the stick after release.
pinXtextSplit-mode X pin override (V1..V127).
pinYtextSplit-mode Y pin override (V1..V127).
colorcolorAccent for the stick knob.

Typical use

firmware.ino
BLYNK_WRITE(V1) {  int x = param[0].asInt();  int y = param[1].asInt();  driveAxes(x, y);}

iOS app

Yes — iOS joystick shares the 50 ms throttle and split-pin option.

See also

Related widgets