Disabled some logging

This commit is contained in:
2026-03-06 11:35:50 +01:00
parent 7e4a1ea7fe
commit c261ab1a80
2 changed files with 44 additions and 2 deletions

42
scripts/idi.sh Executable file
View File

@@ -0,0 +1,42 @@
#!/bin/bash
TARGET="$1"
if [[ "$TARGET" == "-h" || "$TARGET" == "--help" ]]; then
exit 0
fi
if [[ $# -lt 1 ]]; then
echo "Error: Expected at least 1 arg"
echo "Available commands: napred, rotiraj, na"
exit 1
fi
if [[ $# -ge 2 ]]; then
SMER="$2"
fi
source install/setup.bash
case $TARGET in
"na")
ros2 action send_goal /moveCoords toid_msgs/action/SimpleMoveCoords "
x: 0.0
y: 0.0
theta: 0.0
backwards: ${SMER:-0}"
;;
"pravo")
ros2 action send_goal /translateX toid_msgs/action/SimpleTranslateX "distance: ${SMER:-0.3}"
;;
"stani")
ros2 service call /moveCoords/_action/cancel_goal action_msgs/srv/CancelGoal &
ros2 service call /translateX/_action/cancel_goal action_msgs/srv/CancelGoal &
wait
;;
*)
echo "Target not defined"
exit 1
;;
esac
exit 0