Skip to content

Configure drone WiFi

ErnGusMik edited this page Sep 19, 2022 · 1 revision

Set TELLO or RMTT WiFi

tello.set_wifi(ssid, password)

Possible responses: ok / error
Parameters:

  • ssid: string. New TELLO network name, to be preceded by TELLO-.
  • password: string. New TELLO network password. Leave blank for no password.

Set RMTT WiFi for multiple device connections

tello.set_rmtt_wifi(ssid, password)

Possible responses: ok / error
Parameters:

  • ssid: string. New RMTT network name, to be preceded by RMTT-.
  • password: string. New RMTT network password. Leave blank for no password.

Connect to access point (for multiple drone control)

tello.set_ap(ssid, password)

Possible responses: ok / error
Parameters:

  • ssid: string. Wireless access point to connect to.
  • password: string. Password for access point. Leave blank for no password.

Set WiFi Channel

tello.set_wifi_channel(channel)

Possible responses: ok / error
Parameters:

  • channel: integer. Channel number. More about WiFi channels on Wikipedia. TELLO supports 2.4 GHz, RMTT -- 5 Ghz.

Set ports to communicate with drone

tello.set_ports(status_port, video_port)

Possible responses: ok / error
Parameters:

  • status_port: integer. Port in which the drone returns status responses (coming soon). Can be from 1025 to 65535.
  • video_port: integer. Port in which the drone returns video frames (coming soon). Can be from 1025 to 65535.