Skip to content

Commit

Permalink
Corrected which manipulator was left and right
Browse files Browse the repository at this point in the history
  • Loading branch information
ShannonGriswold committed Jan 31, 2025
1 parent c56c2d7 commit fb13625
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/pi/manipulators/launch/manip_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def generate_launch_description() -> LaunchDescription:
package='manipulators',
executable='manipulators',
parameters=[
{'left': 2},
{'right': 3},
{'left': 3},
{'right': 2},
# {"light": 2},
],
remappings=[('/pi/manipulator_control', '/tether/manipulator_control')],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ class ControllerMode(IntEnum):

@dataclass
class ControllerProfile:
manip_left: int = O_BUTTON
manip_right: int = X_BUTTON
manip_left: int = X_BUTTON
manip_right: int = O_BUTTON
valve_clockwise: int = TRI_BUTTON
valve_counterclockwise: int = SQUARE_BUTTON
roll_left: int = L1 # positive roll
Expand Down

0 comments on commit fb13625

Please sign in to comment.