2022-10-02 12:24:51 +00:00
|
|
|
#!/usr/bin/sh
|
|
|
|
|
2022-10-03 16:37:15 +00:00
|
|
|
# Export the configuration values
|
|
|
|
. /home/pi/hydrophonitor/scripts/export-config-values.sh
|
|
|
|
|
2022-10-04 18:24:42 +00:00
|
|
|
DEPTH_EXECUTABLE_PATH="/home/pi/hydrophonitor/depth-logger"
|
2022-10-03 16:37:15 +00:00
|
|
|
|
|
|
|
OPTIONS="--output $OUTPUT_DIR --interval $DEPTH_INTERVAL"
|
2022-10-02 12:24:51 +00:00
|
|
|
|
2022-10-04 18:24:42 +00:00
|
|
|
cd $DEPTH_EXECUTABLE_PATH && python record-depth.py $OPTIONS
|