diff --git a/fhem/FHEM/49_SSCam.pm b/fhem/FHEM/49_SSCam.pm
index 72385c45a..3a2c101e8 100644
--- a/fhem/FHEM/49_SSCam.pm
+++ b/fhem/FHEM/49_SSCam.pm
@@ -240,7 +240,7 @@ sub SSCam_Set {
"expmode:auto,day,night ".
"on ".
"off ".
- "motdetsc:disable,by_camera,by_SVS ".
+ "motdetsc:disable,camera,SVS ".
"snap ".
"enable ".
"disable ".
@@ -283,7 +283,7 @@ sub SSCam_Set {
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\"";}
- unless ($prop) { return " \"$opt\" needs one of those arguments: disable, by_camera, by_SVS !";}
+ unless ($prop) { return " \"$opt\" needs one of those arguments: disable, camera, SVS !";}
$hash->{HELPER}{MOTDETSC} = $prop;
cammotdetsc($hash);
@@ -2154,10 +2154,10 @@ sub camop_nonbl ($) {
if ($hash->{HELPER}{MOTDETSC} eq "disable") {
$motdetsc = "-1";
}
- elsif ($hash->{HELPER}{MOTDETSC} eq "by_camera") {
+ elsif ($hash->{HELPER}{MOTDETSC} eq "camera") {
$motdetsc = "0";
}
- elsif ($hash->{HELPER}{MOTDETSC} eq "by_SVS") {
+ elsif ($hash->{HELPER}{MOTDETSC} eq "SVS") {
$motdetsc = "1";
}
@@ -2730,10 +2730,10 @@ sub camret_nonbl ($) {
$motdetsc = "disabled";
}
elsif ($motdetsc == 0) {
- $motdetsc = "by_camera";
+ $motdetsc = "Camera";
}
elsif ($motdetsc == 1) {
- $motdetsc = "by_SVS";
+ $motdetsc = "SVS";
}
# Setreading
@@ -3412,7 +3412,7 @@ return;
"enable": | activates a camera in Synology Surveillance Station |
"credentials <username> <password>": | save a set of credentils |
"expmode [ day | night | auto ]": | set the exposure mode to day, night or auto |
- "motdetsc [ by_camera | by_SVS | disable ]": | set motion detection to the desired mode |
+ "motdetsc [ camera | SVS | disable ]": | set motion detection to the desired mode |
"goPreset <Presetname>": | moves a PTZ-camera to a predefinied Preset-position |
"runPatrol <Patrolname>": | starts a predefinied patrol (PTZ-cameras) |
"goAbsPTZ [ X Y | up | down | left | right ]": | moves a PTZ-camera to a absolute X/Y-coordinate or to direction up/down/left/right |
@@ -3498,7 +3498,7 @@ return;
- "set <name> motdetsc [by_camera] [by_SVS] [disable]"
+ "set <name> motdetsc [camera] [SVS] [disable]"
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.
@@ -3948,7 +3948,7 @@ return;
"enable": | aktiviert eine Kamera in der Synology Surveillance Station |
"credentials <username> <password>": | speichert die Zugangsinformationen |
"expmode [ day | night | auto ]": | aktiviert den Belichtungsmodus Tag, Nacht oder Automatisch |
- "motdetsc [ by_camera | by_SVS | disable ]": | schaltet die Bewegungserkennung in den gewünschten Modus (durch Kamera, SVS, oder deaktiviert) |
+ "motdetsc [ camera | SVS | disable ]": | schaltet die Bewegungserkennung in den gewünschten Modus (durch Kamera, SVS, oder deaktiviert) |
"goPreset <Presetname>": | bewegt eine PTZ-Kamera zu einer vordefinierten Preset-Position |
"runPatrol <Patrolname>": | startet eine vordefinierte Überwachungstour einer PTZ-Kamera |
"goAbsPTZ [ X Y | up | down | left | right ]": | positioniert eine PTZ-camera zu einer absoluten X/Y-Koordinate oder maximalen up/down/left/right-position |
@@ -4032,7 +4032,7 @@ return;
Funktion auszugehen.
- "set <name> motdetsc [by_camera] [by_SVS] [disable]"
+ "set <name> motdetsc [camera] [SVS] [disable]"
Der Befehl "motdetsc" (steht für motion detection source) schaltet die Bewegungserkennung in den gewünschten Modus.
Wird die Bewegungserkennung durch die Kamera eingestellt, werden die originalen Kameraeinstellungen beibehalten.