Skip to content

Commit

Permalink
Merge pull request #426 from JdeRobot/issue-411
Browse files Browse the repository at this point in the history
Issue 411
  • Loading branch information
MihirGore23 authored Jul 30, 2024
2 parents 31b65f4 + 853cb8d commit b802027
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Launchers/digit_classifier.launch.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import launch
from launch import LaunchDescription
from launch_ros.actions import Node

def generate_launch_description():
return LaunchDescription([
Node(
package='v4l2_camera',
executable='v4l2_camera_node',
name='v4l2_camera_node',
parameters=[
{'video_device': '/dev/video0'}
],
),
])

0 comments on commit b802027

Please sign in to comment.