From a8fc28c49b45d46969839544f06117b6a2ef82c3 Mon Sep 17 00:00:00 2001 From: Nathaniel Hargrave Date: Sat, 11 Jul 2026 18:48:27 -0400 Subject: [PATCH] fix: new pdb --- src/components/panels/PDBRails.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/panels/PDBRails.tsx b/src/components/panels/PDBRails.tsx index 13233ee..62f703d 100644 --- a/src/components/panels/PDBRails.tsx +++ b/src/components/panels/PDBRails.tsx @@ -6,12 +6,12 @@ import { useROS } from '@/ros/ROSContext'; const LABELS = [ "12V #1", - "12V #2", "12V #3", + "12V #2", "12V #4", "5V #1", - "5V #2", "5V #3", + "5V #2", ]; const PDBRailsPanel: React.FC = () => { @@ -25,7 +25,7 @@ const PDBRailsPanel: React.FC = () => { const pgTopic = new ROSLIB.Topic({ ros, - name: "/pdb_rails_node/pdb_pg", + name: "/pdb_rails/pdb_pg", messageType: "std_msgs/msg/UInt8", }); @@ -63,7 +63,7 @@ const PDBRailsPanel: React.FC = () => { const toggleTopic = new ROSLIB.Topic({ ros, - name: "/pdb_rails_node/pdb_toggle", + name: "/pdb_rails/pdb_toggle", messageType: "std_msgs/msg/UInt8", });