This gem will let you fly the Tello drone or Tello EDU drone using Ruby.
If you don't already have one, get a Tello drone! A number of retailers carry them for $99 USD. (You can also use the test server packaged with this gem to simulate commands, but that's not nearly as fun.)
Install the Ruby gem:
$ gem install tello
The gem comes with a command-line utility, also named tello
. We can use it to launch an interactive console (IRB, or Pry if installed) and send commands to the drone. Go ahead and start the console:
$ tello console
Now, set the drone on the ground clear of any objects (including yourself) and press the button to turn it on. Wait for it to boot up, until the status light is blinking yellow.
Linux and Windows users: Connect to the drone's Wi-Fi manually (the network name should start with TELLO-
). For macOS users, this will happen automatically with the next command.
In your interactive console, connect to the drone like so (the >
here is just to note it's a Ruby prompt β don't type that):
> connect
If you've successfully connected to the drone, you should see a "ready to fly" message. You're now ready to take flight!
> takeoff
The drone should now be hovering. At this point, you can run all sorts of flight commands, described in the next section. Before we learn about all of them, let's have some fun. Stand clear of the drone and do a back flip:
> flip :backward
Nice! For now, let's land the drone and learn about what else it can do.
> land
The Tello EDU drones operate in two mutually exclusive modes: the AP mode and the Station Mode. The AP mode is the default Out-Of-The-Box mode which lets you control the Tello EDU as regular Tello drone: one controller per drone. Once you test that the drone is working as expected, you need to manually switch it the "Station" mode which allows a single controller to control a swarm of multiple Tello EDU drones, all of which are in the station mode.
To set the Tello EDU in Station mode, you should use the command-line utility that comes with this gem, named telloedu
. You can use it to launch an interactive console and send commands to the Tello EDU drones (one at a time for now). Go ahead and start the console (be sure to connect to the drone's WIFI before you start sending commands):
$ telloedu console
Ready to receive TelloEDU commands. Type "exit" to quit.
[1] pry(main)> connect
[2] pry(main)> ap 'Your-Wifi-SSID', 'Your-WIFI-password' ## this should reboot the drone in about 3 seconds
[3] pry(main)> quit
Now, set the drones on the ground, clear of any objects (including yourself) and press the button to turn them on. Wait for them to boot up, until the status light is blinking yellow.
In your interactive console, connect to the drone like so (the >
here is just to note it's a Ruby prompt β don't type that):
> connect(:ap, 'ipv4.of.drone.1') ### e.g. '192.168.0.101'
If you've successfully connected to the drone, you should see a "ready to fly" message. You're now ready to take flight!
> takeoff
The drone should now be hovering. At this point, you can run all sorts of flight commands, described in the next section. For now, let's land the drone and learn about what else it can do.
> land
Now, connect to the other drone like so:
> connect(:ap, 'ipv4.of.drone.2') ### e.g. '192.168.0.102'
If you've successfully connected to the drone, you should see a "ready to fly" message. You're now ready to take flight!
> takeoff
Now, let's land the drone and learn about what else it can do.
> land
This gem comes packed with commands you can send to the Tello drone. Let's go through each one.
The first command you'll run is connect
. This will establish a network connection to the drone and prepare it for further commands. If already connected, connect
will try to re-establish a connection (helpful for troubleshooting). If you need to, you can also use the disconnect
command to break the connection.
Use this command to take flight! The drone will soon hover in place.
Slowly descend to the ground and stop all rotors.
Immediately stop all rotors. This is like the "kill switch" for the drone, useful in emergencies. Be careful: the drone will fall from the sky and could get damaged.
These are essential movement commands. Each one takes the distance the drone should move as a parameter, from 20 to 500 cm, for example:
up 50 # ascend 50 cm
down 100 # descend 1 meter
left 250 # fly to the left 250 cm
right 75 # fly to the right 75 cm
forward 500 # fly forwards 5 m
backward 200 # fly backwards 2 m
These commands rotate the drone clockwise or counterclockwise, from 1 to 3600 degrees, for example:
cw 90 # turn toward the right
cw 360 # turn toward the right in a full circle
ccw 180 # turn toward the left, facing in the opposite direction
ccw 3600 # spin around 10 times
Make the drone do a flip in a given direction, for example:
flip :left
flip :right
flip :forward
flip :backward
# Or use this shorthand for the direction
flip :l
flip :r
flip :f
flip :b
Get or set the speed of the drone, in cm/s (centimeters per second). Without parameters, it will simply return the speed. To set the speed used during movement commands, provide a value from 10 to 100 as a parameter, for example:
speed # get the current speed in cm/s
speed 75 # set the drone speed to 75 cm/s
speed 100 # set speed to 1 m/s
forward 300 # fly forwards 3 meters in 3 seconds
The drone can also be given a precise location to move, based on a 3D coordinate system. The go
command tells the drone to move to an x, y, z position at a given speed. The coordinate values must be between 20 and 500 cm, while the speed must be between 10 and 100 cm/s, for example:
# Parameters: x, y, z, speed
go 100, 200, 50, 10
Fly in a curve, where the coordinates are between 20 and 500 cm, and speed is between 10 and 100 cm/s, for example:
# Parameters: x1, y1, z1, x2, y2, z2, speed
curve 50, 100, 100, 25, 50, 75, 25
Send remote controller values via four channels, each between -100 and 100, for example:
# Parameters: left/right, forward/backward, up/down, yaw
rc 0, 50, -25, 100
Get the height of the drone in cm.
Get the inertial measurement unit (IMU) attitude data. Example response: "pitch:-8;roll:3;yaw:2;"
Get the IMU angular acceleration data. Example response: "agx:-138.00;agy:-51.00;agz:-989.00;"
Get the barometer value.
Get the distance from the time-of-flight (TOF) camera.
Get the flight time.
Get the battery level.
Get the temperature range of the drone in celsius.
Get the Wi-Fi signal-to-noise ratio (SNR). Provide parameters to set the SSID and password, for example:
# Get the SNR
wifi
# Set the SSID with password
wifi ssid: 'my-drone', pass: '12345'
Get the state of the entire drone represented as a hash. Select a specific value by using one of the following keys: :pitch
, :roll
, :yaw
, :vgx
, :vgy
, :vgz
, :templ
, :temph
, :tof
, :h
, :bat
, :baro
, :time
, :agx
, :agy
, :agz
Finally, you can send raw command strings to the Tello drone (this is what we use internally for all the commands above). Refer to the Tello SDK documentation for a listing of available commands. For example:
send 'command'
send 'height?'
send 'up 50'
You can simulate a connection to a Tello by running a test server at the command line, like so:
$ tello server
Then, open a new terminal window and run:
$ tello console --test
Now, run Tello commands just like you would when connected to a real drone.
Run rake
to build this gem and install locally.
To release a new version:
- Update the version number in
version.rb
, commit changes - Create a new release in GitHub, with tag in the form
v#.#.#
- Run
rake
to build the gem, then push it to rubygems.org withgem push tello-#.#.#.gem
- π