I have a DCS-933L camera mainly because of it’s ability to record video when motion is detected rather than stills as the Foscams do. This is a great feature but uses a boat-load of unnecessary FTP bandwidth when I’m home and don’t want it to detect motion. I want to be able to turn this feature on when I activate the “Leave” scene and turn off when I activate the “Home” scene in Vera.
I have scoured the internet but can’t seem to find anything that works… I can see the status of the feature by issuing this command in a browser:
http://CameraIP/motion.cgi
But the following command does not flip the bit from 1 to 0 as expected:
http://CameraIP/motion.cgi?MotionDetectionEnable=0
I have also tried issuing the following curl command from Terminal in Ubuntu but still no luck:
curl -v --user admin:password --data “MotionDetectionEnable=0” http://192.168.0.108/motion.cgi
The response I get is:
- Hostname was NOT found in DNS cache
- Trying 192.168.0.108…
- Connected to 192.168.0.108 (192.168.0.108) port 80 (#0)
- Server auth using Basic with user ‘admin’
POST /motion.cgi HTTP/1.1
Authorization: Basic YWRtaW46d2FjMzkx
User-Agent: curl/7.35.0
Host: 192.168.0.108
Accept: /
Content-Length: 20
Content-Type: application/x-www-form-urlencoded
- upload completely sent off: 20 out of 20 bytes
- HTTP 1.0, assume close after body
< HTTP/1.0 200 OK
< Server: alphapd
< Date: Sat Jan 1 00:00:05 2000
< Pragma: no-cache
< Cache-Control: no-cache
< Content-type: text/plain
<
MotionDetectionEnable=1
MotionDetectionBlockSet=0000000100001000010000100
MotionDetectionSensitivity=90
MotionDetectionScheduleMode=0
MotionDetectionScheduleDay=0
MotionDetectionScheduleTimeStart=00:00:00
MotionDetectionScheduleTimeStop=00:00:00 - Closing connection 0
I also found this post by Rob Vella and used some pieces from it but STILL no luck!:
http://robvella.com/2013/05/simple-script-to-enable-disable-dcs-930l-motion-detection/
Has anyone been able to get this working with this camera?
Thanks,
Grant