LoginSignup
10
10

More than 3 years have passed since last update.

Tello Eduを子機にしてwifiアクセスポイントに接続する【python】

Last updated at Posted at 2020-01-23

1 Telloを起動し、PCをTelloに接続する

この段階では、Tello(親機)、PC(子機)となっている

2 プログラムを実行しTelloをwifiに接続する

tello_wifi_access.py

import socket

tello_ip = '192.168.10.1'
tello_port = 8889

socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
tello_address = (tello_ip , tello_port)

socket.sendto('command'.encode('utf-8'),tello_address)
socket.sendto('ap SSID PASSWORD'.encode('utf-8'),tello_address)


SSIDとPASSWORDは接続するwifiのものに変更してください。

そうするとTelloは子機モードになり、SSIDのwifiに接続します。
一度設定すると設定は保存され、次回Telloが起動したときも自動的にwifiに接続します。

10
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
10