SX Video OSD Module Hitt Consulting

Size: px
Start display at page:

Download "SX Video OSD Module Hitt Consulting"

Transcription

1 SX Video OSD Module Hitt Consulting Rev A * Serial In Video Out 105 S Locust Street * 2400 baud serial input (8N1) Shiremanstown Pa * Compatible with NTSC video info@hittconsulting.com * 8 lines of 24 characters / 16 x 48 pixels * 3 Programmable character heights * Programmable vertical position by scanline * Programmable display time by frame (1/60 th sec)

2 SX VIDEO OSD MODULE DEBUG commands for the Basic Stamps, and the constants for DEBUG can be used. 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. VIDEO INPUT AND OUTPUT OVERVIEW The SX Video OSD Module is used to create text and low-resolution graphics on-top-of an input video signal. Popular uses include: time/date stamp, security info, status displays and demonstrations. The video module creates a display of 8 lines each consisting of 24 characters. Each character is 8 pixels wide and 8 pixels high. The module accepts serial data at 2400 baud or 240 characters per second. An entire screen of 192 characters takes less than 1 second. This makes fairly rapid display updates 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. 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 character for the X value then the character for the Y value CHR(2)+CHR(X)+CHR(Y). Commands for values from 0 to 15 are the same as the 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. SWITCHES There are two switches on the board. Switch 1 determines if the video background will be dimmed to make the text easier to see. Switch 2 determines if the serial input is inverted or true. Serial input is always N1 format. ON-BOARD VOLTAGE REGULATOR There is also an on-board voltage regulator. You can connect the Vin pin to a 5.0 to 7.5 volt supply. The module requires about 100 milliamps. Do NOT attempt to connect to the Vcc output of the Basic Stamps, they are not designed to supply the needed 100 milliamps of current. VIDEO OSD (OVERLAY) OR GENERATOR The SX Video OSD module will function as an On-Screen-Display when there is a video signal connected to the video in connector. When a video input is not recognized the module will switch to video generation mode. The module can be used as a video generator if needed. NOTE: The module uses the video signal (either from video in or it s own generated video signal) to time the serial communications. Therefore when the video input is not stable or when the module is switching modes the serial data may become corrupted. If there is any possibility that the video signal may become unstable, it is best to periodically erase and redraw the entire screen. Also note that if the module receives the FRAMES(141) command followed by a value other than 255, the module will not display until another FRAMES command is received, of the module is powered off and back on. It is recommended to send FRAMES,255 periodically to prevent this.

