Hello Tello Pilot!
Join our DJI Tello community & remove this banner.
Sign up

Recent content by ziv.is

  1. Z

    Identifying movement commands in SDK

    Some trial and error and I've figured that out. It's done using: "Tello.controllerState.setAxis(1, 0, 0, 0)" with all of its combinations. (1, 0, 0, 0) (0, 1, 0, 0) (0, 0, 1, 0) (0, 0, 0, 1) (-1, 0, 0, 0) (0, -1, 0, 0) (0, 0, -1, 0) (0, 0, 0, -1)
  2. Z

    Identifying movement commands in SDK

    Hi all, I've downloaded TelloLib code for C# and I am using it to play around with the drone. The library is excellent and does allow you to get started real fast but I wasn't able to identify some basic commands. Does anyone know how to: 1. fly right or left (I know how to turn) 2. fly up or...