Skip to content

Commit 09487f0

Browse files
authored
Merge pull request #196 from CWRUbotix/manip-indicators
Fix manip indicators
2 parents f3ed990 + d23ae95 commit 09487f0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/surface/gui/gui/widgets/manip_status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ def update_gui(self, *, manip_on: bool) -> None:
4040
@pyqtSlot(Manip)
4141
def manip_callback(self, msg: Manip) -> None:
4242
if msg.manip_id == self.manip_id:
43-
self.update_gui(manip_on=msg.activated)
43+
self.update_gui(manip_on=not msg.activated)

src/surface/gui/launch/pilot_launch.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def generate_launch_description() -> LaunchDescription:
1414
],
1515
remappings=[
1616
('/surface/depth_cam/image_raw', '/tether/depth_cam/image_raw'),
17+
('/surface/manipulator_control', '/tether/manipulator_control'),
1718
],
1819
emulate_tty=True,
1920
output='screen',

0 commit comments

Comments
 (0)