SX Video Display Module Hitt Consulting

Size: px
Start display at page:

Download "SX Video Display Module Hitt Consulting"

Transcription

1 SX Video Display Module Hitt Consulting Rev F Firmware Rev F * Serial In Video Out 105 S Locust Street * 4800 baud serial input (8N1) Shiremanstown Pa * NTSC or PAL monochrome video output info@hittconsulting.com * 6 x 16 characters / 12 x 32 pixels * Audio Output

2 SX VIDEO DISPLAY MODULE The Null (128) value is useful to send at startup just in case a multi-byte command (like CrsrXY) was send without the parameters. The next values sent would then be interpreted as the parameters for the CrsrXY command, instead of the commands intended. The Null value is simply ignored if received on it s own. AUDIO / VIDEO OUTPUTS The video output must be connected to a video input. This is usually a yellow colored RCA jack on a TV, monitor, VCR or DVD player. Video inputs have an impedance of about 75 ohms, and this is needed to get the correct voltage from the module. OVERVIEW The SX Video Display Module is used to create text and low-resolution graphics on a TV or video monitor. Popular uses include: simple games, status displays and demonstrations. The video module creates a display of 6 lines each consisting of 16 characters. Each character is 8 pixels wide and 8 pixels high. The module accepts serial data at 4800 baud or 480 characters per second. An entire screen of 96 characters takes only 1/5 of a second. This makes games and rapidly updating display possible. SERIAL DATA FORMAT The serial data is received at a baud rate of N1. Character data is sent using standard ASCII codes. In other words on the Basic Stamp microntrollers a simple message might be: SEROUT SPin,Baud,[ Hello ] Also pixels (1/4 character size) can be turned on or off with the special plot and unplot serial commands. You only need to specify the location of the pixel on the screen. The audio output has a level of about 0.21volts peak-to-peak. It is meant to be connected to the (usually white colored) audio input of a TV, VCR or DVD player. OPTION SWITCHES There are two switches on the board. The first one determines if the video output will be NTSC (U.S.A.) or PAL (U.K.). The second switch determines if the serial input is an inverted or a true serial input. Serial input is always N1 format. ON-BOARD VOLTAGE REGULATOR There is also an on-board voltage regulator. You can connect the +5 pin to a regulated 5 volt supply, or you can connect the Vin pin to a 6volt to 12volt supply. The module requires about 35 milliamps. DIGITAL OUTPUTS Eight of the SX pins are brought out and the command VidOuts (134) is used to set the output states. This gives you eight additional output that can be used for other purposes. These really come in handy if the module is receiving data from a wireless receiver. The output pins are set by sending the serial command VidOuts (134) followed by the value you want on the output pins. SEROUT Spin,Baud,[v_PlotXY, X, Y] COMMANDS Received data values from 16 to 127 and 144 to 255 are display characters. Values from 0 to 15 and 128 to 143 are commands. Some commands require additional data that is send immediately following the command. For example the CrsrXY command must be followed by the X value then the Y value. Commands for values from 0 to 15 are the same as the DEBUG commands for the Basic Stamps, and the constants for DEBUG can be used.

3 Power: Size: Controller: Display: Characters: SPECS +5VDC or +6 to 9VDC 35mA 2.0 x 1.5 (not including connectors) Ubicom SX28AC/DP microcontroller operating at 20 MHz. 6 lines of 16 characters each NTSC (USA) or PAL (UK) output 224 including upper & lower case and inverse Serial Input to module that accepts serial data at 4800 baud, 8 data bits, 1 stop bit and no parity (4800-8N1). Depending on the setting of the INV/TRUE jumper will determine if the serial data must be inverted or true. The default setting is inverted which will be the case if the serial data is coming from a PC serial port. When sending data from the basic stamp, make sure the format matches the jumper setting. Gnd Power supply ground. This MUST also be connected to ground on the device sending the serial data to the module. Graphics: Audio: CN1 CN2 Vin 32 horizontal, 12 vertical 1/4 character blocks 255 Tones, 255 Durations SPECIAL FEATURES * Low Res graphics plot and unplot commands * Invert Screen command * 8 Digital Outputs (20ma total current) * No delays needed when sending data PIN FUNCTIONS Yellow RCA jack. This is the video output from the module. Connect this to the video input of your video display using an RCA cable. White RCA jack. This is the audio output from the module. Connect this to the audio input of your video display device (if desired). The signal level is about 0.21volts. Supply voltage input to regulator. Vin may be between 6 volts and 9 volts. This source must be able to supply 50 milliamps of current. +5 Regulated 5 volt supply voltage input to module. This voltage MUST be regulated to 5 volts and be able to supply 40 milliamps of current. If you are using Vin to supply power to the module, this pin can supply small amounts of power to other devices. Do not draw more than 20mA from this pin. Out.0 Additional output pins. These pins are set by Thru using the VidOuts (134) Command. This is Out.7 similar to setting output pins on the BS2. Do not draw more than 20mA from each pin, or 50mA from all pins combined. Out.0 has a binary value of 1, Out.1=2, Out.2=4, Out.3=8, Out.4=16, Out.5=32, Out.6=64, Out.7=128. Simply add the values of the pins you want on (+5) and send that value to the module after the VidOuts (134) command. For example to set all the pins high (+5) send 134 then 255, to set all the pin low (0), send 134 then 0. SOUND COMMAND DETAILS The SOUND command will generate a tone with a frequency of (7622/tone)Hz for a duration of (17.2*duration)ms. The module will continue to accept and display characters while the sound is being generated. If another SOUND command is issued before the previous SOUND command is finished, the new tone will start immediately. Any tone with a duration of zero will immediately stop any sound in progress. Note that the BELL command is the same as SOUND 5,10. Therefore it will generate a frequency of (7622/5)=1524Hz for a duration of (17.2*10) = 172milliseconds. Firmware updates, demo programs and additional info can be found on the website

4 COMMANDS Commands from 0 to 15 are the same as the Basic Stamp(R) DEBUG commands. VALUE NAME PARAMETERS DESCRIPTION 0 Cls (none) Clears the screen and moves cursor to 0,0 1 Home (none) Moves cursor to 0,0 2 CrsrXY (2) X,Y Moves cursor to specified coordinates 3 CrsrLf (none) Moves cursor 1 position to the left 4 CrsrRt (none) Moves cursor 1 position to the right 5 CrsrUp (none) Moves cursor 1 position upward 6 CrsrDn (none) Moves cursor 1 position downward 7 Bell (none) Creates a 1.5Khz tone for 170mSecs 8 Bksp (none) Moves cursor 1 position to the left (destructive) 9 Tab (none) Moves cursor to next tab stop (0,4,8,12) 10 Lf (none) Linefeed; Moves cursor down 1 line 11 ClrEol (none) Clears from cursor to end-of-line 12 ClrDn (none) Clears from cursor to end-of-screen 13 Cr (none) Carriage Return; Moves cursor to start of next line 14 CrsrX (1) X Moves cursor to specified column 15 CrsrY (1) Y Moves cursor to specified row 128 Null (none) Ignored 129 InvOn (none) Turns on inverse mode 130 InvOff (none) Turns off inverse mode 131 InvScrn (none) Inverts the whole screen 132 PlotXY (2) X,Y Plots a point(1/4 char) at X,Y 133 UnPlotXY (2) X,Y Unplots a point(1/4 char) at X,Y 134 VidOuts (1) Value Sets the modules output pins 135 VidVer (none) Displays the firmware version letter 136 DecByte (1) Value Displays the next value in decimal 137 HexByte (1) Value Displays the next value in hexadecimal 138 Sound (2) Pitch,Duration Creates an audio tone of Pitch,Duration [ RESERVED ] [ RESERVED ] [ RESERVED ] [ RESERVED ] [ RESERVED ]

