Speed & Joystick
Set the movement speed for active route walking or joystick movement.
Action: theappninjas.gpsjoystick.SPEED
Tier: Pro
Extras
Section titled “Extras”| Extra | Type | Required | Description |
|---|---|---|---|
speed | float | Yes | Speed in km/h (must be greater than 0) |
Tasker Example
Section titled “Tasker Example”- Create a new Task → Add Action → Misc → Send Intent
- Set Action to
theappninjas.gpsjoystick.SPEED - Enter Extra:
speed:25.0 - Set Target to Service
ADB Shell Example
Section titled “ADB Shell Example”adb shell am start-foreground-service \ -a theappninjas.gpsjoystick.SPEED \ --ef speed 25.0Common Speed References
Section titled “Common Speed References”| Activity | Speed (km/h) |
|---|---|
| Walking | 3-5 |
| Jogging | 8-12 |
| Cycling | 15-25 |
| Driving (city) | 30-60 |
| Driving (highway) | 80-120 |
Hide the on-screen joystick overlay. Location mocking continues in the background.
Action: theappninjas.gpsjoystick.HIDE
Tier: Pro
Extras: None
ADB Shell Example
Section titled “ADB Shell Example”adb shell am start-foreground-service -a theappninjas.gpsjoystick.HIDEShow the on-screen joystick overlay after it was hidden.
Action: theappninjas.gpsjoystick.SHOW
Tier: Pro
Extras: None
ADB Shell Example
Section titled “ADB Shell Example”adb shell am start-foreground-service -a theappninjas.gpsjoystick.SHOWJoystick Visibility Workflow
Section titled “Joystick Visibility Workflow”Toggle joystick visibility during automation - hide it while a test app is in the foreground, show it when you need manual control.
# Hide joystick before launching test appadb shell am start-foreground-service -a theappninjas.gpsjoystick.HIDE
# ... test app runs with mocked location, no joystick overlay ...
# Show joystick again for manual adjustmentadb shell am start-foreground-service -a theappninjas.gpsjoystick.SHOW