mobileRemoteController static method
Update Mobile Remote Controller Sticks Data (via Wifi)
Controls the mobile remote controller - an on-screen sticks controller. Available when the drone is connected via Wifi.
Implementation
static Future<void> mobileRemoteController({
required bool enabled,
required double leftStickHorizontal,
required double leftStickVertical,
required double rightStickHorizontal,
required double rightStickVertical,
}) async {
await _api?.mobileRemoteController(
enabled,
leftStickHorizontal,
leftStickVertical,
rightStickHorizontal,
rightStickVertical,
);
}