5 16 CHARACTER SET (+128 for Inverse)

6 Basic Stamp Example Programs =========================================== File... Video AllChars.BS2 Purpose... Demo the SX-Video Module Author... Terry Hitt ... Started... Mar 4, 2005 =========================================== Stamp to Video Module Connections BS2 Video Module P Serial GND Gnd {$STAMP BS2} {$PBASIC 2.5} #SELECT $STAMP #CASE BS2, BS2E, BS2PE T1200 CON 813 T2400 CON 396 T4800 CON 188 T9600 CON 84 T19K2 CON 32 T38K4 CON 6 #CASE BS2SX, BS2P T1200 CON 2063 T2400 CON 1021 T4800 CON 500 T9600 CON 240 T19K2 CON 110 T38K4 CON 45 #ENDSELECT SevenBit CON $2000 Inverted CON $4000 Open CON $8000 Video commands v_null CON 128 v_invon CON 129 v_invoff CON 130 v_invscrn CON 131 v_plotxy CON 132 v_unplotxy CON 133 v_outs CON 134 v_version CON 135 v_decbyte CON 136 v_hexbyte CON 137 Baud CON T Inverted Sout PIN 0 Cnt VAR Word Start: OUTPUT Sout PAUSE 100 SEROUT Sout,baud,[v_Null, v_null, v_null,cls] Again: FOR Cnt=16 TO 127 SEROUT Sout,baud,[v_DecByte,Cnt," = ",Cnt," ",v_decbyte,(cnt+128)," = ",(Cnt+128),CR] PAUSE 250 NEXT GOTO Again End of program listing =========================================== File... Lab Simulation.BS2 Purpose... Demo the SX-Video Module Author... Terry Hitt ... terry@hittconsulting.com Started... Mar 4, 2005 =========================================== Stamp to Video Module Connections BS2 Video Module P Serial GND Gnd {$STAMP BS2} {$PBASIC 2.5} #SELECT $STAMP #CASE BS2, BS2E, BS2PE T1200 CON 813 T2400 CON 396 T4800 CON 188 T9600 CON 84 T19K2 CON 32 T38K4 CON 6 #CASE BS2SX, BS2P T1200 CON 2063 T2400 CON 1021 T4800 CON 500 T9600 CON 240 T19K2 CON 110 T38K4 CON 45 #ENDSELECT SevenBit CON $2000 Inverted CON $4000 Open CON $8000 Video commands v_null CON 128 v_invon CON 129 v_invoff CON 130 v_invscrn CON 131 v_plotxy CON 132 v_unplotxy CON 133 v_outs CON 134 v_version CON 135 v_decbyte CON 136 v_hexbyte CON 137 v_ohms CON 30 Baud CON T Inverted Sout PIN 0 R VAR Word Volts VAR Word MilliVolts VAR Word MilliAmps VAR Word TemperatureW VAR Word TemperatureF VAR Word Relay1 VAR Bit Relay2 VAR Bit Relay3 VAR Bit PAUSE 100 SEROUT Sout,baud,[v_Null,v_Null,v_Null,CLS, v_invoff] SEROUT Sout,baud,["Lab Simulation", CR] PAUSE 3000 SEROUT Sout,baud,[CLS] Volts=5 MilliVolts=0

7 MilliAmps=100 TemperatureW=25 TemperatureF=0 Relay1=1 Relay2=0 Relay3=1 Start: SEROUT Sout,baud,[HOME, "Volts: ", DEC1 Volts, ".", DEC3 MilliVolts, CR] SEROUT Sout,baud,["Amps: 0.", DEC3 MilliAmps, CR] SEROUT Sout,baud,["Temp: ", DEC2 TemperatureW, ".", DEC2 TemperatureF, v_ohms, "C", CR] SEROUT Sout,baud,["Relay1: "] IF Relay1=1 THEN SEROUT Sout,baud,["ON ",CR] ELSE SEROUT Sout,baud,[v_InvOn,"OFF",v_InvOff,CR] SEROUT Sout,baud,["Relay2: "] IF Relay2=1 THEN SEROUT Sout,baud,["ON ",CR] ELSE SEROUT Sout,baud,[v_InvOn,"OFF",v_InvOff,CR] SEROUT Sout,baud,["Relay3: "] IF Relay3=1 THEN SEROUT Sout,baud,["ON ",CR] ELSE SEROUT Sout,baud,[v_InvOn,"OFF",v_InvOff,CR] PAUSE 250 Update 4 times a second Simulate changes to parameters IF R < THEN MilliVolts=MilliVolts+2 IF MilliVolts > 999 THEN MilliVolts=MilliVolts-1000 Volts=Volts+1 IF r > THEN IF MilliVolts < 2 THEN Volts=Volts-1 MilliVolts=MilliVolts+1000 MilliVolts=MilliVolts-2 IF R < THEN MilliAmps=MilliAmps+1 IF R > THEN MilliAmps=MilliAmps-1 IF R < THEN TemperatureF=TemperatureF+1 IF TemperatureF > 99 THEN TemperatureF=TemperatureF-100 TemperatureW=TemperatureW+1 IF r > THEN IF TemperatureF < 1 THEN TemperatureW=TemperatureW-1 TemperatureF=TemperatureF+100 TemperatureF=TemperatureF-1 IF R < 4096 THEN Relay1=~Relay1 IF R < 4096 THEN Relay2=~Relay2 IF R < 4096 THEN Relay3=~Relay3 GOTO Start End of program listing =========================================== File... Pong1.BS2 Purpose... Demo the SX-Video Module Author... Terry Hitt ... terry@hittconsulting.com Started... Mar 14, 2005 =========================================== Stamp to button connections K Player1Down P1 -+-/\/\/\-- Vdd +---_\---- GND Button 4.7K Player1Up P2 -+-/\/\/\-- Vdd +---_\---- GND Button Stamp to Video Module Connections BS2 Video Module P Serial GND Gnd {$STAMP BS2} {$PBASIC 2.5} #SELECT $STAMP #CASE BS2, BS2E, BS2PE T1200 CON 813 T2400 CON 396 T4800 CON 188 T9600 CON 84 T19K2 CON 32 T38K4 CON 6 #CASE BS2SX, BS2P T1200 CON 2063 T2400 CON 1021 T4800 CON 500 T9600 CON 240 T19K2 CON 110 T38K4 CON 45 #ENDSELECT SevenBit CON $2000 Inverted CON $4000 Open CON $8000 Video commands v_null CON 128 v_invon CON 129 v_invoff CON 130 v_invscrn CON 131 v_plotxy CON 132 v_unplotxy CON 133 v_outs CON 134 v_version CON 135 v_decbyte CON 136 v_hexbyte CON 137 Baud CON T Inverted Sout PIN 0 Player1Dn PIN 1 Player1Up PIN 2 BallX VAR Byte BallY VAR Byte BallLastX VAR Byte BallLastY VAR Byte BallDirX VAR Byte BallDirY VAR Byte Player1 VAR Byte Delay VAR Byte Score VAR Byte Balls VAR Byte

