forked from dwalker-uk/TelloEduSwarmSearch
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tariq Abusheikh
committed
Dec 5, 2019
1 parent
8faf8de
commit 1c5e968
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from fly_tello import FlyTello | ||
|
||
# | ||
# Sets the drone up to use the same WiFi network. | ||
# | ||
# Before running this file, you need to connect directly to the Tello EDU's ad-hoc network. | ||
# This only needs to be run once per drone, or if the drone is reset. | ||
# | ||
# *NOTE*: Do not commit any changes to this file, or you will be sharing you WiFi information with the world! | ||
# | ||
|
||
with FlyTello(['XXX']) as fly: | ||
fly.set_ap_wifi(ssid='MY_SSID', password='MY_PASSWORD') |