diff --git a/description/include/base_macro.urdf.xacro b/description/include/base_macro.urdf.xacro new file mode 100644 index 0000000..e46e3bc --- /dev/null +++ b/description/include/base_macro.urdf.xacro @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/description/include/depthai_macro.urdf.xacro b/description/include/depthai_macro.urdf.xacro new file mode 100644 index 0000000..05280b2 --- /dev/null +++ b/description/include/depthai_macro.urdf.xacro @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/description/models/OAK-D-LITE.stl b/description/models/OAK-D-LITE.stl new file mode 100644 index 0000000..e982f0a Binary files /dev/null and b/description/models/OAK-D-LITE.stl differ diff --git a/description/oak-d-lite.xacro b/description/oak-d-lite.xacro new file mode 100644 index 0000000..11a7668 --- /dev/null +++ b/description/oak-d-lite.xacro @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/description/robot.urdf.xacro b/description/robot.urdf.xacro index 872c94c..6c6c933 100644 --- a/description/robot.urdf.xacro +++ b/description/robot.urdf.xacro @@ -19,5 +19,8 @@ + + + \ No newline at end of file diff --git a/launch/oakd.launch.py b/launch/oakd.launch.py new file mode 100644 index 0000000..fd62dfa --- /dev/null +++ b/launch/oakd.launch.py @@ -0,0 +1,23 @@ +import os + +from launch import LaunchDescription +from launch_ros.actions import Node + +def generate_launch_description(): + + + + return LaunchDescription([ + + Node( + package='v4l2_camera', + executable='v4l2_camera_node', + output='screen', + namespace='camera', + parameters=[{ + 'image_size': [640,480], + 'time_per_frame': [1, 6], + 'camera_frame_id': 'camera_link_optical' + }] + ) + ])