8 GOTO Start BallFlash: SEROUT Sout,baud,[CRSRXY, 4, 1, "Score:", DEC Score, CRSRXY, 4, 4, "Balls:", DEC Balls] BallLastX=(BallX-10)/2 BallLastY=(BallY-10)/2 FOR Delay=1 TO 3 SEROUT Sout,baud,[v_PlotXY, BallLastX, BallLastY] PAUSE 300 SEROUT Sout,baud,[v_UnPlotXY, BallLastX, BallLastY] PAUSE 300 NEXT BallX=15*2+10 BallY=5*2+10 BallLastX=(BallX-10)/2 BallLastY=(BallY-10)/2 BallDirX=1 BallDirY=1 SEROUT Sout,baud,[CRSRXY, 4, 1, " ", CRSRXY, 4, 4, " "] Erase text RETURN Start: Score=0 Balls=3 PAUSE 100 SEROUT Sout,baud,[v_Null,v_Null,v_Null,v_Null, v_invoff,cls] SEROUT Sout,baud,[CRSRXY, 1, 1, v_invon, "Hitt Consulting", CRSRXY, 4, 2, v_invoff, "SX-Video", CRSRXY, 5, 3, v_invon, "Module", CRSRXY, 6, 5, v_invoff, "Pong1"] PAUSE 5000 SEROUT Sout,baud,[CLS] FOR BallX=1 TO 31 SEROUT Sout,baud,[v_PlotXY, BallX, 0, v_plotxy,ballx, 11] IF BallX < 12 THEN SEROUT Sout,baud,[v_PlotXY, 31, BallX] NEXT Player1=5 FOR BallY=5 TO 6 SEROUT Sout,baud,[v_PlotXY, 0, BallY, v_plotxy, 31, BallY] NEXT BallX=15*2+10 BallY=5*2+10 GOSUB BallFlash BallLastY=(BallY-10)/2 Check if ball is at far left IF BallX < 12 THEN Check if player1 paddle is in position IF (Player1=(BallY-10)/2) OR (Player1=(BallY- 10)/2-1) THEN Yes, Player1 hit ball SEROUT Sout,baud,[BELL] Score=Score + 1 BallDirX=-BallDirX BallX=BallX+BallDirX BallLastX=15 ELSE Player1 missed Balls=Balls-1 GOSUB BallFlash Flash ball at missed location IF Balls=0 THEN GOTO Start GOSUB BallFlash Flash ball to start location Check if ball hit back wall IF BallX > 72 THEN SEROUT Sout,baud,[BELL] BallDirX=-BallDirX BallX=BallX+BallDirX BallLastX=15 Check if ball hit top or bottom IF (BallY < 12) OR (BallY > 30) THEN Yes, make ball bounce SEROUT Sout,baud,[BELL] BallDirY=-BallDirY BallY=BallY+BallDirY BallLastX=(BallX-10)/2 BallLastY=(BallY-10)/2 Update ball position BallX=BallX+BallDirX BallY=BallY+BallDirY GOTO Main End of program listing Main: Delay=0 Check if player1 is trying to move up IF (Player1Up = 0) AND (Player1 > 0) THEN Player1=Player1-1 SEROUT Sout,baud,[v_UnPlotXY, 0, Player1+2, v_plotxy, 0, Player1] Delay=Delay+10 Check if player1 is trying to move down IF (Player1Dn = 0) AND (Player1 < 10) THEN Player1=Player1+1 SEROUT Sout,baud,[v_UnPlotXY, 0, Player1-1, v_plotxy, 0, Player1+1] Delay=Delay+10 Game delay IF Delay < 20 THEN PAUSE 20-delay Move ball on screen IF BallLastX <> 31 THEN SEROUT Sout,baud,[v_UnPlotXY, BallLastX, BallLastY] SEROUT Sout,baud,[v_PlotXY, (BallX-10)/2, (BallY-10)/2] Remember new ball position BallLastX=(BallX-10)/2

SX Video OSD Module Hitt Consulting

SX Video OSD Module Hitt Consulting SX Video OSD Module Hitt Consulting Rev A * Serial In Video Out 105 S Locust Street * 2400 baud serial input (8N1) Shiremanstown Pa 17011 * Compatible with NTSC video info@hittconsulting.com * 8 lines

More information

HC-OSD Video OSD Module

HC-OSD Video OSD Module HC-OSD Video OSD Module Hitt Consulting Firmware Ver 1.2 Datasheet Rev A * Video Overlay 105 S Locust Street * PS/2 Keyboard Input Shiremanstown Pa 17011 * GPS Serial Input info@hittconsulting.com * TTL

More information

with Carrier Board OSD-232+ TM Version 1.01 On-screen composite video character and graphic overlay Copyright 2010 Intuitive Circuits, LLC

with Carrier Board OSD-232+ TM Version 1.01 On-screen composite video character and graphic overlay Copyright 2010 Intuitive Circuits, LLC OSD-232+ TM with Carrier Board On-screen composite video character and graphic overlay Version 1.01 Copyright 2010 Intuitive Circuits, LLC D escription OSD-232+ is a single channel on-screen composite

More information

TV Character Generator

TV Character Generator TV Character Generator TV CHARACTER GENERATOR There are many ways to show the results of a microcontroller process in a visual manner, ranging from very simple and cheap, such as lighting an LED, to much

More information

VideoStamp 8 TM. Eight channel on-screen composite video character and graphic overlay with real-time clock. Version 1.01

VideoStamp 8 TM. Eight channel on-screen composite video character and graphic overlay with real-time clock. Version 1.01 VideoStamp 8 TM Eight channel on-screen composite video character and graphic overlay with real-time clock Version 1.01 Copyright 2008 Intuitive Circuits, LLC D escription VideoStamp 8 is an eight channel

More information

Writing Programs INTRODUCING THE BASIC STAMP EDITOR 2 SCRIBBLER HARDWARE PROGRAMMING CONNECTIONS 8 BLINKING THE LIGHTS WITH PROGRAM LOOPS 9

Writing Programs INTRODUCING THE BASIC STAMP EDITOR 2 SCRIBBLER HARDWARE PROGRAMMING CONNECTIONS 8 BLINKING THE LIGHTS WITH PROGRAM LOOPS 9 Writing Programs 1 Writing Programs Inside the Scribbler Robot is a small computer called a BASIC Stamp microcontroller. It performs a list of instructions that make the Scribbler operate. With the BASIC

More information

Ocean Sensor Systems, Inc. Wave Staff III, OSSI With 0-5V & RS232 Output and A Self Grounding Coaxial Staff

Ocean Sensor Systems, Inc. Wave Staff III, OSSI With 0-5V & RS232 Output and A Self Grounding Coaxial Staff Ocean Sensor Systems, Inc. Wave Staff III, OSSI-010-008 With 0-5V & RS232 Output and A Self Grounding Coaxial Staff General Description The OSSI-010-008 Wave Staff III is a water level sensor that combines

More information

ZU 251. Incremental Counter Module With Analogue Output and Serial Interface. Operating Instructions. control motion interface

ZU 251. Incremental Counter Module With Analogue Output and Serial Interface. Operating Instructions. control motion interface control motion interface motrona GmbH Zwischen den Wegen 32 78239 Rielasingen - Germany Tel. +49 (0)7731-9332-0 Fax +49 (0)7731-9332-30 info@motrona.com www.motrona.com ZU 251 Incremental Counter Module

More information

Kramer Electronics, Ltd. USER MANUAL. Model: FC Analog Video to SDI Converter

