tello_sim icon indicating copy to clipboard operation
tello_sim copied to clipboard

It dosnt support go command

Open cod3r0k opened this issue 2 years ago • 0 comments

Hi, I want to call go_xyz command and it is not implemented in tello sim. As you can see below, it just call "go x y z command in tello

    def go_xyz_speed(self, x: int, y: int, z: int, speed: int):
        """Fly to x y z relative to the current position.
        Speed defines the traveling speed in cm/s.
        Arguments:
            x: -500-500
            y: -500-500
            z: -500-500
            speed: 10-100
        """
        cmd = 'go {} {} {} {}'.format(x, y, z, speed)
        self.send_control_command(cmd)

cod3r0k avatar Sep 17 '23 20:09 cod3r0k