3 Power: Size: Controller: Display: Characters: SPECS 5.0 to 7.5VDC 100mA 2.0 x 1.5 (not including connectors) Ubicom SX48BD microcontroller operating at 50 MHz. 8 lines of 24 characters each Compatible with NTSC (USA) or PAL (Europe, Overlay ONLY) video signals. Vertical position adjustable. 224 including upper & lower case and inverse. 3 vertical character sizes. Serial Input to module that accepts serial data at 2400 baud, 8 data bits, 1 stop bit and no parity (2400-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: CN1 48 horizontal, 16 vertical (1/4 character blocks) SPECIAL FEATURES * Low Res graphics plot and unplot commands * Invert Screen command * Position text vertically by scanline * Display text for x video frames * 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. REGULATORY WARNINGS This device is NOT FCC approved. It is not in finished product form. It is strictly intended for experimental purposes only. If you wish to use these modules in an actual product (a nonexperimental capacity), the modules must first be designed into the product, then the whole product must be approved by the FCC. HEALTH WARNINGS This product contains lead, a chemical known by the state of CA to cause cancer and birth defects and other reproductive harm. CN2 Vin White RCA jack. This is the video input from a camera or other video source. Supply voltage input to regulator. Vin may be between 5.0 and 7.5 volts. This source must be able to supply 100milliamps of current. 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. All parameters are sent as a single byte. CHR(X) or CHR$(X). 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 Ignored (none) Ignored 8 Bksp (none) Moves cursor 1 position to the left (destructive) 9 Tab (none) Moves cursor to next tab stop (0,8,16) 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(0..47),Y(0..15) 133 UnPlotXY (2) X,Y Unplots a point(1/4 char) at X(0..47),Y(0..15) 134 Outs (1) Sets pins on expansion connector 135 Version (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) [NOT USED] 139 Size (1) Size Set vertical size of text (0..2) 140 VertPos (1) Scanline Set the text vertical position on the screen 141 Frames (1) Frames [ RESERVED ] Display text for (1..254) frames 0=Off Immediately 255=Always on [ RESERVED ]

5 CHARACTER SET (+128 for Inverse)

6 Basic Stamp Example Programs =========================================== File... BouncingBall.BS2 Purpose... Demo for SX-Video OSD Module Author... Terry Hitt ... Started... Sept 4, 2005 =========================================== Stamp to Video Module Connections BS2 Video Module P Serial GND Gnd IF USING THE "Board of Education" SIMPLY PLUG THE 3-PIN CONNECTOR IN THE SERVO CONNECTOR LABELED "15" MAKE SURE SWITCH "2" IS OFF(RIGHT) FOR INVERTED SERIAL DATA {$STAMP BS2} {$PBASIC 2.5} #SELECT $STAMP #CASE BS2, BS2E, BS2PE T2400 CON 396 #CASE BS2SX, BS2P T2400 CON 1021 #ENDSELECT Inverted CON $4000 Baud CON T Inverted 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_out CON 134 v_version CON 135 v_decbyte CON 136 v_hexbyte CON 137 v_sound CON 138 v_size CON 139 v_vertpos CON 140 v_frames CON 141 Define I/O Pins Sout PIN 15 Define variables CurrX VAR Word CurrY VAR Word OldX VAR Word OldY VAR Word DirX VAR Word DirY VAR Word Cnt VAR Word Start of code Start: HIGH Sout PAUSE 100 SEROUT Sout,baud,[v_Null,v_Null,v_Null,v_Null, v_invoff, CLS, v_size, 2] FOR CurrX=0 TO 47 SEROUT Sout,baud,[v_PlotXY, CurrX, 0, v_plotxy, CurrX, 47] NEXT FOR CurrY=0 TO 15 SEROUT Sout,baud,[v_PlotXY, 0, CurrY, v_plotxy, 47, CurrY] NEXT

7 SEROUT Sout,baud,[CRSRXY, 1, 1, v_invon, "SX-Video", CRSRXY, 6, 3, v_invoff, "OSD Module", CRSRXY, 10, 5, v_invon, "Bouncing Ball"] PAUSE 5000 CurrX=15*2+10 CurrY=5*2+10 OldX=(CurrX-10)/2 OldY=(CurrY-10)/2 DirX=1 DirY=1 FOR Cnt=1 TO 1000 PAUSE 25 SEROUT Sout,baud,[v_UnPlotXY, OldX, OldY, v_plotxy, (CurrX-10)/2, (CurrY-10)/2] OldX=(CurrX-10)/2 OldY=(CurrY-10)/2 CurrX=CurrX+DirX CurrY=CurrY+DirY IF (CurrX < 12) OR (CurrX > 102) THEN DirX=-DirX CurrX=CurrX+DirX ENDIF IF (CurrY < 12) OR (CurrY > 38) THEN DirY=-DirY CurrY=CurrY+DirY ENDIF NEXT GOTO Start

8 ========================================================================= File... DS1307 DEMO.BS2 Purpose... DS1307 demo for SX-Video Overlay (OSD) Module Author... Terry Hitt, (I2C Portions from Jon Williams, Parallax) Started... Updated SEPT 2005 {$STAMP BS2} {$PBASIC 2.5} ========================================================================= -----[ Program Description ] Simple demo of the SX-Video Overlay (OSD) module using the DS1307 Tested using a BS2 on the NX1000/24 development board -----[ Revision History ] #SELECT $STAMP #CASE BS2, BS2E, BS2PE T2400 CON 396 #CASE BS2SX, BS2P T2400 CON 1021 #ENDSELECT Inverted CON $ [ I/O Definitions ] SDA PIN 0 I2C serial data line SCL PIN 1 I2C serial clock line SPin PIN 2 Serial output to OSD module -----[ Constants ] Ack CON 0 acknowledge bit Nak CON 1 no ack bit DS1307 CON %1101 << 4 Baud CON T Inverted VertPos CON 185 Vertical position on screen 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_out CON 134 For customized modules ONLY v_version CON 135 v_decbyte CON 136 v_hexbyte CON 137 v_sound CON 138 OSD Module does NOT generate sound v_size CON 139 v_vertpos CON 140 v_frames CON [ Variables ] slvaddr VAR Byte slave address devnum VAR Nib device number (0-3) addrlen VAR Nib 0, 1 or 2 devaddr VAR Word address in device i2cdata VAR Byte data to/from device i2cwork VAR Byte work byte for TX routine i2cack VAR Bit Ack bit from device idx VAR Nib secs VAR Byte DS1307 time registers

9 mins VAR Byte hrs VAR Byte day VAR Byte weekday date VAR Byte day in month, 1-31 month VAR Byte year VAR Byte control VAR Byte SQWV I/O control Cnt VAR Byte -----[ EEPROM Data ] [ Initialization ] Reset: slvaddr = DS1307 addrlen = 1 Setup: OUTPUT SPin PAUSE 100 SEROUT SPin, Baud, [v_null, v_null, v_null, CLS, v_size, 0, v_vertpos, VertPos, v_frames, 255] -----[ Program Code ] Main: Erase screen SEROUT SPin, Baud, [v_null, v_null, v_null, v_size, 0, v_vertpos, VertPos, v_frames, 255, CRSRXY, 0, 0, CLREOL, CR, CLREOL, CR, CLREOL, CR, CLREOL, CR, CLREOL, CR, CLREOL, CR, CLREOL, CR, " "] Update FOR Cnt=0 TO 50 GOSUB Get_Clock hrs = hrs & $3F SEROUT SPin, Baud, [CRSRXY, 7, 7, HEX2 month, "/", HEX2 date, "/", HEX2 year, " ", HEX2 hrs, ":", HEX2 mins, ":", HEX2 secs] PAUSE 100 NEXT GOTO Main END -----[ Subroutines ] Do a block read from clock registers Get_Clock: GOSUB I2C_Start i2cwork = slvaddr & % i2cwork = 0 GOSUB I2C_Start i2cwork = slvaddr % FOR idx = 0 TO 6 GOSUB I2C_RX_Byte secs(idx) = i2cwork NEXT GOSUB I2C_RX_Byte_Nak control = i2cwork GOSUB I2C_Stop send Start send slave ID (write) point at secs register send slave ID (read) read secs to year read control -----[ High Level I2C Subroutines] Random location read -- pass device slave address in "slvaddr" -- pass address bytes (0, 1 or 2) in "addrlen" -- register address passed in "devaddr" -- data byte read is returned in "i2cdata" Read_Byte: GOSUB I2C_Start IF (addrlen > 0) THEN i2cwork = slvaddr & % send Start send slave ID (write)

10 IF (i2cack = Nak) THEN Read_Byte wait until not busy IF (addrlen = 2) THEN i2cwork = devaddr.byte1 send word address (1) ENDIF i2cwork = devaddr.byte0 send word address (0) GOSUB I2C_Start ENDIF i2cwork = slvaddr % send slave ID (read) GOSUB I2C_RX_Byte_Nak GOSUB I2C_Stop i2cdata = i2cwork -----[ Low Level I2C Subroutines] *** Start Sequence *** I2C_Start: INPUT SDA INPUT SCL LOW SDA Clock_Hold: DO : LOOP UNTIL (SCL = 1) I2C start bit sequence wait for clock release *** Transmit Byte *** I2C_TX_Byte: SHIFTOUT SDA, SCL, MSBFIRST, [i2cwork\8] SHIFTIN SDA, SCL, MSBPRE, [i2cack\1] send byte to device get acknowledge bit *** Receive Byte *** I2C_RX_Byte_Nak: i2cack = Nak GOTO I2C_RX I2C_RX_Byte: i2cack = Ack I2C_RX: SHIFTIN SDA, SCL, MSBPRE, [i2cwork\8] SHIFTOUT SDA, SCL, LSBFIRST, [i2cack\1] no Ack = high Ack = low get byte from device send ack or nak *** Stop Sequence *** I2C_Stop: LOW SDA INPUT SCL INPUT SDA I2C stop bit sequence

SX Video Display Module Hitt Consulting

SX Video Display Module Hitt Consulting 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 17011 * NTSC or PAL monochrome video output info@hittconsulting.com

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

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

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

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

ET-REMOTE DISTANCE. Manual of ET-REMOTE DISTANCE

ET-REMOTE DISTANCE. Manual of ET-REMOTE DISTANCE ET-REMOTE DISTANCE ET-REMOTE DISTANCE is Distance Measurement Module by Ultrasonic Waves; it consists of 2 important parts. Firstly, it is the part of Board Ultrasonic (HC-SR04) that includes sender and

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

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

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

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

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

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

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

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

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

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

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

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

uresearch GRAVITECH.US GRAVITECH GROUP Copyright 2007 MicroResearch GRAVITECH GROUP

uresearch GRAVITECH.US GRAVITECH GROUP Copyright 2007 MicroResearch GRAVITECH GROUP GRAVITECH.US uresearch GRAVITECH GROUP Description The I2C-7SEG board is a 5-pin CMOS device that provides 4-digit of 7-segment display using I 2 C bus. There are no external components required. Only

More information

SparkFun Camera Manual. P/N: Sense-CCAM

SparkFun Camera Manual. P/N: Sense-CCAM SparkFun Camera Manual P/N: Sense-CCAM Revision 0.1b, Aug 14, 2006 Overview The Spark Fun SENSE-CCAM camera is a 640x480 [vga resolution] camera with an 8 bit digital interface. The camera is based on

More information

HDMI-UVC/HDMI-Parallel converter [SVO-03 U&P]

HDMI-UVC/HDMI-Parallel converter [SVO-03 U&P] HDMI-UVC/HDMI-Parallel converter [SVO-03 U&P] Hardware specifications Rev. Net Vision Co., Ltd. SVO-03 U&P hardware specifications Revision history Revision Date Content Charge 1.0 2016/06/08 First edition

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

Viewing Serial Data on the Keysight Oscilloscopes

Viewing Serial Data on the Keysight Oscilloscopes Ming Hsieh Department of Electrical Engineering EE 109L - Introduction to Embedded Systems Viewing Serial Data on the Keysight Oscilloscopes by Allan G. Weber 1 Introduction The four-channel Keysight (ex-agilent)

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

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

TZM883. Manufacturing & Warehouse

TZM883. Manufacturing & Warehouse TZM883 RS232 Communication Protocol R/D & Sales Manufacturing & Warehouse Via Della Praia,4/A Str. della Pronda,17 10090 Ferriera di Buttigliera Alta (TO) Italy 10142 Torino Italy Tel. +39 0119348778 Fax

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

Viewing Serial Data on the Keysight Oscilloscopes

Viewing Serial Data on the Keysight Oscilloscopes Ming Hsieh Department of Electrical Engineering EE 109L - Introduction to Embedded Systems Viewing Serial Data on the Keysight Oscilloscopes by Allan G. Weber 1 Introduction The four-channel Keysight (ex-agilent)

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

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

DLA-HD350 / DLA-HD750 DLA-HD550 / DLA-HD950 DLA-HD990 DLA-RS10 / DLA-RS20 DLA-RS15 / DLA-RS25 DLA-RS35. RS-232C and Infrared Remote Control Guide

DLA-HD350 / DLA-HD750 DLA-HD550 / DLA-HD950 DLA-HD990 DLA-RS10 / DLA-RS20 DLA-RS15 / DLA-RS25 DLA-RS35. RS-232C and Infrared Remote Control Guide JVC D-ILA Projector DLA-HD350 / DLA-HD750 DLA-HD550 / DLA-HD950 DLA-HD990 DLA-RS10 / DLA-RS20 DLA-RS15 / DLA-RS25 DLA-RS35 RS-232C and Infrared Remote Control Guide Version 1.1 Contents Introduction...2

More information

Evaluation Board for CS4954/55

Evaluation Board for CS4954/55 Evaluation Board for CS4954/55 Features l Demonstrates recommended layout and grounding practices l Supports both parallel and serial digital video input l On-board test pattern generation l Supports NTSC/PAL

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

INTERLACE CHARACTER EDITOR (ICE) Programmed by Bobby Clark. Version 1.0 for the ABBUC Software Contest 2011

INTERLACE CHARACTER EDITOR (ICE) Programmed by Bobby Clark. Version 1.0 for the ABBUC Software Contest 2011 INTERLACE CHARACTER EDITOR (ICE) Programmed by Bobby Clark Version 1.0 for the ABBUC Software Contest 2011 INTRODUCTION Interlace Character Editor (ICE) is a collection of three font editors written in

More information

Operator s Manual. Ultegra. Health Scale. Fairbanks Scales by Fairbanks Scales Inc. All rights reserved. Revision 5 06/07

Operator s Manual. Ultegra. Health Scale. Fairbanks Scales by Fairbanks Scales Inc. All rights reserved. Revision 5 06/07 Operator s Manual Ultegra Health Scale Fairbanks Scales 2007 by Fairbanks Scales Inc. All rights reserved 50735 Revision 5 06/07 Amendment Record Ultegra Health Scale 50735 Manufactured by Fairbanks Scales

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

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

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

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

Uni700 LCD Controller

Uni700 LCD Controller Landmark Technology Inc. Uni700 LCD Controller For TFT LCDs with Resolution up to 1,920 x 1,200 (Version A) January 27, 2009 1 1. Introduction The Uni700 controller board is designed for LCD panels of

More information

Broadcast A/V Division M-LYNX-702 V.3. Dual 7 LCD Display. User Manual

Broadcast A/V Division M-LYNX-702 V.3. Dual 7 LCD Display. User Manual Broadcast A/V Division M-LYNX-702 V.3 Dual 7 LCD Display User Manual 1. Package Includes Table of Contents 1. Package Includes Table of Contents 01 02 One M-LYNX-702 Monitor One universal AC power adapter

More information

Broadcast A / V Division M-LYNX-702 V.3. Dual 7 LCD Display. User Manual

Broadcast A / V Division M-LYNX-702 V.3. Dual 7 LCD Display. User Manual Broadcast A / V Division M-LYNX-702 V.3 Dual 7 LCD Display User Manual Table of Contents Table of Contents 1. Package Includes 2. Product Description 2.1 Front Panel 2.2 Rear Panel Connections 3. On-Screen

More information

RS-232C External Serial Control Specifications

RS-232C External Serial Control Specifications RS-232C External Serial Control Specifications Applicable models: LT-37X898, LT-42X898, LT-47X898 and later models for North America 1. Connection 1.1. Terminal D-SUB 9Pin Male terminal Pin No. Name Pin

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

Model 5250 Five Channel Digital to Analog Video Converter Data Pack

Model 5250 Five Channel Digital to Analog Video Converter Data Pack Model 5250 Five Channel Digital to Analog Video Converter Data Pack E NSEMBLE D E S I G N S Revision 3.1 SW v2.0.1 This data pack provides detailed installation, configuration and operation information

More information

16-CH Color Full Duplex Multiplexer Instruction Manual

16-CH Color Full Duplex Multiplexer Instruction Manual 16-CH Color Full Duplex Multiplexer Instruction Manual 707-V1.5(S) Index: 1. Safety Warning 3 2. Introduction 3 3. Features 4 4. Specification 5 5. Front Panel Keypad 6 6. Back Panel Connection 10 7. Menu

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

Agilent 6000 Series Oscilloscope Demo Guide

Agilent 6000 Series Oscilloscope Demo Guide Agilent 6000 Series Oscilloscope Demo Guide Agilent 6000 Series Oscilloscope Demo Guide A series of portable oscilloscopes for today s and tomorrow s projects. In the next few minutes you will experience

More information

AL37219C-EVB-A2 Evaluation Board

AL37219C-EVB-A2 Evaluation Board AL37219C-EVB-A2 Evaluation Board User Manual Version 1.1 INFORMATION FURNISHED BY AVERLOGIC IS BELIEVED TO BE ACCURATE AND RELIABLE. HOWEVER, NO RESPONSIBILITY IS ASSUMED BY AVERLOGIC FOR ITS USE, OR FOR

More information

Video to SXGA Converter Box ID#475

Video to SXGA Converter Box ID#475 Video to SXGA Converter Box ID#475 Operation Manual Introduction The Video to SXGA Converter Box is a composite video signal. S-Video signal and YCbCr signal format converter for AV System (Such as DVD.

More information

RS232 Decoding (Option)

RS232 Decoding (Option) bit0 bit1 bit2 bit3 bit4 bit5 bit6 bit7 bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 7 Protocol Decoding RIGOL RS232 Decoding (Option) RS232 serial bus consists of the transmitting data line (TX) and the receiving

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

On-site reprogrammable beacon keyer

On-site reprogrammable beacon keyer On-site reprogrammable beacon keyer Includes Analogue Version Andy Talbot G4JNT/G8IMR March 2011 - New QRSS version. See Annex 1 Overview The beacon keyer is a small module that generates pre-stored CW

More information

17 19 PROFESSIONAL LCD COLOUR MONITOR ART

17 19 PROFESSIONAL LCD COLOUR MONITOR ART 17 19 PROFESSIONAL LCD COLOUR MONITOR ART. 41657-41659 Via Don Arrigoni, 5 24020 Rovetta S. Lorenzo (Bergamo) http://www.comelit.eu e-mail:export.department@comelit.it WARNING: TO REDUCE THE RISK OF FIRE

More information

Kramer Electronics, Ltd. USER MANUAL. Model: CV / YC to SDI Converter

Kramer Electronics, Ltd. USER MANUAL. Model: CV / YC to SDI Converter Kramer Electronics, Ltd. USER MANUAL Model: 7508 CV / YC to SDI Converter Contents Contents 1 Introduction 1 2 Getting Started 1 3 Overview 1 4 Your 7508 CV / YC to SDI Converter 2 5 Using Your 7508 CV

More information

DVIPRO100 SWITCHER / HIGH RESOLUTION SCALER & PIP CONTROL

DVIPRO100 SWITCHER / HIGH RESOLUTION SCALER & PIP CONTROL 5 inputs ( 2 HDD15, 1 CVBS, 1 YCbCr or CVBS, 1 Y/C) YCbCr input switchable as CVBS Two PC inputs on HDD15 up to SXGA60 or 1080p RGB or YPbPr analogue output on HDD15 DVI digital output up to SXGA60 or

More information

Grove - OLED Display 1.12"

Grove - OLED Display 1.12 Grove - OLED Display 1.12" Introduction 3.3V 5.0V I2C Our new 1.12 OLED displays are perfect when you need a small display with 16 grayscale. The visible portion of the OLED measures 1.12 diagonal and

More information

9 Analyzing Digital Sources and Cables

9 Analyzing Digital Sources and Cables 9 Analyzing Digital Sources and Cables Topics in this chapter: Getting started Measuring timing of video signal Testing cables and distribution systems Testing video signal quality from a source Testing

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

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

Alice EduPad Board. User s Guide Version /11/2017

Alice EduPad Board. User s Guide Version /11/2017 Alice EduPad Board User s Guide Version 1.02 08/11/2017 1 Table OF Contents Chapter 1. Overview... 3 1.1 Welcome... 3 1.2 Launchpad features... 4 1.3 Alice EduPad hardware features... 4 Chapter 2. Software

More information

SDZHD Series. 16x16 HD/SD-SDI & AUDIO MATRIX

SDZHD Series. 16x16 HD/SD-SDI & AUDIO MATRIX Automatic HD/SD-SDI selection External reference switching Selectable switching line Control via keypad, RS232, LAN or CNS1000 remote panel 16 storable presets Balanced audio combined Disabling of equalization

More information

DCD-24 Word Clock Distributor

DCD-24 Word Clock Distributor DCD-24 Word Clock Distributor Owner s manual Version 1.00 October 2018 All materials herein Brainstorm Electronics, Inc. Brainstorm Electronics reserves the right to change or modify the contents of this

More information

L, LTC, LTM, LT are registered trademarks of Linear Technology Corporation. Other product

L, LTC, LTM, LT are registered trademarks of Linear Technology Corporation. Other product DESCRIPTION WARNING! Do not look directly at operating LED. This circuit produces light that can damage eyes. Demo Circuit 1265 QUICK START GUIDE LTC3220/LTC3220-1 360mA Universal 18-Channel LED Driver

More information

LCD TV Technical Training Manual

LCD TV Technical Training Manual LCD TV Technical Training Manual ML-038C Chassis 37,42 inch LCD TV - RZ-37LZ30 (Market:EU) - RZ-42LZ30 (Market:EU) 1/22 Contents 1. Circuit operation Description 1.1 Block diagram 1.2 Signal Input block

More information

CMUcam2 Vision Sensor

CMUcam2 Vision Sensor CMUcam2 Vision Sensor User Guide * Servos not included. Contents Introduction... 2 General Information Typical Configuration and Use... 3 Operational Explanation... 5 Getting Started... 10 Testing... 11

More information

HV-122-DCA DVB-T 2-Way Diversity Receiver Box Quick Installation Guide

HV-122-DCA DVB-T 2-Way Diversity Receiver Box Quick Installation Guide HV-122-DCA DVB-T 2-Way Diversity Receiver Box Quick Installation Guide PACKAGE CONTENTS 4 FRONT PANEL VIEW 4 BACK PANEL VIEW 4 BOARD VIEW 5 IR REMOTE CONTROLLER-TYPE A 6 FILL BATTERY TO IR CONTROLLERS:

More information

RF4432 wireless transceiver module

RF4432 wireless transceiver module RF4432 wireless transceiver module 1. Description RF4432 adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver. The features of high sensitivity (-121 dbm), +20

More information

VGA to Video Converter ID# 424 Operation Manual

VGA to Video Converter ID# 424 Operation Manual VGA to Video Converter ID# 424 Operation Manual Introduction Features The VGA to Video converter provides automatic conversion of PC desktop images to high quality video images for standard television

More information

ATVC-4 Plus Amateur Television Repeater Controller Copyright Intuitive Circuits, LLC

ATVC-4 Plus Amateur Television Repeater Controller Copyright Intuitive Circuits, LLC ATVC-4 Plus Amateur Television Repeater Controller Copyright 2002-2010 Intuitive Circuits, LLC Description Installing an amateur television repeater takes some real planning and quality equipment. "Thinking

More information

Video to HDMI Scaler Box

Video to HDMI Scaler Box Video to HDMI Scaler Box Operation Manual CM-392 (1). Introduction Congratulations on your purchase of the Cypress Video Scaler CM-392. Our professional Video Scaler products have been serving the industry

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

MODEL 5493A DTMF MODEM

MODEL 5493A DTMF MODEM USER S GUIDE MODEL 5493A DTMF MODEM SIGNALCRAFTERS TECH, INC. 57 Eagle Rock Avenue, East Hanover, NJ 07936 Tel: 973-781 - 0880 or 800-523 - 5815 Fax: 973-781 - 9044 http://www.signalcrafters.com 01/07/2009

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

CrossLine Generator Operation Manual

CrossLine Generator Operation Manual WARRANTY MicroImage Video Systems warrants that each CL5400A is free from defects due to faulty materials or improper workmanship for a period of one (1) year. MicroImage Video Systems further warrants

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

CS x1 RS-232 Computer Controlled Video Switcher. Instruction Manual

CS x1 RS-232 Computer Controlled Video Switcher. Instruction Manual CS-1600 16x1 RS-232 Computer Controlled Video Switcher Instruction Manual Thank you for purchasing one of our products. Please read this manual before using this product. When using this product, always

More information

Easy Pixel EPX-L Board. Technical Specifications

Easy Pixel EPX-L Board. Technical Specifications Easy Pixel EPX-L Board Technical Specifications RoHS Compliant. Multicell S.r.l. - Correggio - Reggio Emilia - ITALY - Tel. 0-.. - Fax 0/.. - e.mail : multicell @multicell.it - http://www.multicell.it

More information

USER MANUAL DUX-SCL HDMI SCALER

USER MANUAL DUX-SCL HDMI SCALER USER MANUAL DUX-SCL Table of Contents IMPORTANT SAFETY INSTRUCTIONS...03 INTRODUCTION...04 PACKING LIST...05 SPECIFICATIONS...06 PANEL OVERVIEW...08 SCALER SWITCH...10 INSTALL HARDWARE...11 RS232 CONTROL...12

More information

INFORMATION TO USER CAUTION RISK OF ELECTRIC SHOCK, DO NOT OPEN

INFORMATION TO USER CAUTION RISK OF ELECTRIC SHOCK, DO NOT OPEN INFORMATION TO USER CAUTION RISK OF ELECTRIC SHOCK, DO NOT OPEN! CAUTION: TO REDUCE THE RISK OF ELECTRIC SHOCK, DO NOT REMOVE COVER (OR BACK). NO USER SERVICEABLE PARTS INSIDE. REFER SERVICING TO QUALIFIED

More information

WaveMaker III Gartech Enterprises Inc. 12/17/2012

WaveMaker III Gartech Enterprises Inc. 12/17/2012 WaveMaker III Gartech Enterprises Inc. 12/17/2012 1 Preface: WaveMaker III standalone unit is produced for those desiring a flexible wave form generator. This unit is capable of providing selectable waveform

More information

Operators Manual. TeleWeigh Wired. Model: by Fairbanks Scales, Inc All rights reserved Revision 1 09/07

Operators Manual. TeleWeigh Wired. Model: by Fairbanks Scales, Inc All rights reserved Revision 1 09/07 Operators Manual TeleWeigh Wired Model: 27707 2007 by Fairbanks Scales, Inc. 51164 All rights reserved Revision 1 09/07 Amendment Record TeleWeigh Wired Document 51164 Manufactured by Fairbanks Scales

More information

Image generator. Hardware Specification

Image generator. Hardware Specification Image generator [SVO-03] Rev. NetVision Co., Ltd. Update History Revision Date Note 2018/07/02 New File(Equivalent to Japanese version 1.2) S.Usuba i index 1. Outline... 1 1.1. features and specification

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

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

Model 5240 Digital to Analog Key Converter Data Pack

Model 5240 Digital to Analog Key Converter Data Pack Model 5240 Digital to Analog Key Converter Data Pack E NSEMBLE D E S I G N S Revision 2.1 SW v2.0 This data pack provides detailed installation, configuration and operation information for the 5240 Digital

More information

APPLICATION NOTE VACUUM FLUORESCENT DISPLAY MODULE

APPLICATION NOTE VACUUM FLUORESCENT DISPLAY MODULE AN-E-3190 APPLICATION NOTE VACUUM FLUORESCENT DISPLAY MODULE GRAPHIC DISPLAY MODULE GP1058A02A GENERAL DESCRIPTION FUTABA GP1058A02A is a graphic display module using a FUTABA 336 24 VFD. Consisting of

More information

Chapter 3 Digital Data

Chapter 3 Digital Data Chapter 3 Digital Data So far, chapters 1 and 2 have dealt with audio and video signals, respectively. Both of these have dealt with analog waveforms. In this chapter, we will discuss digital signals in

More information

JAMAR TRAX RD Detector Package Power Requirements Installation Setting Up The Unit

JAMAR TRAX RD Detector Package Power Requirements Installation Setting Up The Unit JAMAR TRAX RD The TRAX RD is an automatic traffic recorder designed and built by JAMAR Technologies, Inc. Since the unit is a Raw Data unit, it records a time stamp of every sensor hit that occurs during

More information

InfoVue OLED Display

InfoVue OLED Display Electronic Component Solutions InfoVue OLED Display ITW ECS brand Lumex announces the release of the InfoVue OLED Display equipped UART interface which features an ultra thin display with low power consumption.

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

V1602 / V1602CP. ANALOGUE VIDEO ROUTER - 16x2. Rev. 6

V1602 / V1602CP. ANALOGUE VIDEO ROUTER - 16x2. Rev. 6 V1602 / V1602CP ANALOGUE VIDEO ROUTER - 16x2 Rev. 6 June 10, 2004 Network Electronics ASA Thorøya P.O. Box 1020 Sandefjord, Norway Phone: +47 33 48 99 99 Fax: +47 33 48 99 98 e-mail: support@network-electronics.com

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

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

Simple PICTIC Commands

Simple PICTIC Commands The Simple PICTIC Are you an amateur bit by the Time-Nut bug but can t afford a commercial time interval counter with sub nanosecond resolution and a GPIB interface? Did you find a universal counter on

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

LED Array Board.

LED Array Board. LED Array Board www.matrixtsl.com EB087 Contents About This Document 2 General Information 3 Board Layout 4 Testing This Product 5 Circuit Description 6 Circuit Diagram 7 About This Document This document

More information

AES-404 Digital Audio Switcher/DA/Digital to Analog Converter

AES-404 Digital Audio Switcher/DA/Digital to Analog Converter Broadcast Devices, Inc. AES-404 Digital Audio Switcher/DA/Digital to Analog Converter Technical Reference Manual Broadcast Devices, Inc. Tel. (914) 737-5032 Fax. (914) 736-6916 World Wide Web: www.broadcast-devices.com

More information