User manual JVC VN-700 service manual

Lastmanuals offers a socially driven service of sharing, storing and searching manuals related to use of hardware and software : user guide, owner's manual, quick start guide, technical datasheets... DON'T FORGET : ALWAYS READ THE USER GUIDE BEFORE BUYING !!!

If this document matches the user guide, instructions manual or user manual, feature sets, schematics you are looking for, download it now. Lastmanuals provides you a fast and easy access to the user manual JVC VN-700. We hope that this JVC VN-700 user guide will be useful to you.

Lastmanuals help download the user guide JVC VN-700.


Mode d'emploi JVC VN-700
Download
Manual abstract: user guide JVC VN-700service manual

Detailed instructions for use are in the User's Guide.

[. . . ] Control of external devices that are connected to the serial port of VN-700. Customization of VN-700's built-in viewer. Custo 2 Content 1. Acquiring JPEG from VN-700 via HTTP 5 1. 1. Basic Procedures. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 1. 2. [. . . ] API for Acquiring/Changing Parameters of VN-700 _ 5. 5. Alarm Environment Setting Setting Chattering Guard Time of Alarm Input for VN-700 Format Example /api/param?peripheral. input_pin. pin(Number). chatter=data When setting the chattering guard time for alarm input 1 /api/param?peripheral. input_pin. pin(1). chatter=150 peripheral. input_pin. pin(1). chatter&200 OK Change the time setting to prevent chattering in the alarm input. Specify a number between 1 to 4 as VN-700 has 4 alarm inputs. admin, operator Example of response Interpretation Allowed users Acquiring Alarm Output Time Setting from VN-700 Format Example of Response Interpretation /api/param?peripheral. output_pin. pin. duration peripheral. output_pin. pin. duration=1000&200 OK Acquire the current alarm output duration in millisecond. If alarm output is set in alarm action, this parameter can be acqurired by following API. /api/param?application. event(Number). action admin, operator, user Allowed users Setting Alarm Output Time for VN-700 Format Example Example of response Interpretation /api/param?peripheral. input_pin. pin. duration=data /api/param?peripheral. input_pin. pin. duration=50 peripheral. input_pin. pin. duration&200 OK Change the alarm output duration in millisecond. Following API is also available to set the parameter. /api/param?application. event(Number). action admin, operator Allowed users Acquiring Alarm Output Status from VN-700 Format Example of Response Interpretation Allowed users /api/param?peripheral. output_pin. pin. status peripheral. output_pin. pin. status=make&200 OK Acquire the current alarm output status. admin, operator, user Changing Alarm Output of VN-700 Format Example Example of Response Interpretation /api/param?peripheral. output_pin. pin. status=data /api/param?peripheral. output_pin. pin. status=break peripheral. output_pin. pin. status&200 OK Change the alarm output. When the alarm output time is zero, alarm output is changed as this API specifies. When the alarm output time is not zero, alarm output is changed as this API specifies, then alarm output is changed again after the alarm output time. VN-700 enables motion detect to be adjusted for each of the 4 video inputs. Specify a value between 1 to 4 for the number. A value between 0 to 100 will be returned. The larger the value, the easier it will be to detect objects moving at high speed. The smaller the value, the easier it will be to detect slow-moving objects. admin, operator, user Example of response Interpretation Allowed users Setting Motion Parameters of Motion Detect for VN-700 Format Example /api/param?video. input(Number). detection. velocity=data When setting motion parameters of motion detect for video input channel 1 /api/param?video. input(1). detection. velocity=10 video. input(1). detection. velocity&200 OK Change the motion parameters of motion detect. VN-700 enables motion detect to be adjusted for each of the 4 video inputs. Specify a value between 1 to 4 for the number. The larger the value, the easier it will be to detect objects moving at high speed. The smaller the value, the easier it will be to detect slow-moving objects. admin, operator Example of response Interpretation Allowed users Acquiring Motion Detect Mask from VN-700 Format Example /api/param?video. input(Number). detection. area When acquiring the motion detect mask of video input channel 1 /api/param?video. input(1). detection. area video. input(1). detection. area=000102030405060708091011121314151617&200 OK Acquire the mask of motion detect. [. . . ] Multicast uses UDP and Ack does not exist. As such, the sender will be able to continue sending without being affected by network delays. 76 11. Customizing VN-700's Built-in Viewer The built-in viewer of VN-700 consists of an ActiveX control, and customization is possible using HTML description. 11. C (1) HTML Sample <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML4. 0 Transitional//EN"> <HTML><HEAD> <META http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"> <TITLE></TITLE> </HEAD> <SCRIPT LANGUAGE=JAVASCRIPT> function stop_click() { Viewer. Stop(); } function play_click() { Viewer. Play(); } function ch_click(obj, num){ Viewer. SelectCh = num; if(num==5){ Viewer. DispFore(); }else{ Viewer. DispOne(); } } function still_click(obj, num) { if(obj. value==" Play "){ obj. value="Pause"; Viewer. SetStill(num, 0); }else{ obj. value=" Play "; Viewer. SetStill(num, 1); } } </SCRIPT> <BODY STYLE="font-family:sans-serif;" onBeforeUnload="stop_click()" onload="play_click()"> <font size="6"> SAMPLE TEXT </font><br> <OBJECT ID="Viewer" WIDTH = 641 HEIGHT= 481 CLASSID="CLSID:E6BE5699-64A1-4024-BB79-27C00553ECD6" STYLE="border-style:solid;border:1px;border-color:#ffffff;"> <PARAM NAME="ApiIP" VALUE="192. 168. 0. 2"> <PARAM NAME="ApiPort" VALUE="8009"> <PARAM NAME="AudioSnd" VALUE="1"> <PARAM NAME="AudioRcv" VALUE="1"> <PARAM NAME="StartMode" VALUE="2"> <PARAM NAME="SelectCh" VALUE="1"> </OBJECT> <form name="myForm"> <table><tr><td> <INPUT TYPE="BUTTON" NAME="ch_btn" VALUE=" CH1 " onclick="ch_click(this, 1)"></td><td> <INPUT TYPE="BUTTON" NAME="ch_btn" VALUE=" CH2 " onclick="ch_click(this, 2)"></td><td> <INPUT TYPE="BUTTON" NAME="ch_btn" VALUE=" CH3 " onclick="ch_click(this, 3)"></td><td> <INPUT TYPE="BUTTON" NAME="ch_btn" VALUE=" CH4 " onclick="ch_click(this, 4)"></td><td> <INPUT TYPE="BUTTON" NAME="allch_btn" VALUE=" All " onclick="ch_click(this, 5)"></td></ tr><tr><td> <INPUT TYPE="BUTTON" NAME="still_btn" VALUE="Pause" onclick="still_click(this, 1)"></td><td> <INPUT TYPE="BUTTON" NAME="still_btn" VALUE="Pause" onclick="still_click(this, 2)"></td><td> <INPUT TYPE="BUTTON" NAME="still_btn" VALUE="Pause" onclick="still_click(this, 3)"></td><td> <INPUT TYPE="BUTTON" NAME="still_btn" VALUE="Pause" onclick="still_click(this, 4)"></td><td> </tr></table> </form></BODY></HTML> 77 11. [. . . ]

DISCLAIMER TO DOWNLOAD THE USER GUIDE JVC VN-700

Lastmanuals offers a socially driven service of sharing, storing and searching manuals related to use of hardware and software : user guide, owner's manual, quick start guide, technical datasheets...
In any way can't Lastmanuals be held responsible if the document you are looking for is not available, incomplete, in a different language than yours, or if the model or language do not match the description. Lastmanuals, for instance, does not offer a translation service.

Click on "Download the user manual" at the end of this Contract if you accept its terms, the downloading of the manual JVC VN-700 will begin.

Search for a user manual

 

Copyright © 2015 - LastManuals - All Rights Reserved.
Designated trademarks and brands are the property of their respective owners.

flag