From cb990f895be9ad2a3210538414cc0b6dd78f70e5 Mon Sep 17 00:00:00 2001 From: Maximilian Stiefel Date: Sun, 21 Feb 2021 19:26:47 +0100 Subject: [PATCH] Adapting bash scripts --- motioneye/down | 4 ++-- motioneye/up | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/motioneye/down b/motioneye/down index 75fc9b7..f378c8c 100755 --- a/motioneye/down +++ b/motioneye/down @@ -1,7 +1,7 @@ #!/bin/bash -SAMCAM_HOME=/home/pi/camera_steering_sw +SAMCAM_HOME=/home/pi/SaMcam_sw SETTINGS_FILE=$SAMCAM_HOME/settings.json ANGLE=-10 AXIS=elevation -export PATH=$SAMCAM_HOME/bin:$PATH +export PATH=$SAMCAM_HOME/build/app:$PATH SaMcam --axis $AXIS --settings $SETTINGS_FILE --rotate $ANGLE diff --git a/motioneye/up b/motioneye/up index c274dca..7732f0e 100755 --- a/motioneye/up +++ b/motioneye/up @@ -1,7 +1,7 @@ #!/bin/bash -SAMCAM_HOME=/home/pi/camera_steering_sw +SAMCAM_HOME=/home/pi/SaMcam_sw SETTINGS_FILE=$SAMCAM_HOME/settings.json ANGLE=10 AXIS=elevation -export PATH=$SAMCAM_HOME/bin:$PATH +export PATH=$SAMCAM_HOME/build/app:$PATH SaMcam --axis $AXIS --settings $SETTINGS_FILE --rotate $ANGLE