mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-07 12:58:13 +00:00
49_SSCAM: command check for set cmd's don't work completely
git-svn-id: https://svn.fhem.de/fhem/trunk@11202 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
929e5c7c47
commit
4586d2403e
@ -1,5 +1,6 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||||
# Do not insert empty lines here, update check depends on it.
|
# Do not insert empty lines here, update check depends on it.
|
||||||
|
- bugfix: command check for set cmd's don't work completely
|
||||||
- feature: FHEMWEB Event-Monitor: stops autoscroll when user scrolls
|
- feature: FHEMWEB Event-Monitor: stops autoscroll when user scrolls
|
||||||
manually. If user scrolls to the bottom end, autoscroll continues.
|
manually. If user scrolls to the bottom end, autoscroll continues.
|
||||||
- feature: perlSyntaxCheck global attribute (currently used by notify & at)
|
- feature: perlSyntaxCheck global attribute (currently used by notify & at)
|
||||||
|
@ -27,6 +27,7 @@
|
|||||||
##########################################################################################################
|
##########################################################################################################
|
||||||
# Versions History:
|
# Versions History:
|
||||||
#
|
#
|
||||||
|
# 1.23.1 07.04.2016 command check for set cmd's don't work completely
|
||||||
# 1.23 02.04.2016 change to RemoveInternalTimer for functions
|
# 1.23 02.04.2016 change to RemoveInternalTimer for functions
|
||||||
# 1.22 27.03.2016 bugfix "link_open" doesn't work after last update
|
# 1.22 27.03.2016 bugfix "link_open" doesn't work after last update
|
||||||
# 1.21 23.03.2016 added "lastrec"," lastrec_open" to playback last recording
|
# 1.21 23.03.2016 added "lastrec"," lastrec_open" to playback last recording
|
||||||
@ -317,7 +318,7 @@ sub SSCam_Set {
|
|||||||
elsif ($opt eq "motdetsc")
|
elsif ($opt eq "motdetsc")
|
||||||
{
|
{
|
||||||
if (!$hash->{CREDENTIALS}) {return "Credentials of $name are not set - make sure you've set it with \"set $name credentials username password\"";}
|
if (!$hash->{CREDENTIALS}) {return "Credentials of $name are not set - make sure you've set it with \"set $name credentials username password\"";}
|
||||||
unless ($prop) { return " \"$opt\" needs one of those arguments: disable, camera, SVS !";}
|
if (!$prop || $prop !~ /^(disable|camera|SVS)$/) { return " \"$opt\" needs one of those arguments: disable, camera, SVS !";}
|
||||||
|
|
||||||
$hash->{HELPER}{MOTDETSC} = $prop;
|
$hash->{HELPER}{MOTDETSC} = $prop;
|
||||||
cammotdetsc($hash);
|
cammotdetsc($hash);
|
||||||
@ -441,7 +442,7 @@ sub SSCam_Set {
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return $setlist;
|
return "$setlist";
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -4019,7 +4020,6 @@ return;
|
|||||||
|
|
||||||
The command "motdetsc" (stands for "motion detection source") switchover the motion detection to the desired mode.
|
The command "motdetsc" (stands for "motion detection source") switchover the motion detection to the desired mode.
|
||||||
If motion detection will be tuned by camera, the original camera settings are kept.
|
If motion detection will be tuned by camera, the original camera settings are kept.
|
||||||
Wird die Bewegungserkennung durch die Kamera eingestellt, werden die originalen Kameraeinstellungen beibehalten.
|
|
||||||
The successful execution of that opreration you can retrace by the state in SVS -> IP-camera -> event detection -> motion.
|
The successful execution of that opreration you can retrace by the state in SVS -> IP-camera -> event detection -> motion.
|
||||||
The state of motion detection source will also be shown by the <a href="#SSCamreadings">Reading</a> "CamMotDetSc".
|
The state of motion detection source will also be shown by the <a href="#SSCamreadings">Reading</a> "CamMotDetSc".
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user