Kramer Electronics, Ltd. USER MANUAL. Model: FC Analog Video to SDI Converter Kramer Electronics, Ltd. USER MANUAL Model: FC-7501 Analog Video to SDI Converter Contents Contents 1 Introduction 1 2 Getting Started 1 3 Overview 2 4 Your Analog Video to SDI Converter 3 5 Using Your

More information

Vorne Industries. 87/719 Analog Input Module User's Manual Industrial Drive Itasca, IL (630) Telefax (630)

Vorne Industries. 87/719 Analog Input Module User's Manual Industrial Drive Itasca, IL (630) Telefax (630) Vorne Industries 87/719 Analog Input Module User's Manual 1445 Industrial Drive Itasca, IL 60143-1849 (630) 875-3600 Telefax (630) 875-3609 . 3 Chapter 1 Introduction... 1.1 Accessing Wiring Connections

More information

Intelligent Security and Fire Ltd

Intelligent Security and Fire Ltd User Manual Product ranges covered by this manual Vi-P14 Vi-P14A Document Reference Date Firmware Vi-Q4C1 Viq601a.doc 26/11/2009 From Viq001a21 Videoswitch Telephone 01252-851510 Ocean House, Redfields

More information

DiD. LCD Video Monitor & Video Wall Universal User Manual. Digital Information Display

DiD. LCD Video Monitor & Video Wall Universal User Manual. Digital Information Display LCD Video Monitor & Video Wall Universal User Manual DiD Digital Information Display Video Monitor Models M82S1/M70S1/M65S1/M55S1/M46S1/M40S1/M32S1/M24S1/M19S2/M19S1 Video Wall Models PD55N3/PD46N4/PD46N3/PD46N2/PD40N2

More information

HD-SDI Express User Training. J.Egri 4/09 1

HD-SDI Express User Training. J.Egri 4/09 1 HD-SDI Express User Training J.Egri 4/09 1 Features SDI interface Supports 720p, 1080i and 1080p formats. Supports SMPTE 292M serial interface operating at 1.485 Gbps. Supports SMPTE 274M and 296M framing.

More information

HomeVision-PC Owner s Manual Version 2.62

HomeVision-PC Owner s Manual Version 2.62 HomeVision-PC Owner s Manual Version 2.62 Custom Solutions, Inc. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose, without

More information

VM15 Streamer V User s Guide

VM15 Streamer V User s Guide VM15 Streamer V3.33.6 User s Guide Endpoint Technology, LLC 26624 Ocean View Drive Malibu CA U.S. 90265 Technical Questions Contact: Jim Ketcham jsketcham@earthlink.net Index to VM- 15 Users Guide 1. Product

More information

SXGA096 DESIGN REFERENCE BOARD

SXGA096 DESIGN REFERENCE BOARD SXGA096 DESIGN REFERENCE BOARD For Use with all emagin SXGA096 OLED Microdisplays USER S MANUAL VERSION 1.0 TABLE OF CONTENTS D01-501152-01 SXGA096 Design Reference Board User s Manual i 1. INTRODUCTION...

More information

ZU 252. Incremental Counter Module With Analogue Output and Serial Interface. Operating Instructions. control motion interface

ZU 252. Incremental Counter Module With Analogue Output and Serial Interface. Operating Instructions. control motion interface control motion interface ZU 252 Incremental Counter Module With Analogue Output and Serial Interface Counter suitable for quadrature signals (A/B, 90º) as well as single channel inputs Counting inputs

More information

Programmable Video Signal Generator VG-880. Instruction Manual. Ver 1.10

Programmable Video Signal Generator VG-880. Instruction Manual. Ver 1.10 Programmable Video Signal Generator VG-880 Instruction Manual Ver 1.10 Programmable Video Signal Generator VG-880 Instruction Manual 2009.9 Ver.1.10 ASTRODESIGN,Inc CONTENTS BEFORE OPERATION...v Chapter

More information

Ocean Sensor Systems, Inc. Wave Staff, OSSI F, Water Level Sensor With 0-5V, RS232 & Alarm Outputs, 1 to 20 Meter Staff

Ocean Sensor Systems, Inc. Wave Staff, OSSI F, Water Level Sensor With 0-5V, RS232 & Alarm Outputs, 1 to 20 Meter Staff Ocean Sensor Systems, Inc. Wave Staff, OSSI-010-002F, Water Level Sensor With 0-5V, RS232 & Alarm Outputs, 1 to 20 Meter Staff General Description The OSSI-010-002E Wave Staff is a water level sensor that

More information

Operating Manual. 50mW C-Band EDFA with GPIB and RS232 Interface

