Skip to content

Commit 15df123

Browse files
committed
Merge pull request #631 from brenton311/master
Added copyright notice to example files.
2 parents c8b7bc6 + 8f9e2ac commit 15df123

File tree

13 files changed

+18
-0
lines changed

13 files changed

+18
-0
lines changed

examples/channel_overrides/channel_overrides.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
"""
2+
© Copyright 2015-2016, 3D Robotics.
3+
24
channel_overrides.py:
35
46
Demonstrates how set and clear channel-override information.

examples/create_attribute/create_attribute.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
"""
2+
© Copyright 2015-2016, 3D Robotics.
3+
24
create_attribute.py:
35
46
Demonstrates how to create attributes from MAVLink messages within your DroneKit-Python script

examples/create_attribute/my_vehicle.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
"""
2+
© Copyright 2015-2016, 3D Robotics.
3+
24
my_vehicle.py:
35
46
Custom Vehicle subclass to add IMU data.

examples/drone_delivery/drone_delivery.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""
2+
© Copyright 2015-2016, 3D Robotics.
23
drone_delivery.py:
34
45
A CherryPy based web application that displays a mapbox map to let you view the current vehicle position and send the vehicle commands to fly to a particular latitude and longitude.

examples/flight_replay/flight_replay.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""
2+
© Copyright 2015-2016, 3D Robotics.
23
flight_replay.py:
34
45
This example requests a past flight from Droneshare, and then 'replays'

examples/follow_me/follow_me.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""
2+
© Copyright 2015-2016, 3D Robotics.
23
followme - Tracks GPS position of your computer (Linux only).
34
45
This example uses the python gps package to read positions from a GPS attached to your

examples/gcs/microgcs.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
© Copyright 2015-2016, 3D Robotics.
3+
"""
14
#
25
# This is a small example of the python drone API - an ultra minimal GCS
36
#

examples/guided_set_speed_yaw/guided_set_speed_yaw.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22
"""
3+
© Copyright 2015-2016, 3D Robotics.
34
guided_set_speed_yaw.py: (Copter Only)
45
56
This example shows how to move/direct Copter and send commands in GUIDED mode using DroneKit Python.

examples/mission_basic/mission_basic.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""
2+
© Copyright 2015-2016, 3D Robotics.
23
mission_basic.py: Example demonstrating basic mission operations including creating, clearing and monitoring missions.
34
45
Full documentation is provided at http://python.dronekit.io/examples/mission_basic.html

examples/mission_import_export/mission_import_export.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""
2+
© Copyright 2015-2016, 3D Robotics.
23
mission_import_export.py:
34
45
This example demonstrates how to import and export files in the Waypoint file format

examples/performance_test/performance_test.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""
2+
© Copyright 2015-2016, 3D Robotics.
23
performance_test.py:
34
45
This performance test logs the interval between messages being

examples/simple_goto/simple_goto.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""
2+
© Copyright 2015-2016, 3D Robotics.
23
simple_goto.py: GUIDED mode "simple goto" example (Copter Only)
34
45
Demonstrates how to arm and takeoff in Copter and how to navigate to points using Vehicle.simple_goto.

examples/vehicle_state/vehicle_state.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""
2+
© Copyright 2015-2016, 3D Robotics.
23
vehicle_state.py:
34
45
Demonstrates how to get and set vehicle state and parameter information,

0 commit comments

Comments
 (0)