-
Notifications
You must be signed in to change notification settings - Fork 3
Configure drone WiFi
ErnGusMik edited this page Sep 19, 2022
·
1 revision
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.
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.
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.
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.
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
to65535
. - video_port: integer. Port in which the drone returns video frames (coming soon). Can be from
1025
to65535
.
Install on pip: pip install tello-sdk
Go home
Created by ErnGusMik in 2022. Licensed under the MIT license.