-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from Meta-Team/summer2024
Fully functional sentry (based on `ros2_control`
- Loading branch information
Showing
72 changed files
with
3,564 additions
and
426 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 0 additions & 62 deletions
62
decomposition/meta_chassis_controller/include/meta_chassis_controller/visibility_control.h
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
decomposition/meta_chassis_controller/src/agv_chassis_controller.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
agv_chassis_controller: | ||
agv_wheel_joints: | ||
{ | ||
type: string_array, | ||
default_value: [], | ||
description: "Specifies joints of the AGV wheels.", | ||
read_only: true, | ||
validation: { unique<>: null, not_empty<>: null }, | ||
} | ||
agv_wheel_center_x: | ||
{ | ||
type: double_array, | ||
default_value: [], | ||
description: "Specifies the x coordinate of the AGV wheel center.", | ||
read_only: true, | ||
validation: { not_empty<>: null }, | ||
} | ||
agv_wheel_center_y: | ||
{ | ||
type: double_array, | ||
default_value: [], | ||
description: "Specifies the y coordinate of the AGV wheel center.", | ||
read_only: true, | ||
validation: { not_empty<>: null }, | ||
} | ||
agv_wheel_radius: | ||
{ type: double, default_value: 0.0, description: "Specifies radius of the AGV wheels." } | ||
control_mode: | ||
{ | ||
type: int, | ||
default_value: 0, | ||
description: "Specifies control mode of the AGV wheel controller. 0: CHASSIS, 1: GIMBAL, 2: CHASSIS_FOLLOW_GIMBAL.", | ||
} | ||
yaw_gimbal_joint: | ||
{ | ||
type: string, | ||
default_value: "", | ||
description: "Specifies the joint of the yaw gimbal.", | ||
validation: { not_empty<>: null }, | ||
} | ||
follow_pid_target: | ||
{ | ||
type: double, | ||
default_value: 0.0, | ||
description: "Specifies target of the follow PID controller. Setting 0.0 meaning the car is always moving towards the front. Usually 0.7853981634(45 degree) gives the maximum speed.", | ||
} | ||
reference_timeout: | ||
{ type: double, default_value: 0.1, description: "Specifies timeout for the reference." } |
Oops, something went wrong.