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 PANASONIC AJ-D220. We hope that this PANASONIC AJ-D220 user guide will be useful to you.
Lastmanuals help download the user guide PANASONIC AJ-D220.
Detailed instructions for use are in the User's Guide.
[. . . ] This equipment has been tested and found to comply with the limits for a Class A digital device, pursuant to Part 15 of the FCC Rules. These limits are designed to provide reasonable protection against harmful interference when the equipment is operated in a commercial environment. This equipment generates, uses, and can radiate radio frequency energy and, if not installed and used in accordance with the instruction manual, may cause harmful interference to radio communications. Operation of this equipment in a residential area is likely to cause harmful interference in which case the user will be required to correct the interference at his own expense.
CAUTION:
To reduce the risk of fire or shock hazard and annoying interference, use the recommended accessories only.
is the safety information.
s Do not insert fingers or any objects into the video casette holder. [. . . ] ) on the menu screen to setup item No.
SETUP-MENU MENU <USER1> NO. A00 - 0000 803 TELETEXT DET AUTO A00 LOAD USER2 A01 SAVE USER2 A02 P. ON LOAD OFF END
4 5
While holding down the search button, turn the search dial and select the user file whose contents are to be loaded into USER1. The following messages appear on the menu screen and counter display. Menu screen SETUP-MENU LOAD USER2 USER1 OK?YES<PLAY>/NO<STOP> Counter display TCR 00:00:00:00 SETUP LOAD U-2 U-1
The user file number selected in step 4 is displayed in the shaded area.
6
Press the PLAY button. The settings of the user file selected in step 4 are loaded, and the USER1 menu display appears. When the STOP button is pressed, the USER1 menu display appears while the settings remain unchanged. Turn the search dial and move the cursor ( ) on the menu screen to any setup item except No. The USER1 settings are now stored in the memory. If the USER1 settings are not going to be stored in the memory, do not press the SET button but press the MENU button.
7
8
53
Setup menus
Saving a user file
1 2 3
Press the MENU button. While holding down the STAND BY button, press the REW or FF button, and select USER1. Turn the search dial and move the cursor ( A01 (SAVE). System phase adjustment: 4. 48 µs steps 0: 13. 4 µ sec 1: 8. 96 µ sec 2: 4. 48 µ sec 3: 0 sec 4: +4. 48 µ sec 5: +8. 96 µ sec 6: +13. 4 µ sec <Note> Factory settings will remain unchanged even if an attempt is made to perform a setting operation. This selects whether the system file lock mode is to be engaged or released. 0: The lock is released (file data can be changed). 1: The lock is engaged (file data cannot be changed).
20
SYS H RANGE
21
SYS H OFFSET
0000 0001 0002 0003 0004 0005 0006
3 2 1 0 1 2 3
30
MENU LOCK
0000 0001
OFF ON
The underline on the setting item denotes the initial setting.
56
Setup menus
USER menu
<BASIC>
Item
No. 000 Superimposed display P-ROLL TIME No. 0011
Setting
Superimposed display 0S . 11
Description
This sets the preroll time which can be set from 0 to 15 seconds in 1-second increments. <Note> When the unit is set to automatic editing [PREVIEW, AUTO EDIT], the unit will not operate if the preroll time is set to 0 seconds. This sets the position of the characters on the horizontal plane for the time code and other super displays output to the VIDEO OUT 3 connector. When setting this item, the DISPLAY SEL status is output to VIDEO OUT 3 even if SUPER OFF has been set. However, when the menu is exited, operation complies with the SUPER OFF/ON setting. [. . . ] This command is setting the VTR to standby OFF. This command is setting the VTR to standby ON.
[STX] OBF [ETX] [STX] OBN [ETX]
[STX] OBF [ETX] [STX] OBN [ETX]
96
(2) Commands relating to inquiries <Notes>
· As for the return (completion) message, [ACK] is first returned when data is received, and the execution message is subsequently returned. It is only the execution message which is listed in this table. · In the case of commands not listed in the table, ER001 (invalid command) is returned after [ACK] has been returned.
VTR operation CTL/TC DATA REQUEST Send command [STX] QCD [ETX] Return (completion) message [STX] CD data [ETX] Supplementary notes This command is for inquiring about the counter value.
data = f w gh mm ss ff =F f w =S gh = CTL: g = SP (20h): for a plus display (2Dh): for a minus display h = 0 9: hours TC: gh = 00 23: hours mm = 00 59: minutes ss = 00 59: seconds ff = 00 29: frames [STX] QOP [ETX] [STX] xxx [ETX] xxx = OEJ: OFF: OPL: ORC: ORW: OSP: SRS: OBF: OSF: OSR: OJG: OSW: EAE: EON: EPV: ERV:
CTL or TC is returned, whichever corresponds to the front display mode.
STATUS REQUEST
This command is for inquiring about the VTR's operation mode.
EJECT FAST FORWARD PLAY REC REWIND STOP (including the STANDBY ON) (IN/OUT) PREROLL STANDBY OFF SHTL FORWARD SHTL REVERSE JOG FORWARD/REVERSE VAR FORWARD/REVERSE AUTO EDIT EDIT ON (MANUAL EDIT) PREVIEW REVIEW This command is for inquiring about the VTR used.
ID (VTR No. ) REQUEST
[STX] QID [ETX]
[STX] data [ETX] data = AJ-D220
97
RS-232C interface
(3) Microsoft QuickBASIC sample program CLS STX$ = CHR$(&H2): ETX$ = CHR$ (&H3): NAK$ = CHR$(15): ACK$ = CHR$(&H6) PRINT "*** RS-232C COMMUNICATION SAMPLE PROGRAM ***" PRINT "Type Command 'QUIT' to quit. " PRINT REM *** Communication Port Initial & Open *** REM Port 1, 9600Bps, No parity, 8 bit data, 1 stop bit OPEN "COM1:9600, N, 8, 1" FOR RANDOM AS #1 LEN = 256 REM *** Input Command & Send Command *** SendCmd: INPUT "Input Command ="; SEND$ IF SEND$ = "QUIT" THEN GOTO ProgEnd PRINT #1, STX$ + SEND$ + ETX$ REM *** Wait for Receive Command *** WHILE LOC(1) = 0 WAITKEY$ = INKEY$ IF WAITKEY$ = "Q" THEN PRINT "*** Quit ***": GOTO ProgEnd WEND REM *** Receive Command *** RecvCmd: RECV$ = INPUT$(1, #1) IF RECV$ = STX$ THEN RECV$ = IF RECV$ = ACK$ THEN RECV$ = IF RECV$ = NAK$ THEN RECV$ = IF RECV$ = ETX$ THEN BUFFER$ BUFFER$ = BUFFER$ + RECV$ GOTO RecvCmd
"[Stx]" "[Ack]" "[Nak]" = BUFFER$ + "[Etx]": GOTO DispOut
REM *** Output Receive Command *** DispOut: PRINT "Receive Command ="; BUFFER$ PRINT BUFFER$ = "" GOTO SendCmd REM *** End Program *** ProgEnd: CLOSE END
MICROSOFT QUICKBASIC is a registered trade mark of Microsoft Corporation.
98
Connector signals
VIDEO IN
SERIAL IN (DIGITAL) Y, PB, PR (ANALOG) VIDEO IN REF VIDEO IN BNC × 2 BNC × 3 BNC × 2 BNC × 2 Loop-through, 75 termination switch provided Loop-through, 75 termination switch provided Active through (Option)
VIDEO OUT
SERIAL OUT (DIGITAL) BNC × 3 Y, PB, PR (ANALOG) VIDEO OUT BNC × 3 BNC × 3 (Option)
AUDIO IN
SERIAL IN (DIGITAL) AUDIO IN (DIGITAL) AUDIO IN (ANALOG) CUE IN TIME CODE IN BNC × 2 XLR × 2 XLR × 2 XLR × 1 XLR × 1 CH1, CH2 (Option) CH1/CH2, AES/EBU format Pin No. [. . . ]
DISCLAIMER TO DOWNLOAD THE USER GUIDE PANASONIC AJ-D220
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 PANASONIC AJ-D220 will begin.