Operating Manual. 50mW C-Band EDFA with GPIB and RS232 Interface Fibotec Fiberoptics GmbH Herpfer Str. 40 98617 Meiningen Germany Tel. +49 3693 8813-200 Fax. +49 3693 8813-201 www.fibotec.com Operating Manual 50mW C-Band EDFA with GPIB and RS232 Interface (Version 1.1

More information

QTI Line Follower AppKit for the Boe-Bot (#28108)

QTI Line Follower AppKit for the Boe-Bot (#28108) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Manual Version Ver 1.0

Manual Version Ver 1.0 The BG-3 & The BG-7 Multiple Test Pattern Generator with Field Programmable ID Option Manual Version Ver 1.0 BURST ELECTRONICS INC CORRALES, NM 87048 USA (505) 898-1455 VOICE (505) 890-8926 Tech Support

More information

SPI Serial Communication and Nokia 5110 LCD Screen

SPI Serial Communication and Nokia 5110 LCD Screen 8 SPI Serial Communication and Nokia 5110 LCD Screen 8.1 Objectives: Many devices use Serial Communication to communicate with each other. The advantage of serial communication is that it uses relatively

More information

Lecture 14: Computer Peripherals

Lecture 14: Computer Peripherals Lecture 14: Computer Peripherals The last homework and lab for the course will involve using programmable logic to make interesting things happen on a computer monitor should be even more fun than the

More information

DC-105 Quick Installation Guide

DC-105 Quick Installation Guide DC-105 Quick Installation Guide PACKAGE CONTENTS 2 POWER ON 2 CONNECT TO A DVB-T RECEIVER 3 ADJUST THE FOCUS OF THE LENS 3 CONNECT TO A CVBS MONITOR 4 MIC-IN 4 USB UART DONGLE 5 MONITOR BOOT MESSAGES 7

More information

Lab 3 LCD Mar

Lab 3 LCD Mar Lab 3 LCD Mar. 2016 1 Objective 1. To be familiar with advanced output devices that can be connected to microcontroller. 2. To be able to work with many input/output devices together. Alphanumeric LCD

More information

Kramer Electronics, Ltd. USER MANUAL. Model: VS-201YC. 2x1 s-video Switcher

Kramer Electronics, Ltd. USER MANUAL. Model: VS-201YC. 2x1 s-video Switcher Kramer Electronics, Ltd. USER MANUAL Model: VS-201YC 2x1 s-video Switcher Contents Contents 1 Introduction 1 2 Getting Started 1 2.1 Quick Start 1 3 Overview 3 4 Your VS-201YC 2x1 s-video Switcher 4 5

More information

4 x 4 VGA Matrix Switch

4 x 4 VGA Matrix Switch Hall Research Technologies, Inc. 4 x 4 VGA Matrix Switch Model VSM-404 User s Manual With Serial Keypad CUSTOMER SUPPORT INFORMATION Order toll-free in the U.S. 800-959-6439 FREE technical support, Call

More information

REVISIONS LTR DESCRIPTION DATE APPROVED - Initial Release 11/5/07 MDB A ECR /9/08 MDB

REVISIONS LTR DESCRIPTION DATE APPROVED - Initial Release 11/5/07 MDB A ECR /9/08 MDB REVISIONS LTR DESCRIPTION DATE APPROVED - Initial Release 11/5/07 MDB A ECR 8770 4/9/08 MDB CONTRACT NO. DRAWN BY CHECKED BY APPROVED BY DATE P. Phillips 11/2/07 TITLE M. Bester 11/5/07 SIZE A 2120 Old

More information

Table of Contents Introduction

Table of Contents Introduction Page 1/9 Waveforms 2015 tutorial 3-Jan-18 Table of Contents Introduction Introduction to DAD/NAD and Waveforms 2015... 2 Digital Functions Static I/O... 2 LEDs... 2 Buttons... 2 Switches... 2 Pattern Generator...

More information

IV 251. Signal Converter SSI Analogue and SSI Serial. Operating Instructions. control motion interface

IV 251. Signal Converter SSI Analogue and SSI Serial. Operating Instructions. control motion interface control motion interface IV 251 Signal Converter SSI Analogue and SSI Serial Suitable for operation with all sensors and encoders using SSI interface Scalable analogue outputs +/- 10 volts, 0-20 ma and

More information

MENU EXECUTE Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free

MENU EXECUTE Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free Instruction Manual Model 2016-1250 Downconverter May 2009 Rev A F=2501.750 G=+25.0 MENU MODEL 2016 DOWNCONVERTER CROSS TECHNOLOGIES INC. ALARM REMOTE POWER EXECUTE Data, drawings, and other material contained

More information

DIVERSITY DVB-T RECEIVER (DDR)

DIVERSITY DVB-T RECEIVER (DDR) User s Manual The most important thing we build is trust. DIVERSITY DVB-T RECEIVER (DDR) Cobham Surveillance GMS Products 1916 Palomar Oaks Way Ste 100 Carlsbad, CA 92008 100-M0062X2 T: 760-496-0055 05/15/09

More information

MENU EXECUTE Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free

MENU EXECUTE Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free Instruction Manual Model 2083-2717 Block Translator October 2018, Rev. 0 2650>1700 G=-10.0 TRX =950.000000 MHz MENU MODEL 2083 TRANSLATOR CROSS TECHNOLOGIES INC. REMOTE POWER ALARM EXECUTE Data, drawings,

More information

MENU EXECUTE Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free

MENU EXECUTE Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free Instruction Manual Model 2083-2838 Block Translator April 2019, Rev. 0 2700>3850 G=-10.0 REF = AUTO - I MENU MODEL 2083 TRANSLATOR CROSS TECHNOLOGIES INC. REMOTE POWER ALARM EXECUTE Data, drawings, and

More information

AC335A. VGA-Video Ultimate Plus BLACK BOX Back Panel View. Remote Control. Side View MOUSE DC IN OVERLAY

AC335A. VGA-Video Ultimate Plus BLACK BOX Back Panel View. Remote Control. Side View MOUSE DC IN OVERLAY AC335A BLACK BOX 724-746-5500 VGA-Video Ultimate Plus Position OVERLAY MIX POWER FREEZE ZOOM NTSC/PAL SIZE GENLOCK POWER DC IN MOUSE MIC IN AUDIO OUT VGA IN/OUT (MAC) Remote Control Back Panel View RGB

More information

Model 1476-C SuperQuad HR

Model 1476-C SuperQuad HR Model 1476-C SuperQuad HR Installation and Operating Instructions Table of Contents Page Table of Content... 2 System Description... 3 Features... 3 Installation... 4 Internal Setups... 4 Connections...

More information

SignalTap Plus System Analyzer

SignalTap Plus System Analyzer SignalTap Plus System Analyzer June 2000, ver. 1 Data Sheet Features Simultaneous internal programmable logic device (PLD) and external (board-level) logic analysis 32-channel external logic analyzer 166

More information

Technovision DV-66B User Guide (HW V1.3, FW V1.6) Latest Version Sept. 2004

Technovision DV-66B User Guide (HW V1.3, FW V1.6) Latest Version Sept. 2004 Product Description The DV-66B is the PC Board used in the DV-66 player. It enables the DV-66 series to play multi-format media files with High-speed CompactFlash memory cards (CF). The DV-66B is specifically

More information

medlab One Channel ECG OEM Module EG 01000

medlab One Channel ECG OEM Module EG 01000 medlab One Channel ECG OEM Module EG 01000 Technical Manual Copyright Medlab 2012 Version 2.4 11.06.2012 1 Version 2.4 11.06.2012 Revision: 2.0 Completely revised the document 03.10.2007 2.1 Corrected

More information

Video Scaler Pro with RS-232

Video Scaler Pro with RS-232 Video Scaler Pro with RS-232 - ID# 783 Operation Manual Introduction Features The Video Scaler Pro with RS-232 is designed to convert Composite S-Video and YCbCr signals to a variety of computer and HDTV

More information

HD VIDEO COMMUNICATION SYSTEM PCS-XG100/XG77. System Integration Manual Sony Corporation

HD VIDEO COMMUNICATION SYSTEM PCS-XG100/XG77. System Integration Manual Sony Corporation HD VIDEO COMMUNICATION SYSTEM PCS-XG100/XG77 System Integration Manual 1st Edition (PCS-XG100/XG77:Ver1.0) 2013 Sony Corporation Release History Date Contents 2013/9/25 1 st Release Contents Section 1.

More information

Bel 2120B. Analogue/AES/SDI Shuffler. User s Guide Version /05/04

Bel 2120B. Analogue/AES/SDI Shuffler. User s Guide Version /05/04 Bel 2120B Analogue/AES/SDI Shuffler User s Guide Version 1.0 06/05/04 BEL (Digital Audio) Ltd. has made every effort to ensure the accuracy of information contained within this document which is nevertheless

More information

VNS2210 Amplifier & Controller Installation Guide

VNS2210 Amplifier & Controller Installation Guide VNS2210 Amplifier & Controller Installation Guide VNS2210 Amplifier & Controller Installation 1. Determine the installation location for the VNS2210 device. Consider the following when determining the

More information

EXTERNAL CONTROL THROUGH RS-232C

EXTERNAL CONTROL THROUGH RS-232C EXTERNAL CONTROL THROUGH RS-232C The RS-232C port allows you connect the RS-232C input jack to an eternal control device (such as a computer or an A/V control system) to control the TV s functions eternally.

More information

IV 251. Signal Converter SSI => Analogue and SSI => Serial. Operating Instructions. control motion interface

IV 251. Signal Converter SSI => Analogue and SSI => Serial. Operating Instructions. control motion interface control motion interface motrona GmbH Zwischen den Wegen 32 78239 Rielasingen - Germany Tel. +49 (0)7731-9332-0 Fax +49 (0)7731-9332-30 info@motrona.com www.motrona.com IV 251 Signal Converter SSI => Analogue

More information

Foreword: The purpose of this document is to describe how to install and configure Neets 4 relay box

Foreword: The purpose of this document is to describe how to install and configure Neets 4 relay box Foreword: The purpose of this document is to describe how to install and configure Neets 4 relay box COPYRIGHT All information contained in this manual is the intellectual property of and copyrighted material

More information

FRQM-2 Frequency Counter & RF Multimeter

FRQM-2 Frequency Counter & RF Multimeter FRQM-2 Frequency Counter & RF Multimeter Usage Instructions Firmware v2.09 Copyright 2007-2011 by ASPiSYS Ltd. Distributed by: ASPiSYS Ltd. P.O.Box 14386, Athens 11510 (http://www.aspisys.com) Tel. (+30)

More information

DXI SAC Software: Configuring a CCTV Switcher. Table of Contents

DXI SAC Software: Configuring a CCTV Switcher. Table of Contents APPLICATION NOTE MicroComm DXI DXI SAC Software: Configuring a CCTV Switcher Table of Contents 1. Intent & Scope... 2 2. Introduction... 2 3. Options and Parameters... 2 3.1 When to switch the CCTV...2

More information

MENU EXECUTE Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free

MENU EXECUTE Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free Instruction Manual Model 2584-31 Combiner May 2011, Rev. A RF MONITOR GAIN = -15 MENU MODEL 2584 COMBINER CROSS TECHNOLOGIES INC. ALARM REMOTE POWER EXECUTE Data, drawings, and other material contained

More information

Instruction Manual Model Downconverter

Instruction Manual Model Downconverter Instruction Manual Model 2016-1351 Downconverter August 2010, Rev. A F=512 G=+0.0 MENU MODEL 2016 DOWNCONVERTER CROSS TECHNOLOGIES INC. ALARM REMOTE POWER EXECUTE Data, drawings, and other material contained

More information

AC334A. VGA-Video Ultimate BLACK BOX Remote Control. Back Panel View. Side View MOUSE DC IN BLACK BOX ZOOM/FREEZE POWER

AC334A. VGA-Video Ultimate BLACK BOX Remote Control. Back Panel View. Side View MOUSE DC IN BLACK BOX ZOOM/FREEZE POWER AC334A BLACK BOX 724-746-5500 VGA-Video Ultimate BLACK BOX 724-746-5500 Zoom Position PAL ZOOM/FREEZE POWER FREEZE ZOOM NTSC/PAL SIZE RESET POWER Size Power Remote Control DC IN MOUSE MIC IN AUDIO OUT

More information

308 Industrial Park Rd. Starkville, MS RC1-Y Controller. For Yeasu DC Rotators INSTRUCTION MANUAL. Copyright 2015, All Rights Reserved.

308 Industrial Park Rd. Starkville, MS RC1-Y Controller. For Yeasu DC Rotators INSTRUCTION MANUAL. Copyright 2015, All Rights Reserved. 308 Industrial Park Rd. Starkville, MS. 39759 RC1-Y Controller For Yeasu DC Rotators INSTRUCTION MANUAL Copyright 2015, All Rights Reserved. RC1-Y FEATURES Direct replacement control box for Yaesu DC rotators:

More information

MONITOR POWER Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free

MONITOR POWER Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free Instruction Manual Model 2099-10xx 10MHz Frequency Source April 2014, Rev. H MENU INTERNAL LEVEL = +10dBm MONITOR POWER 1 2 MODEL 2099 FREQUENCY SOURCE CROSS TECHNOLOGIES INC. ALARM OVEN REMOTE EXECUTE

More information

Laboratory 4 Check Off Sheet. Student Name: Staff Member Signature/Date: Part A: VGA Interface You must show a TA the following for check off:

Laboratory 4 Check Off Sheet. Student Name: Staff Member Signature/Date: Part A: VGA Interface You must show a TA the following for check off: Student Name: Massachusetts Institue of Technology Department of Electrical Engineering and Computer Science 6.111 - Introductory Digital Systems Laboratory (Spring 2007) 6.111 Staff Member Signature/Date:

More information

QRF5000 MDU ENCODER. Data Sheet

QRF5000 MDU ENCODER. Data Sheet Radiant Communications Corporation 5001 Hadley Road South Plainfield NJ 07080 Tel (908) 757-7444 Fax (908) 757-8666 WWW.RCCFIBER.COM QRF5000 MDU ENCODER Data Sheet Version 1.1 1 Caution Verify proper grounding

More information

3-in 1- out DVI Switcher

3-in 1- out DVI Switcher 3-in 1- out DVI Switcher CDVI-31 Operation Manual Application Cypress CDVI-31 DVI Switcher is a high performance digital HD signal processor that designed for use in switching between various DVI sources

More information

EEG CB1512 Caption Legalizer & Relocating Bridge

EEG CB1512 Caption Legalizer & Relocating Bridge EEG CB1512 Caption Legalizer & Relocating Bridge Product Manual EEG Enterprises, Inc. 586 Main Street Farmingdale, New York 11735 TEL: (516) 293-7472 FAX: (516) 293-7417 Copyright EEG Enterprises, Inc.

More information

Hardware & software Specifications

Hardware & software Specifications Hardware & software Specifications Réf : PRELIMINARY JUNE 2007 Page 2 of 17 1. PRODUCT OVERVIEW...3 2. TERMINOLOGY...4 A. THE FRONT PANEL...4 B. THE REAR PANEL...5 3. SCREENS DESCRIPTION...5 A. MAIN SCREEN

More information

SPECIFICATION FOR APPROVAL

SPECIFICATION FOR APPROVAL SPECIFICATION FOR APPROVAL (ANALOG RGB AND VIDEO INTERFACE CONTROLLER FOR VGA/SVGA/XGA RESOLUTION TFT-LCDs) MODEL NO : AP4300 SERIES BUYER S PARTNO: APPROVED REFERENCE (PLEASE RETURN ONE OF THESE TO US

More information

The characteristics of a video signal and methods to overcome distance limitations

The characteristics of a video signal and methods to overcome distance limitations The characteristics of a video signal and methods to overcome distance limitations Rich Hanna, CTS Regional Application Specialist, Southeast Extron Electronics Monday, January 24, 2005 9:00 AM 4:00 PM

More information

Laboratory 4 Check Off Sheet. Student Name: Staff Member Signature/Date: Part A: VGA Interface You must show a TA the following for check off:

Laboratory 4 Check Off Sheet. Student Name: Staff Member Signature/Date: Part A: VGA Interface You must show a TA the following for check off: Student Name: Massachusetts Institue of Technology Department of Electrical Engineering and Computer Science 6.111 - Introductory Digital Systems Laboratory (Spring 2006) 6.111 Staff Member Signature/Date:

More information

Mounting Dimensions / Viewing 2 Mounting Options 3. Wiring Configuration 4. Quick Set up Procedure 5. Changing Intensity 6.

Mounting Dimensions / Viewing 2 Mounting Options 3. Wiring Configuration 4. Quick Set up Procedure 5. Changing Intensity 6. Contents Section Mounting Dimensions / Viewing 2 Mounting Options 3 Section 2 Wiring Configuration 4 Section 3 Quick Set up Procedure 5 Section 4 Changing Intensity 6 Section 5 Option Summary 7 Section

More information

ET-YFB100G S P E C F I L E. Digital Interface Box. As of December Specifications and appearance are subject to change without notice.

ET-YFB100G S P E C F I L E. Digital Interface Box. As of December Specifications and appearance are subject to change without notice. Product Number : Product Name :. Specifications and appearance are subject to change without notice. 1 / 8 Description This digital interface box is designed for use with an applicable Panasonic projector.

More information

VGA Port. Chapter 5. Pin 5 Pin 10. Pin 1. Pin 6. Pin 11. Pin 15. DB15 VGA Connector (front view) DB15 Connector. Red (R12) Green (T12) Blue (R11)

VGA Port. Chapter 5. Pin 5 Pin 10. Pin 1. Pin 6. Pin 11. Pin 15. DB15 VGA Connector (front view) DB15 Connector. Red (R12) Green (T12) Blue (R11) Chapter 5 VGA Port The Spartan-3 Starter Kit board includes a VGA display port and DB15 connector, indicated as 5 in Figure 1-2. Connect this port directly to most PC monitors or flat-panel LCD displays

More information

DUAL/QUAD DISPLAY CONTROLLER Operation Manual

DUAL/QUAD DISPLAY CONTROLLER Operation Manual DUAL/QUAD DISPLAY CONTROLLER Operation Manual Model PXD524 MicroImage Video Systems division of World Video Sales Co., Inc PO Box 331 Boyertown, PA 19512 Phone 610-754-6800 Fax 610-754-9766 sales@mivs.com

More information

NS-3 RF Noise Source Operation Manual

NS-3 RF Noise Source Operation Manual RF Noise Source Operation Manual Version 2.04 June 3, 2016 SPECIFICATIONS Frequency... Maximum output level... Output flatness... (at max output level) Impedance... Displayed level... Repeatability...

More information

APPLICATION NOTE # Monitoring DTMF Digits Transmitted by a Phone

APPLICATION NOTE # Monitoring DTMF Digits Transmitted by a Phone APPLICATION NOTE # Product: 930A Communications Test Set 930i Communications Test Set Monitoring DTMF Digits Transmitted by a Phone Introduction This Application Note describes how to configure and connect

More information

TView QuadScan USER S MANUAL Revision 2.00

TView QuadScan USER S MANUAL Revision 2.00 TView QuadScan USER S MANUAL Revision 2.00 Focus Enhancements 600 Research Drive Wilmington MA 01887 Phone: 978-988-5888 Tech Support: 978-988-5505 Fax: 978-988-7555 2 1 INTRODUCTION... 5 1.1 INTENT OF

More information

For warranty service, please contact Microframe at: A technician will gladly assist you.

For warranty service, please contact Microframe at: A technician will gladly assist you. Your Microframe System is warranted against failure due to defects in workmanship or material for a period of one (1) year from the date of purchase. Microframe Corporation will repair or replace any defective

More information

This document describes the different ways to allow the automation system to close a gpi contact from the transmission list.

This document describes the different ways to allow the automation system to close a gpi contact from the transmission list. GPI BOARD (RELAY ACTUATOR & ISOLATED D/I CARD) Date: August 03, 2000 This document describes the different ways to allow the automation system to close a gpi contact from the transmission list. CABLE REQUIREMENTS

More information

Installation Manual VS-1200-KW1. Frequency Domain Scrambler with Multi-Format ANI VS-110- KW1. Rolling Double Inversion Scrambler VS KW1

Installation Manual VS-1200-KW1. Frequency Domain Scrambler with Multi-Format ANI VS-110- KW1. Rolling Double Inversion Scrambler VS KW1 Installation Manual VS-00-KW Frequency Domain Scrambler with Multi-Format ANI VS-0- KW Rolling Double Inversion Scrambler VS-00- KW Double Inversion Scrambler VS-000- KW Voice Inversion Scrambler VS-00-

More information

Operating Instructions Rev. No. 4.1 July 07, LTC and VITC Reader with Serial Interface TC 60 RLV

Operating Instructions Rev. No. 4.1 July 07, LTC and VITC Reader with Serial Interface TC 60 RLV Operating Instructions Rev. No. 4.1 July 07, 2014 LTC and VITC Reader with Serial Interface TC 60 RLV Table of contents page A1 GENERAL HINTS FOR SAFE OPERATION A2 COPYRIGHT A3 CE DECLARATION OF CONFORMITY

More information

Think Outside the Box... DIDO JR. Applications and Video Wall System Wiring Diagrams

Think Outside the Box... DIDO JR. Applications and Video Wall System Wiring Diagrams Think Outside the Box... DIDO JR. Applications and Video Wall System Wiring Diagrams 05 Commercial Court - Morganville, N.J. 0775 (7) 59-5800 Office - (7) 59-580 Fax Sales@auroramultimedia.com x Video

More information

Kramer Electronics, Ltd. USER MANUAL. Model: VS x 1 Sequential Video Audio Switcher

Kramer Electronics, Ltd. USER MANUAL. Model: VS x 1 Sequential Video Audio Switcher Kramer Electronics, Ltd. USER MANUAL Model: VS-120 20 x 1 Sequential Video Audio Switcher Contents Contents 1 Introduction 1 2 Getting Started 1 2.1 Quick Start 2 3 Overview 3 4 Installing the VS-120 in

More information

Configuring the Élan SC300 Device s Internal CGA Controller for a Specific LCD Panel

Configuring the Élan SC300 Device s Internal CGA Controller for a Specific LCD Panel Configuring the Élan SC300 Device s Internal CGA Controller for a Specific LCD Panel Application Note This application note explains how to determine if a specific LCD panel is supported by the Élan TM

More information

BecauseRFL andhubbel haveapolicyofcontinuousproductimprovement,wereservetherighttochangedesignsandspecificationswithoutnotice.

BecauseRFL andhubbel haveapolicyofcontinuousproductimprovement,wereservetherighttochangedesignsandspecificationswithoutnotice. 1. Introduction 1.1 Overview The RFL VS800 CODEC enables high quality video transmission combined with voice and data over E1 (2.048Mbit/s), T1 (1.55Mbit/s) or Ethernet links. This provides an alternative

More information

User Guide & Reference Manual

User Guide & Reference Manual TSA3300 TELEPHONE SIGNAL ANALYZER User Guide & Reference Manual Release 2.1 June 2000 Copyright 2000 by Advent Instruments Inc. TSA3300 TELEPHONE SIGNAL ANALYZER ii Overview SECTION 1 INSTALLATION & SETUP

More information

OTM FREQUENCY AGILE 750MHz F.C.C. COMPATIBLE TELEVISION MODULATOR INSTRUCTION MANUAL

OTM FREQUENCY AGILE 750MHz F.C.C. COMPATIBLE TELEVISION MODULATOR INSTRUCTION MANUAL OTM-4000 FREQUENCY AGILE 750MHz F.C.C. COMPATIBLE TELEVISION MODULATOR INSTRUCTION MANUAL Phone: (209) 586-1022 (800) 545-1022 Fax: (209) 586-1026 E-Mail: salessupport@olsontech.com 025-000331 REV B www.olsontech.com

More information

Command line direct mode: This is relevant when a PC application is used to send and receive commands over the network port.

Command line direct mode: This is relevant when a PC application is used to send and receive commands over the network port. Serial Command Structure The Optika Collaborate UHD series feature an RJ-45 Ethernet port for control and monitoring over a network. This application note introduces the two user interface modes: Command

More information

J.M. Stewart Corporation 2201 Cantu Ct., Suite 218 Sarasota, FL Stewartsigns.com

J.M. Stewart Corporation 2201 Cantu Ct., Suite 218 Sarasota, FL Stewartsigns.com DataMax INDOOR LED MESSAGE CENTER OWNER S MANUAL QUICK START J.M. Stewart Corporation 2201 Cantu Ct., Suite 218 Sarasota, FL 34232 800-237-3928 Stewartsigns.com J.M. Stewart Corporation Indoor LED Message

More information

MICROTRONIX DX-2200 DUAL-VIEW 2X1 SDI VIDEO SWITCHER

MICROTRONIX DX-2200 DUAL-VIEW 2X1 SDI VIDEO SWITCHER MICROTRONIX DX-2200 DUAL-VIEW 2X1 SDI VIDEO SWITCHER USER MANUAL VERSION 3.75 4056 Meadowbrook Drive, Unit 126 London, ON Canada N6L 1E3 www.microtronix.com DX-2200 Dual-view 2x2 SDI Switcher User Manual

More information

N3ZI Digital Dial Manual For kit with Backlit LCD Rev 4.00 Jan 2013 PCB

N3ZI Digital Dial Manual For kit with Backlit LCD Rev 4.00 Jan 2013 PCB N3ZI Digital Dial Manual For kit with Backlit LCD Rev 4.00 Jan 2013 PCB Kit Components Item Qty Designator Part Color/Marking PCB 1 LCD Display 1 LCD 1602 Volt Regulator 1 U1 78L05, Black TO-92 Prescaler

More information

CP-255ID Multi-Format to DVI Scaler

CP-255ID Multi-Format to DVI Scaler CP-255ID Multi-Format to DVI Scaler Operation Manual DISCLAIMERS The information in this manual has been carefully checked and is believed to be accurate. Cypress Technology assumes no responsibility

More information

QUADRANT DVB-T Modulator USER GUIDE. Quadrant DVB A N T E N N A I R. Copyright 2012 Antennair Limited, Neo House, Shaw Road, OLDHAM OL1 4AW. Issue 1.

QUADRANT DVB-T Modulator USER GUIDE. Quadrant DVB A N T E N N A I R. Copyright 2012 Antennair Limited, Neo House, Shaw Road, OLDHAM OL1 4AW. Issue 1. QUADRANT DVB-T Modulator USER GUIDE Quadrant DVB A N T E N N A I R Copyright 2012 Antennair Limited, Neo House, Shaw Road, OLDHAM OL1 4AW Issue 1.1 This user guide contains basic instructions for installation

More information

RC1-G Series Controller

RC1-G Series Controller 308 Industrial Park Rd. Starkville, MS. 39759 RC1-G Series Controller For Yeasu AC Rotators INSTRUCTION MANUAL Copyright 2015, All Rights Reserved. RC1-G FEATURES Direct replacement control box for YEASU

More information

SG-6005xl & SG-6006 PROTOCOL (VER 1.2)

SG-6005xl & SG-6006 PROTOCOL (VER 1.2) SG-6005xl & SG-6006 PROTOCOL (VER 1.2) A protocol for the SG-6005xl & SG-6006 is described below. For RS-232: A null-modem connection between the PC and the SG-6005xl & SG-6006 is required, and data is

More information

LAX_x Logic Analyzer

LAX_x Logic Analyzer Legacy documentation LAX_x Logic Analyzer Summary This core reference describes how to place and use a Logic Analyzer instrument in an FPGA design. Core Reference CR0103 (v2.0) March 17, 2008 The LAX_x

More information

Working with CSWin32 Software

Working with CSWin32 Software Working with CSWin32 Software CSWin32 provides a PC interface for Coiltek s ultrasonic control products. The software expands the palette of control features of the CS-5000 and CS-6100 series controls;

More information

DeviceConfig. User Guide. Camera configuration tool (RS232, GigE, Camera Link) V April 2012

DeviceConfig. User Guide. Camera configuration tool (RS232, GigE, Camera Link) V April 2012 DeviceConfig User Guide Camera configuration tool (RS232, GigE, Camera Link) V2.0.0 05 April 2012 Allied Vision Technologies GmbH Taschenweg 2a D-07646 Stadtroda / Germany Legal notice Trademarks Microsoft,

More information

Project Final Report. Z8 Arcade! 4/25/2006 James Bromwell,

Project Final Report. Z8 Arcade! 4/25/2006 James Bromwell, Project Final Report Z8 Arcade! 4/25/2006 James Bromwell, bromwell@gwu.edu Project Abstract Z8 Arcade! is an extension of the presentation on adding a composite video output line to the Z8 project board,

More information

SigPlay User s Guide

SigPlay User s Guide SigPlay User s Guide . . SigPlay32 User's Guide? Version 3.4 Copyright? 2001 TDT. All rights reserved. No part of this manual may be reproduced or transmitted in any form or by any means, electronic or

More information

O P E R A T I O N M A N U A L. RF-Reader. Stand-alone-Reader Leser 2plus with RS-232 interface

O P E R A T I O N M A N U A L. RF-Reader. Stand-alone-Reader Leser 2plus with RS-232 interface O P E R A T I O N M A N U A L Version 01/05 RF-Reader Stand-alone-Reader Leser 2plus with RS-232 interface Important! Read by all means! To maintain the perfect shipping conditions and to ensure safe operation

More information

Introduction to LasrPlay and DVDplay Synchronizers

Introduction to LasrPlay and DVDplay Synchronizers Introduction to LasrPlay and DVDplay Synchronizers Multi-channel Synchronizers and Controllers for Pioneer Laserdisc and DVD Video players Dave Jones Design Dave Jones Design 87 Chestnut St., Owego, NY

More information

Jinyoung Contech Co., Ltd.

Jinyoung Contech Co., Ltd. TO : Jinyoung Contech Co., Ltd. #501, 222-12 MARIOTOWER, GURO-DONG, GURO-KU, SEOUL, KOREA TEL : 82-2-890-6400 FAX : 82-2-890-6406 HOME PAGE : http://www.jyct.com/ Issued Date : 2006-12-15 Page : 13ages

More information

Aurora Grid-Tie Installation Instructions (Model Number: PVI-3.0-OUTD-US-W) Revision 4.1

Aurora Grid-Tie Installation Instructions (Model Number: PVI-3.0-OUTD-US-W) Revision 4.1 Aurora Grid-Tie Installation Instructions (Model Number: PVI-3.0-OUTD-US-W) Revision 4.1 Contents 1) Grid-Tie Installation Block Diagram... 3 2) Installation Steps.... 4 2.1) Initial Setup.... 4 2.1.1)

More information

A BBD replacement and adjustment procedure

A BBD replacement and adjustment procedure A-188-1 BBD replacement and adjustment procedure The following steps have to be carried out with the unpowered A-188-1 module (i.e. the module is not connected to the A-100 bus board or the module is connected

More information

Dual PAL or NTSC Video to RGB Converter (One way) with 12V Relay Switch Operation Manual

Dual PAL or NTSC Video to RGB Converter (One way) with 12V Relay Switch Operation Manual Dual PAL or NTSC Video to RGB Converter (One way) with 12V Relay Switch Operation Manual Introduction This unit converts video signals from NTSC/PAL/SECAM into RGB/Sync or RGsB (Sync On Green) to allow

More information

N3ZI Digital Dial Manual For kit with Serial LCD Rev 3.04 Aug 2012

N3ZI Digital Dial Manual For kit with Serial LCD Rev 3.04 Aug 2012 N3ZI Digital Dial Manual For kit with Serial LCD Rev 3.04 Aug 2012 Kit properly assembled and configured for Standard Serial LCD (LCD Not yet connected) Kit Components Item Qty Designator Part Color/Marking

More information

Kramer Electronics, Ltd. USER MANUAL. Model: VS-401YC. 4x1 s-video / Audio Switcher - DA

Kramer Electronics, Ltd. USER MANUAL. Model: VS-401YC. 4x1 s-video / Audio Switcher - DA Kramer Electronics, Ltd. USER MANUAL Model: VS-401YC 4x1 s-video / Audio Switcher - DA Contents Contents 1 Introduction 1 2 Getting Started 1 2.1 Quick Start 1 3 Overview 3 4 Your VS-401YC 4x1 s-video

More information