Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 488 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 488 Bytes

Social Guardian Drone

Set-up your environment

  1. Install Python 3.7
  2. Install pipenv using pip install pipenv
  3. Install the dependencies for this project by running pipenv install in the root of this project (same directory as this README.md)

Running the program

  1. Run the program using the command pipenv run python main.py

Basic code to control the drone

from djitellopy import Tello

tello = Tello()
tello.connect()
tello.takeoff()
tello.land()