merge Service branch into main #5

Merged
SemvdH merged 193 commits from service into main 2023-05-08 13:42:59 +00:00
2 changed files with 16 additions and 1 deletions
Showing only changes of commit 6348e5371f - Show all commits

View File

@@ -0,0 +1,15 @@
from launch import LaunchDescription
from launch_ros.actions import Node
def generate_launch_description():
return LaunchDescription([
Node(
package="px4_connection",
executable="heartbeat"
),
Node(
package="px4_connection",
executable="px4_controller"
)
])