Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/guysoft/OctoPi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/modules/octopi/filesystem/home/root/bin/webcamd4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/octopi/filesystem/home/root/bin/webcamd b/src/modules/octopi/filesystem/home/root/bin/webcamd
index f2c6dfb..89d5d96 100755
--- a/src/modules/octopi/filesystem/home/root/bin/webcamd
+++ b/src/modules/octopi/filesystem/home/root/bin/webcamd
@@ -227,7 +227,9 @@ while true; do
video_devices=($(find /dev -regextype sed -regex '\/dev/video[0-9]\+' | sort 2> /dev/null))
# add list of raspi camera into an array
- if [ "`vcgencmd get_camera`" = "supported=1 detected=1" ]; then
+ vcgencmd_regex="supported=1 detected=1.*"
+ # Example output matching: supported=1 detected=1, libcamera interfaces=0
+ if [[ "`vcgencmd get_camera`" =~ $vcgencmd_regex ]]; then
video_devices+=( "raspi" )
fi