Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
MoynaChen committed Oct 17, 2019
1 parent 16d3483 commit d35f1c4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 2.8.3)
project(tello_ros)
project(tello_driver)

## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
Expand Down Expand Up @@ -64,8 +64,8 @@ include_directories(
#add_executable(test_h264_sub src/test_h264_sub.cpp)
#target_link_libraries(test_h264_sub ${catkin_LIBRARIES} ${OpenCV_LIBS})

#add_executable(tello_ros src/tello_control.py)
#target_link_libraries(tello_ros ${catkin_LIBRARIES})
#add_executable(tello_driver src/tello_control.py)
#target_link_libraries(tello_driver ${catkin_LIBRARIES})


#############
Expand Down
4 changes: 2 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0"?>
<package format="2">
<name>tello_ros</name>
<name>tello_driver</name>
<version>0.0.0</version>
<description>>tello_ros</description>
<description>>tello_driver</description>

<author email="[email protected]">Anqi Xu</author>
<maintainer email="[email protected]">Anqi Xu</maintainer>
Expand Down
1 change: 0 additions & 1 deletion src/tello_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from sensor_msgs.msg import Image
from geometry_msgs.msg import Twist
from dynamic_reconfigure.server import Server
from tello_driver.cfg import TelloConfig
from cv_bridge import CvBridge, CvBridgeError

import time
Expand Down
3 changes: 1 addition & 2 deletions src/tello_driver_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from nav_msgs.msg import Odometry
from dynamic_reconfigure.server import Server
from h264_image_transport.msg import H264Packet
from tello_driver.msg import TelloStatus
from tello_driver.cfg import TelloConfig
from cv_bridge import CvBridge, CvBridgeError

Expand All @@ -18,7 +17,7 @@
import threading
import time
import sys
sys.path.append('/home/tello/TelloPy/')
sys.path.append('/home/tello/catkin_ws/src/TelloPy/')#/home/#your_name/catkin_ws/src/TelloPy
from tellopy._internal import tello
from tellopy._internal import error
from tellopy._internal import protocol
Expand Down

0 comments on commit d35f1c4

Please sign in to comment.