--- /dev/null
+#!/bin/bash
+
+HOME_POS="[0.0, -2.0417, 1.3823, 0.60737]"
+CAM_AFT_POS="[-3.1415, 0.5236, 1.2217, -1.7453]"
+
+POS=$HOME_POS
+if [ "$1" == "cam_aft" ]; then
+ POS=$CAM_AFT_POS
+fi
+
+rostopic pub /arm_controller/command trajectory_msgs/JointTrajectory "header:
+ seq: 0
+ stamp:
+ secs: 0
+ nsecs: 0
+ frame_id: ''
+joint_names: ['joint1', 'joint2', 'joint3', 'joint4']
+points:
+ -
+ positions: $POS
+ velocities: []
+ accelerations: []
+ effort: []
+ time_from_start:
+ secs: 5
+ nsecs: 0" --once