How to change the speed

Hello everyone, I need to change the speed of my drone because for the moment it’s to fast to do what I want. Anybody have an idea to do that ?

in FreeFlight or with the SDK ?

with the sdk on olympe

So is it possible to change it with the SDK on olympe ? I need to do it faster as possible to be in time for my project.
And a second question, is possible to take some pictures? Because I succeed in taking video but not in pictures ? Do I have to to take a screen-shot of my CV2 screen or there is a function who could do that ?

Thank’s for your answer

@AlbanSc I believe you can change the speed by using MaxTilt. I believe the min (in degrees) is 1 and the max is 40.

For example, the following bit of code makes the drone painfully slow in the sphinx simulator:

    IP = "10.202.0.1"
    drone = olympe.Drone(IP)
    drone.connect()
    drone(TakeOff()).wait().success()
    drone(MaxTilt(1)
     >> MaxTiltChanged(1,1,1)
    ).wait().success()
    drone(moveBy(10,0,0,0)).wait().success()
    drone.disconnect()
2 Likes

This topic was automatically closed after 30 days. New replies are no longer allowed.