Hi @robolink_leila,
I had tried, but it is still not working
The following code is executed. Although the drone gradually went to a higher level, it was still hopping against the floor and cannot hover.
from CoDrone.codrone import *
if __name__ == '__main__':
drone = CoDrone()
drone.pair(drone.Nearest, "/dev/ttyUSB0")
# Fly 1500mm away from bottom and hover
drone.takeoff()
drone.go_to_height(2000)
drone.land()