AT&T U-verse Enabled

Size: px
Start display at page:

Download "AT&T U-verse Enabled"

Transcription

1 AT&T U-verse Enabled How to Override Remote Control Keys Publication Date: November 1 st, 2013

2 Legal Disclaimer This document and the information contained herein (collectively, the "Information") is provided to you (both the individual receiving this document and any legal entity on behalf of which such individual is acting) ("You" and "Your") by AT&T, on behalf of itself and its affiliates ("AT&T") for informational purposes only. AT&T is providing the Information to You because AT&T believes the Information may be useful to You. The Information is provided to You solely on the basis that You will be responsible for making Your own assessments of the Information and are advised to verify all representations, statements and information before using or relying upon any of the Information. Although AT&T has exercised reasonable care in providing the Information to You, AT&T does not warrant the accuracy of the Information and is not responsible for any damages arising from Your use of or reliance upon the Information. You further understand and agree that AT&T in no way represents, and You in no way rely on a belief, that AT&T is providing the Information in accordance with any standard or service (routine, customary or otherwise) related to the consulting, services, hardware or software industries. AT&T DOES NOT WARRANT THAT THE INFORMATION IS ERROR-FREE. AT&T IS PROVIDING THE INFORMATION TO YOU "AS IS" AND "WITH ALL FAULTS." AT&T DOES NOT WARRANT, BY VIRTUE OF THIS DOCUMENT, OR BY ANY COURSE OF PERFORMANCE, COURSE OF DEALING, USAGE OF TRADE OR ANY COLLATERAL DOCUMENT HEREUNDER OR OTHERWISE, AND HEREBY EXPRESSLY DISCLAIMS, ANY REPRESENTATION OR WARRANTY OF ANY KIND WITH RESPECT TO THE INFORMATION, INCLUDING, WITHOUT LIMITATION, ANY REPRESENTATION OR WARRANTY OF DESIGN, PERFORMANCE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, OR ANY REPRESENTATION OR WARRANTY THAT THE INFORMATION IS APPLICABLE TO OR INTEROPERABLE WITH ANY SYSTEM, DATA, HARDWARE OR SOFTWARE OF ANY KIND. AT&T DISCLAIMS AND IN NO EVENT SHALL BE LIABLE FOR ANY LOSSES OR DAMAGES OF ANY KIND, WHETHER DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE, SPECIAL OR EXEMPLARY, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, LOSS OF GOODWILL, COVER, TORTIOUS CONDUCT OR OTHER PECUNIARY LOSS, ARISING OUT OF OR IN ANY WAY RELATED TO THE PROVISION, NON-PROVISION, USE OR NON-USE OF THE INFORMATION, EVEN IF AT&T HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSSES OR DAMAGES. IOS is a trademark or registered trademark of Cisco in the U.S. and other countries. i

3 Table of Contents Contents 1 Introduction Additional Resources Overview Example... 4 ii

4 Table of Tables Table 2-1: RemoteKey and onkey Values... 3 iii

5 Table of Examples Example 3-1: Bind Play Button to uveactionavplay Command Using onkey... 4 iv

6 1 Introduction This document is intended for developers who are using the AT&T U-verse Enabled SDK to create U-verse Enabled apps. This document contains an overview of how to override Remote Control Keys to send commands to the TV UI API app running on a screen connected to the U-verse receiver. This provides a mechanism for the user to interact with uvepages using either the U-verse remote control or by sending the command using a uveremotecontrolbuttoncommand. This will allow you in your app to bind actions to the remote control keys that will be triggered on receipt of the command. 1.1 Additional Resources In addition to this document, you may find the following documents helpful when developing U-verse Enabled ios apps. How to Write Your First AT&T U-verse Enabled ios App How to Setup a U-verse Enabled Project in Xcode In addition, you can find more technical information on the AT&T Developer Program web site. See Develop AT&T U-verse Enabled Apps and select the development platform that you are interested in. Page 1 of 4

7 2 Overview The onkey property of uvepage is a feature that allows you to override the U- verse Remote Keys to allow your users to control navigation and interact with your app using the U-verse regular remote control. It is important to define a good strategy for the assignment of which keys you should use for your actions. A good set of general keys to use for your app are the app keys, app1 to app6. If you are using other keys, try to match the functionality of the key in your app as close to the user s perception of the key as possible. For example if you are using the directional keys, use them for navigation. The onkey property can be set to an NSDictionary where the remote key is the key of each element in the dictionary and the action you wish to associate with this key. If you wish to add another key/action combination to this dictionary, you will need to include all the key/action combinations for the page in the dictionary. The key of the pair takes an NSString value of the key that you wish to bind to. The mapping to the enum values of RemoteKey are included in the following table. Remote Key Value onkey Value Remote Key Value onkey Value RK_asterisk * RK_back back RK_pound # RK_enter enter RK_zero 0 RK_clear clear RK_one 1 RK_exit exit RK_two 2 RK_favorites favorites RK_three 3 RK_info info RK_four 4 RK_menu menu Page 2 of 4

8 Remote Key Value onkey Value Remote Key Value onkey Value RK_five 5 RK_options options RK_six 6 RK_recordedtv recordedtv RK_seven 7 RK_guide guide RK_eight 8 RK_help help RK_nine 9 RK_recent recent RK_app1 app1 RK_search search RK_app2 app2 RK_teletext teletext RK_app3 app3 RK_vod void RK_app4 app4 RK_ffwd ffwd RK_app5 app5 RK_rwd rwd RK_app6 app6 RK_pause pause RK_blue blue RK_play play RK_green green RK_playpause playpause RK_red red RK_power power RK_yellow yellow RK_poweron poweron RK_channelup channelup RK_stop stop RK_channeldown channeldown RK_record record RK_up up RK_skipback skipback RK_down down RK_skipfwd skipfwd RK_left left RK_poweroff poweroff RK_right right RK_backspace backspace RK_select select Table 2-1: RemoteKey and onkey Values Page 3 of 4

9 3 Example The following code snippet is an example of how to use the onkey to bind the play button to an uveactionavplay command. First, this example creates a uvevideo container and adds it to the screen. Next, the example creates the action to bind to the key and, finally, the onkey property of the uvepage is set to bind the key to the action. onkey Property 1 uvevideo *video = [[uvevideo alloc] initvideowithname:@"video" tuneurl:[nsurl URLWithString:@"demo.wmv"] frame:cgrectmake(0, 0, 640, 480)]; 2 [page addgadget:video]; 3 uveactionavplay *playaction = [[uveactionavplay alloc] initactionwithname:@"playaction" nameoftargetcontrol:@"video" playspeed:kforward1]; 4 [page addaction:playaction]; 5 page.onkey : playaction }; Example 3-1: Bind Play Button to uveactionavplay Command Using onkey Page 4 of 4

AT&T U-verse Enabled. How to Use the TV UI API. Publication Date: September 9, 2014

AT&T U-verse Enabled. How to Use the TV UI API. Publication Date: September 9, 2014 AT&T U-verse Enabled How to Use the TV UI API Publication Date: September 9, 2014 Legal Disclaimer This document and the information contained herein (collectively, the "Information") is provided to you

More information

TelePresence Cisco TelePresence Synch with Edge95MXP - Troubleshooting

TelePresence Cisco TelePresence Synch with Edge95MXP - Troubleshooting TelePresence Cisco TelePresence Synch with Edge95MXP - Troubleshooting THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL ARE SUBJECT TO CHANGE WITHOUT NOTICE. ALL STATEMENTS, INFORMATION,

More information

Using DLP LightCrafter 4500 Triggers to Synchronize Cameras to Patterns

Using DLP LightCrafter 4500 Triggers to Synchronize Cameras to Patterns Application Report Using DLP LightCrafter 4500 Triggers to Synchronize Cameras to ABSTRACT This document describes how to use the DLP LightCrafter 4500 with the global trigger function of industrial USB

More information

OPERATING YOUR SYSTEM WITH MX-850

OPERATING YOUR SYSTEM WITH MX-850 OPERATING YOUR SYSTEM WITH MX-850 This remote control was Custom Programmed for you by: For questions about your Custom Programming call: Custom Programming of a complex home theater and/or a multi-room

More information

Device Management Requirements

Device Management Requirements Device Management Requirements Approved Version 2.0 09 Feb 2016 Open Mobile Alliance OMA-RD-DM-V2_0-20160209-A [OMA-Template-ReqDoc-20160101-I] OMA-RD-DM-V2_0-20160209-A Page 2 (14) Use of this document

More information

Instant 802.3af Gigabit Outdoor PoE Converter. Model: INS-3AF-O-G. Quick Start Guide

Instant 802.3af Gigabit Outdoor PoE Converter. Model: INS-3AF-O-G. Quick Start Guide Instant 802.3af Gigabit Outdoor PoE Converter Model: INS-3AF-O-G Quick Start Guide QUICK START GUIDE Introduction Thank you for purchasing the Ubiquiti Networks Instant 802.3af Gigabit Outdoor PoE Converter.

More information

IoT Toolbox Mobile Application User Manual

IoT Toolbox Mobile Application User Manual Rev. 0 19 December 2017 User Manual Document information Info Keywords Abstract Content User Manual, IoT, Toolbox The IoT Toolbox is a mobile application developed by NXP Semiconductors and designed for

More information

StickIt! VGA Manual. How to install and use your new StickIt! VGA module

StickIt! VGA Manual. How to install and use your new StickIt! VGA module StickIt! VGA Manual How to install and use your new StickIt! VGA module XESS is disclosing this Document and Intellectual Property (hereinafter the Design ) to you for use in the development of designs

More information

Operating Your System. With the MX-880

Operating Your System. With the MX-880 Operating Your System With the MX-880 This remote control was Custom Programmed for you by: For questions about your Custom Programming call: Custom Programming of a complex home theater and/or a multi-room

More information

Terms of Use and The Festival Rules

Terms of Use and The Festival Rules Terms of Use and The Festival Rules General Provisions By submitting to The International Action Adventure Horror Thriller Film Festival MoviePark (hereinafter referred to as the festival) on the Festival

More information

MXW-920 Waterproof Controller Owner's Manual

MXW-920 Waterproof Controller Owner's Manual MXW-920 Waterproof Controller Owner's Manual MXW-920 Owner s Manual 2012-2013 URC, Inc. The information in this owner s manual is copyright protected. No part of this manual may be copied or reproduced

More information

DVDO VS4 HDMI Switch. User s Guide How to install, set up, and use your new DVDO product

DVDO VS4 HDMI Switch. User s Guide How to install, set up, and use your new DVDO product DVDO VS4 HDMI Switch User s Guide How to install, set up, and use your new DVDO product TABLE OF CONTENTS Table of Contents... 1 Introduction... 1 Installation and Set-Up... 2 Remote Control Operation...

More information

Instruction Guide February 2017

Instruction Guide February 2017 Instruction Guide February 2017 3M Instruction Guide: 3M TM Locator Plate 3443-81-XX, 3D-Printed Instructions for the assembly of 3M TM Ribbon Cable Wiremount Socket Assembly, 451 Series 1.0 General 1.1

More information

Michigan Arts Education Instructional and Assessment Program Michigan Assessment Consortium. MUSIC Assessment

Michigan Arts Education Instructional and Assessment Program Michigan Assessment Consortium. MUSIC Assessment Michigan Arts Education Instructional and Assessment Program Michigan Assessment Consortium MUSIC Assessment Performance Event M.E412 Theme & Variations High School Levels 1 and 2 Teacher Booklet Teacher

More information

AtlonA 4x4 HDMI over CAT5 Matrix Switcher with IR Control AT-HD44M-SR. User Manual

AtlonA 4x4 HDMI over CAT5 Matrix Switcher with IR Control AT-HD44M-SR. User Manual AtlonA 4x4 HDMI over CAT5 Matrix Switcher with IR Control AT-HD44M-SR User Manual TABLE OF CONTENTS 1. Introduction... 1 2. Features... 2 3. Package Contents... 2 4. Technical Specifications and Package

More information

Multi-Media Card (MMC) DLL Tuning

Multi-Media Card (MMC) DLL Tuning Application Report Multi-Media Card (MMC) DLL Tuning Shiou Mei Huang ABSTRACT This application report describes how to perform DLL tuning with Multi-Media Cards (MMCs) at 192 MHz (SDR14, HS2) on the OMAP5,

More information

DM DiagMon Architecture

DM DiagMon Architecture DM DiagMon Architecture Approved Version 1.0 20 Dec 2011 Open Mobile Alliance OMA-AD-DM-DiagMon-V1_0-20111220-A [OMA-Template-ArchDoc-20110121-I] OMA-AD-DM-DiagMon-V1_0-20111220-A Page 2 (13) Use of this

More information

Bringing an all-in-one solution to IoT prototype developers

Bringing an all-in-one solution to IoT prototype developers Bringing an all-in-one solution to IoT prototype developers W H I T E P A P E R V E R S I O N 1.0 January, 2019. MIKROE V E R. 1.0 Click Cloud Solution W H I T E P A P E R Page 1 Click Cloud IoT solution

More information

Copyright and Disclaimer

Copyright and Disclaimer Copyright and Disclaimer All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means electronic, mechanical, photocopying,

More information

HDSP2X4. HDMI 2 x 4 Splitter with Full HD 1080p

HDSP2X4. HDMI 2 x 4 Splitter with Full HD 1080p HDSP2X4 HDMI 2 x 4 Splitter with Full HD 1080p TM TM HDSP2X4 Setup Guide Table of Contents 1) Introduction. 3 2) Specifications. 4 3) Package Contents 4 4) Unit Layout & Description 5 5) Connection and

More information

Satellite Receiver. Chapter REMOTE CONTROL USING THE MENUS USING TEXT FIELDS. About Your Satellite Receiver. What you ll find in this chapter:

Satellite Receiver. Chapter REMOTE CONTROL USING THE MENUS USING TEXT FIELDS. About Your Satellite Receiver. What you ll find in this chapter: Satellite Receiver About Your Satellite Receiver Chapter What you ll find in this chapter: REMOTE CONTROL USING THE MENUS USING THE MENUS USING TEXT FIELDS 3 Chapter 2 Remote Control REMOTE CONTROL The

More information

ARRIS Solutions Inc. TERMS OF USE ARRIS SOFTWARE APPLICATIONS

ARRIS Solutions Inc. TERMS OF USE ARRIS SOFTWARE APPLICATIONS ARRIS Solutions Inc. TERMS OF USE ARRIS SOFTWARE APPLICATIONS (Effective as of February 10, 2015) PLEASE READ CAREFULLY This ARRIS Solutions, Inc. Terms of Use Agreement (this "Agreement") is a legal agreement

More information

Device Management Requirements

Device Management Requirements Device Management Requirements Approved Version 1.3 24 May 2016 Open Mobile Alliance OMA-RD-DM-V1_3-20160524-A OMA-RD-DM-V1_3-20160524-A Page 2 (15) Use of this document is subject to all of the terms

More information

HDMI 1x8 Distribution Amplifier w/ CAT5e/6 outputs up to 394ft. (120 meters) USER MANUAL

HDMI 1x8 Distribution Amplifier w/ CAT5e/6 outputs up to 394ft. (120 meters) USER MANUAL HDMI 1x8 Distribution Amplifier w/ CAT5e/6 outputs up to 394ft. (120 meters) USER MANUAL TABLE OF CONTENT INTRODUCTION... 2 APPLICATIONS... 2 FEATURES... 2 IMPORTANT SAFETY NOTES... 2 PACKAGE CONTENT...

More information

Owner s Manual MRX-4SEN. Sensor Extender

Owner s Manual MRX-4SEN. Sensor Extender Owner s Manual MRX-4SEN Sensor Extender MRX-4SEN Sensor Extender Owners Manual 2015 Universal Remote Control, Inc. The information in this Owner s Manual is copyright protected. No part of this manual

More information

AtlonA HDMI Media Center 6 inputs 1 output Switcher & Converter & 1080p Up-Scaler AT-LINE-EX. User Manual

AtlonA HDMI Media Center 6 inputs 1 output Switcher & Converter & 1080p Up-Scaler AT-LINE-EX. User Manual AtlonA HDMI Media Center 6 inputs 1 output Switcher & Converter & 1080p Up-Scaler AT-LINE-EX User Manual TABLE OF CONTENTS 1. Introduction... 1 2. Features... 1 3. Package Contents... 1 4. Operation Controls

More information

Letters.org. SORRY LETTER TO AUNT. Included: Sorry Letter to Aunt

Letters.org.   SORRY LETTER TO AUNT. Included: Sorry Letter to Aunt Letters.org SORRY LETTER TO AUNT Included: Introduction Tips Sample Template 1 Introduction In a relationship, mistakes and misunderstandings do happen. For whatever the reason may be, they bring in a

More information

Component Video + Analog/Digital Audio Wall Plate (6-RCA) AT80COMP7

Component Video + Analog/Digital Audio Wall Plate (6-RCA) AT80COMP7 Component Video + Analog/Digital Audio Wall Plate (6-RCA) AT80COMP7 User Manual www.atlona.com TABLE OF CONTENTS 1. Introduction 2 2. Applications 2 3. Specifications 2 4. Installation 2 5. Safety Information

More information

With Latency Killer TM Technology. Model LK-Solo. HP Amp 2x2 Loop Thru Mixer

With Latency Killer TM Technology. Model LK-Solo. HP Amp 2x2 Loop Thru Mixer With Latency Killer TM Technology Model LK-Solo HP Amp 2x2 Loop Thru Mixer Lavry Engineering, Inc. P.O. Box 4602 Rolling Bay, WA 98061 www.lavryengineering.com November 20, 2014 Rev 2.0 2 Table of Contents

More information

DLP LightCrafter Display 4710 EVM User s Guide

DLP LightCrafter Display 4710 EVM User s Guide User's Guide DLP LightCrafter Display 4710 EVM User s Guide This user s guide presents an overview of the DLP LightCrafter Display 4710 evaluation module (EVM) and a general description of the main features

More information

DM Scheduling Architecture

DM Scheduling Architecture DM Scheduling Architecture Approved Version 1.0 19 Jul 2011 Open Mobile Alliance OMA-AD-DM-Scheduling-V1_0-20110719-A OMA-AD-DM-Scheduling-V1_0-20110719-A Page 2 (16) Use of this document is subject to

More information

Chore-Tronics 2 Breeder Edition Override Box

Chore-Tronics 2 Breeder Edition Override Box Chore-Tronics Breeder Edition Override Box November 007 CTB Inc. Warranty Override Box CTB Inc. Warranty CTB Inc. warrants each new product manufactured by it to be free from defects in material or workmanship

More information

AUDIO WIRELESS. with IR Extender Feature OWNER S MANUAL SENDER T CAT. NO

AUDIO WIRELESS. with IR Extender Feature OWNER S MANUAL SENDER T CAT. NO /V WIRELESS AUDIO UDIO/V /VIDEO SENDER with IR Extender Feature OWNER S MANUAL SENDER 15-2572T CAT. NO. 15-2572 SENDER 15-2572T FCC CAUTION THIS DEVICE COMPLIES WITH PART 15 OF THE FCC RULES. OPERATION

More information

Low Voltage Multifunctional LED Controller / DMX Decoder. Specification

Low Voltage Multifunctional LED Controller / DMX Decoder. Specification Low Voltage Multifunctional LED Controller / DMX Decoder Specification High Power DMX Decoder & Driver Meets DMX 512/1990 Protocol LT-300 can drive up to 8A current on each channel Capable of driving many

More information

Vocia WR-1. Operation Manual

Vocia WR-1. Operation Manual Vocia WR-1 Operation Manual January 2012 Biamp Systems, 9300 SW Gemini Drive, Beaverton, Oregon 97008 U.S.A. (503) 641-7287 www.biamp.com TABLE OF CONTENTS VOCIA WALL REMOTE 1 (WR-1) FEATURES....3 FRONT

More information

SW-HD3X14K. SW-HD3X14K 3x1 HDMI Switcher with 4K Support

SW-HD3X14K. SW-HD3X14K 3x1 HDMI Switcher with 4K Support SW-HD3X14K 3x1 HDMI Switcher with 4K Support Table of Contents 1. Introduction... 1 1.1. Introduction to SW-HD3X14K... 1 1.2. Features... 1 1.3. Package Contents... 1 1.4. Specifications... 2 1.5. 3X1

More information

Operating Your System. With the MX-980

Operating Your System. With the MX-980 Operating Your System With the MX-980 This remote control was Custom Programmed for you by: For questions about your Custom Programming call: Custom Programming of a complex home theater and/or a multiroom

More information

SDI-SDHDXPRO User Manual. Version1.2

SDI-SDHDXPRO User Manual. Version1.2 User Manual Version1.2 INDEX Description... 3 Feature... 3 Connection Diagram... 4 Front Panel... 5 Rear Panel... 5 Dip Switch... 6 Specifications... 7 Firmware Upload... 8 Update List... 10 Warranty...

More information

User Manual. 4x2 Composite Video/S-Video/Analog Audio Matrix Switcher AT-SAV-42M

User Manual. 4x2 Composite Video/S-Video/Analog Audio Matrix Switcher AT-SAV-42M User Manual 4x2 Composite Video/S-Video/Analog Audio Matrix Switcher AT-SAV-42M www.atlona.com TABLE OF CONTENTS 1. Introduction... 2 2. Features... 2 3. Package Contents... 2 4. Specification... 3 5.

More information

CN12 Technical Reference Guide. CN12 NTSC/PAL Camera. Technical Reference Guide PCB Rev

CN12 Technical Reference Guide. CN12 NTSC/PAL Camera. Technical Reference Guide PCB Rev CN12 NTSC/PAL Camera Technical Reference Guide PCB Rev 1.0 www.soc-robotics.com Copyright 2010. SOC Robotics, Inc. 1 Manual Rev 0.90 Warranty Statement SOC Robotics warrants that the Product delivered

More information

Setup Guide. Introduction

Setup Guide. Introduction TM VGAEXTX1 Setup Guide Table of Contents 1) Introduction. 1 2) Specifications. 2 3) Package Contents. 2 ) Unit Layout & Description. 3 5) Connection and Operation. 6) Connection Diagram.......................

More information

SDI-HDRPTPRO. User Manual. HD-SDI Repeater with Signal Equalization & Re-clocking. Version 1.2

SDI-HDRPTPRO. User Manual. HD-SDI Repeater with Signal Equalization & Re-clocking. Version 1.2 HD-SDI Repeater with Signal Equalization & Re-clocking User Manual Version 1.2 Index Introduction... 3 Features... 3 Package Includes... 3 Connection Diagram... 4 Front Panel... 5 Rear Panel... 5 Specifications...

More information

LavryBlack Series Model AD10 Analog to Digital Converter

LavryBlack Series Model AD10 Analog to Digital Converter LavryBlack Series Model AD10 Analog to Digital Converter Lavry Engineering, Inc. P.O. Box 4602 Rolling Bay, WA 98061 http://lavryengineering.com email: techsupport@lavryengineering.com Rev 1.20 January

More information

User Manual. VGA to Component or Component to VGA Converter Scaler AT-VGA300CV

User Manual. VGA to Component or Component to VGA Converter Scaler AT-VGA300CV User Manual VGA to Component or Component to VGA Converter Scaler AT-VGA300CV www.atlona.com TABLE OF CONTENTS 1. Introduction... 2 2. Package Includes... 2 3. Features... 2 4. Specification... 2 5. Panel

More information

Forward Т Software. SDI option. Revision as of December 19, Installation and Setup Guide. SoftLab-NSK Ltd.

Forward Т Software. SDI option. Revision as of December 19, Installation and Setup Guide. SoftLab-NSK Ltd. Forward Т Software SDI option Revision as of December 19, 2008. Installation and Setup Guide SoftLab-NSK Ltd. Notice The information in this document is subject to change without prior notice in order

More information

Setup Guide. Introduction

Setup Guide. Introduction TM EXTX4 Setup Guide Table of Contents ) Introduction. 2) Specifications. 2 3) Package Contents. 2 4) Unit Layout & Description. 3 5) Connection and Operation. 3 6) Connection Diagram.......................

More information

AT18F Series Configurators. Application Note. Stand-alone or In-System Programming Applications for AT18F Series Configurators. 1.

AT18F Series Configurators. Application Note. Stand-alone or In-System Programming Applications for AT18F Series Configurators. 1. Stand-alone or In-System Programming Applications for AT18F Series Configurators 1. Overview The AT18F Series Configurators, which include AT18F010-30XU (1M), AT18F002-30XU (2M), AT18F040-30XU (4M), and

More information

LavryBlack Series Model DA10 Digital to Analog Converter

LavryBlack Series Model DA10 Digital to Analog Converter LavryBlack Series Model DA10 Digital to Analog Converter Lavry Engineering, Inc. P.O. Box 4602 Rolling Bay, WA 98061 http://lavryengineering.com email: techsupport@lavryengineering.com January 14, 2008

More information

SDI-HDSDXPRO. USER MANUAL Version 1.1

SDI-HDSDXPRO. USER MANUAL Version 1.1 USER MANUAL Version 1.1 Index Description... 3 Features... 3 Connection Diagram... 4 Front Panel... 5 Rear Panel... 5 Dip Switch... 6 EDID Leaning... 7 Specifications... 8 Firmware Upload... 9 Update List...

More information

Atlona HDMI to HDMI Scaler w/audio

Atlona HDMI to HDMI Scaler w/audio Atlona HDMI to HDMI Scaler w/audio AT-HD560 User Manual Table of Contents 1. Introduction... 3 2. Package Contents... 3 3. Features... 3 4. Specifications... 3 5. Panel Descriptions a. Front Panel... 4

More information

SportReplay Multichannel Video Recording and Instant Replay system

SportReplay Multichannel Video Recording and Instant Replay system SportReplay Multichannel Video Recording and Instant Replay system User s guide Revision from November 28, 2006 ReplayMachineSoftware 4.0.0 SoftLab-NSK, Ltd. Notice The information in this document is

More information

PCI MPEG Frame Grabber. Model 616. August 6, 2002

PCI MPEG Frame Grabber. Model 616. August 6, 2002 SENSORAY CO., INC. PCI MPEG Frame Grabber Model 616 August 6, 2002 Sensoray 2001 7313 SW Tech Center Dr. Tigard, OR 97223 Phone 503.684.8073 Fax 503.684.8164 sales@sensoray.com www.sensoray.com 1. Limited

More information

Instruction Manual. 2.4G Digital Wireless Four Channel Transmitter System RVS-554W. Reverse With Confidence 1

Instruction Manual. 2.4G Digital Wireless Four Channel Transmitter System RVS-554W. Reverse With Confidence 1 Instruction Manual 2.4G Digital Wireless Four Channel Transmitter System RVS-554W 1 NOTE! Please read all of the installation instructions carefully before installing the product. Improper installation

More information

Warranty and Registration. Warranty: One Year. Registration: Please register your product at Port, or. or Windows.

Warranty and Registration. Warranty: One Year. Registration: Please register your product at   Port, or. or Windows. 7 7 Port, or or Windows Port Warranty and Registration Warranty: One Year Registration: Please register your product at www.aitech.com 2007 AITech International. All rights reserved. WEB CABLE PLUS PC-TO-TV

More information

Create an Industrial 3D Machine Vision System using DLP Technology

Create an Industrial 3D Machine Vision System using DLP Technology Create an Industrial 3D Machine Vision System using DLP Technology -AM572x Processor based DLP Structured Light Terry Yuan Business Development Manager 1 1987 TI DLP Products: A History of Innovation Dr.

More information

ExtIO Plugin User Guide

ExtIO Plugin User Guide Overview The SDRplay Radio combines together the Mirics flexible tuner front-end and USB Bridge to produce a SDR platform capable of being used for a wide range of worldwide radio and TV standards. This

More information

Table of Contents. Introduction Pin Description Absolute Maximum Rating Electrical Specifications... 4

Table of Contents. Introduction Pin Description Absolute Maximum Rating Electrical Specifications... 4 Table of Contents Introduction... 1 Pin Description... 2 Absolute Maximum Rating... 3 Electrical Specifications... 4 Mechanical Specifications... 5 Thermal Specifications... 6 Over Temperature Protection...

More information

Miniature Fiber Optic 3G/HD/SD-SDI Digital Video Extension Kit up to 1200ft. AT-3GSDI20SR

Miniature Fiber Optic 3G/HD/SD-SDI Digital Video Extension Kit up to 1200ft. AT-3GSDI20SR Miniature Fiber Optic 3G/HD/SD-SDI Digital Video Extension Kit up to 1200ft. AT-3GSDI20SR User Manual www.atlona.com TABLE OF CONTENTS 1. Introduction 2 2. Features 2 3. Package Contents 2 4. Applications

More information

AABB Trademark Usage Guidelines

AABB Trademark Usage Guidelines AABB Trademark Usage Guidelines AABB's Philosophy on Trademarks AABB's trademarks, service marks, member logos and accreditation logos, currently consist of the AABB logo, AABB logo with Member, AABB logo

More information

Hotel Lighting. Lua4RC Application VT8300. Local HVAC System (No reheat) Local lighting system SED-WDN-P-5045 SED-DOR-P-5045.

Hotel Lighting. Lua4RC Application VT8300. Local HVAC System (No reheat) Local lighting system SED-WDN-P-5045 SED-DOR-P-5045. Hotel Lighting Lua4RC Application Door Switch SED-WDN-P-5045 SED-DOR-P-5045 VT8300 Local lighting system Local HVAC System (No reheat) 2 INTRODUCTION This script can be used to control a master lighting

More information

ADVANCED TELEVISION SYSTEMS COMMITTEE, INC. CERTIFICATION MARK POLICY

ADVANCED TELEVISION SYSTEMS COMMITTEE, INC. CERTIFICATION MARK POLICY Doc. B/35 13 March 06 ADVANCED TELEVISION SYSTEMS COMMITTEE, INC. CERTIFICATION MARK POLICY One of the core functions and activities of the ADVANCED TELEVISION SYSTEMS COMMITTEE, INC. ( ATSC ) is the development

More information

Model Extend HDMI audio and video connections up to 300 feet. Add up to 8 additional receivers with a dedicated network switch

Model Extend HDMI audio and video connections up to 300 feet. Add up to 8 additional receivers with a dedicated network switch HDMI Extender over Single CAT 6 Cable with IR Control Model 103002 Extend HDMI audio and video connections up to 300 feet Utilize existing Cat 6 wiring for an easy installation Add up to 8 additional receivers

More information

MaxView Cinema Kit Quick Install Guide

MaxView Cinema Kit Quick Install Guide SYSTEM SETUP The MaxView will work at any of the following display settings: INSTALLATION MaxView Cinema Kit Quick Install Guide Step 1 - Turn off your computer. Disconnect your monitor s VGA cable from

More information

Passive DVI Extenders Over single Cat5/6/7 AT-DVI60SRS

Passive DVI Extenders Over single Cat5/6/7 AT-DVI60SRS Passive DVI Extenders Over single Cat5/6/7 AT-DVI60SRS User Manual www.atlona.com TABLE OF CONTENTS 1. Introduction 2 2. Features 2 3. Package Contents 2 4. Specifications 3 5. Connection and Operation

More information

FlyTV Express M5 MST-T 2 A 2

FlyTV Express M5 MST-T 2 A 2 FlyTV Express M5 MST-T 2 A 2 User Manual Animation Technologies Inc. www.lifeview.com Ver: 1.0 Copyright and Trademark Notice 2006 by Animation Technologies Inc. All rights reserved. Information in this

More information

Universal Wireless HDTV Adapter

Universal Wireless HDTV Adapter Universal Wireless HDTV Adapter F7D4555v1 User Manual Table of Contents CHAPTER 1 INTRODUCTION... 1 Package Contents... 1 Features... 1 LEDs... 2 CHAPTER 2 INITIAL INSTALLATION... 4 Requirements... 4 Procedure...

More information

SOC Single Channel H264 + Audio Encoder module

SOC Single Channel H264 + Audio Encoder module SOC Single Channel H264 + Audio Encoder module Integration Manual Revision 1.1 06/16/2016 2016 SOC Technologies Inc. SOC is disclosing this user manual (the "Documentation") to you solely for use in the

More information

Thank you for purchasing our product. If there is any question or request, please do not hesitate to contact us. This manual may contain technical or

Thank you for purchasing our product. If there is any question or request, please do not hesitate to contact us. This manual may contain technical or 22-inch LCD Display Unit ST-HDLED2.5 User Manual www.securitytronix.com Thank you for purchasing our product. If there is any question or request, please do not hesitate to contact us. This manual may

More information

What You Need to Know About Addressing GDPR Data Subject Rights in Primo

What You Need to Know About Addressing GDPR Data Subject Rights in Primo What You Need to Know About Addressing GDPR Data Subject Rights in Primo Not Legal Advice This document is provided for informational purposes only and must not be interpreted as legal advice or opinion.

More information

www.greenelectricalsupply.com MaxLite 6 & 8 Commercial Downlight Retrofit General Safety Information To reduce the risk of death, personal injury or property damage from fire, electric shock, falling parts,

More information

Device Management Push Binding

Device Management Push Binding Device Management Push Binding Approved Version 1.3 24 May 2016 Open Mobile Alliance OMA-TS-DM_PushBinding-V1_3-20160524-A OMA-TS-DM_PushBinding-V1_3-20160524-A Page 2 (11) Use of this document is subject

More information

AT-HDPIX. Users Manual

AT-HDPIX. Users Manual AT-HDPIX Users Manual Contents 1. Installation...2 2. Introduction:...3 3. Features:...3 4. PC Requirements:...3 4.1 Mac Requirements:...3 5.0 Updates:...4 5.1 Screen Resolution:...4 5.2 Color Quality:...5

More information

1X4 HDMI Splitter with 3D Support

1X4 HDMI Splitter with 3D Support AV Connectivity, Distribution And Beyond... VIDEO WALLS VIDEO PROCESSORS VIDEO MATRIX SWITCHES EXTENDERS SPLITTERS WIRELESS CABLES & ACCESSORIES 1X4 HDMI Splitter with 3D Support Model #: SPLIT-HDM3D-4

More information

Cisco TelePresence Synch

Cisco TelePresence Synch Cisco TelePresence Synch Firmware release notes V3.12 D5060106 October 2011 Contents Contents 2 Document revision history 2 Introduction 3 1. Enhancements/Fixes V3.12 3 2. Enhancements/Fixes V3.11 3 3.

More information

1 x 3 Component Video W/Audio Distribution Amplifier AT-COMP-13AD

1 x 3 Component Video W/Audio Distribution Amplifier AT-COMP-13AD 1 x 3 Component Video W/Audio Distribution Amplifier AT-COMP-13AD User Manual www.atlona.com TABLE OF CONTENTS 1. Introduction 2 2. Features 2 3. Package Contents 2 4. Specifications 2 5. Panel View 3

More information

Optical Engine Reference Design for DLP3010 Digital Micromirror Device

Optical Engine Reference Design for DLP3010 Digital Micromirror Device Application Report Optical Engine Reference Design for DLP3010 Digital Micromirror Device Zhongyan Sheng ABSTRACT This application note provides a reference design for an optical engine. The design features

More information

8 Port HD/SD-SDI Switch

8 Port HD/SD-SDI Switch 8 Port HD/SD-SDI Switch User s Guide Models SW-HDSDI-8X1 2008 Avenview Inc. All rights reserved. The contents of this document are provided in connection with Avenview Inc. ( Avenview ) products. Avenview

More information

Congratulations on your mcable purchase! The mcable delivers the best possible picture to your HD or 4K TV by up-converting 480p and 720p content to

Congratulations on your mcable purchase! The mcable delivers the best possible picture to your HD or 4K TV by up-converting 480p and 720p content to 1 USER GUIDE Congratulations on your mcable purchase! The mcable delivers the best possible picture to your HD or 4K TV by up-converting 480p and 720p content to 1080p, up-converting 1080p content to near-native

More information

EXT-SDHDX. Mini SDI to HDMI Converter

EXT-SDHDX. Mini SDI to HDMI Converter EXT-SDHDX Mini SDI to HDMI Converter Table of Contents 1. Introduction... 1 1.1. Introduction to EXT-SDHDX... 1 1.2. Features... 1 1.3. Package Contents... 2 1.4. Specifications... 2 1.5. Operation controls

More information

Quick Start Guide ABOUT THE CAMERA

Quick Start Guide ABOUT THE CAMERA User Manual Quick Start Guide ABOUT THE CAMERA A Record Status B Record Switch C Rotating Lens D Battery Slot E Battery Latch F Card Format Button G USB H Format Switch I MicroSD card J Memory Status K

More information

Channel Mapping the Com1000 Headend. Channel Mapping the Com1000 using EPG generated PSIP Data. Technical Bulletin

Channel Mapping the Com1000 Headend. Channel Mapping the Com1000 using EPG generated PSIP Data. Technical Bulletin Technical Bulletin Channel Mapping the Com1000 using EPG generated PSIP Data Eliminate digital sub-channel numbers using this technique Communication Systems, Inc. 40 Greenwood Lane Springboro, Ohio 45066

More information

User Manual. 1x8 S-Video Distribution Amplifier With Stereo Audio AT-SAV18

User Manual. 1x8 S-Video Distribution Amplifier With Stereo Audio AT-SAV18 User Manual 1x8 S-Video Distribution Amplifier With Stereo Audio AT-SAV18 www.atlona.com TABLE OF CONTENTS 1. Introduction... 2 2. Features... 2 3. Package Contents... 2 4. Specification... 2 5. Panel

More information

PCI Frame Grabber. Model 611 (Rev.D)

PCI Frame Grabber. Model 611 (Rev.D) SENSORAY CO., INC. PCI Frame Grabber Model 611 (Rev.D) July 2001 Sensoray 2001 7313 SW Tech Center Dr. Tigard, OR 97223 Phone 503.684.8073 Fax 503.684.8164 sales@sensoray.com www.sensoray.com Table of

More information

Device Management Push Binding

Device Management Push Binding Device Management Push Binding Candidate Version 1.3 06 Mar 2012 Open Mobile Alliance OMA-TS-DM_PushBinding-V1_3-20120306-C 2012 Open Mobile Alliance Ltd. All Rights Reserved. OMA-TS-DM_PushBinding-V1_3-20120306-C

More information

Installation and Operation Manual

Installation and Operation Manual PROBLEM SOLVED Installation and Operation Manual INC AES DA 2x6 Six-output, two-input AES/EBU Digital Audio Distribution Amplifier Manual update: 9/17/2015 If you need a firmware upgrade, contact Broadcast

More information

AtlonA. HDMI/DVI to Composite and S-Video Down-Converter AT-HD530. User Manual

AtlonA. HDMI/DVI to Composite and S-Video Down-Converter AT-HD530. User Manual AtlonA HDMI/DVI to Composite and S-Video Down-Converter AT-HD530 User Manual TABLE OF CONTENTS 1. Introduction... 1 2. Features... 1 3. Package Contents... 1 4. Panel Descriptions... 2 4.1 Front Panel...

More information

Firmware Update Management Object Architecture

Firmware Update Management Object Architecture Firmware Update Management Object Architecture Approved Version 1.0 09 Feb 2007 Open Mobile Alliance OMA-AD-FUMO-V1_0-20070209-A OMA-AD-FUMO-V1_0-20070209-A Page 2 (15) Use of this document is subject

More information

Getting the Most from Alma. Patron Driven Acquisitions (PDA)

Getting the Most from Alma. Patron Driven Acquisitions (PDA) Getting the Most from Alma Patron Driven Acquisitions (PDA) CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its affiliates and any misuse or abuse will result in economic

More information

AS Telecommunication Watch Dog. Version 2.70

AS Telecommunication Watch Dog. Version 2.70 AS-2500-1 Telecommunication Watch Dog Version 2.70 Table of Content TABLE OF CONTENT...2 INTRODUCTION...3 FEATURES...3 INSTALLATION...3...3 Changing the maximum number of rings... 4 Verifying the maximum

More information

PD18-73/PD18-73LF: GHz Two-Way 0 Power Splitter/Combiner

PD18-73/PD18-73LF: GHz Two-Way 0 Power Splitter/Combiner DATA SHEET PD18-73/PD18-73LF: 1.71-1.99 GHz Two-Way 0 Power Splitter/Combiner Applications Signal distribution/combining GSM, WCDMA, PCS/DCS Features Low cost Low profile Small SOT-6 package (MSL1, 260

More information

Installation and Operation Manual. for the. IPC-2, Twin stereo level matching interface

Installation and Operation Manual. for the. IPC-2, Twin stereo level matching interface Preliminary Preliminary Preliminary Preliminary for the Copyright 1996 by All rights reserved. Except as permitted under the United States Copyright Act of 1976, no part of this document may be reproduced

More information

Owner s Manual RM-1 RF Remote

Owner s Manual RM-1 RF Remote Owner s Manual RM-1 RF Remote RM-1 Owner s Manual 2013 Universal Remote Control, Inc. The information in this Owner s Manual is copyright protected. No part of this manual may be copied or reproduced in

More information

Atlona 8x8 Component Matrix Switcher with Stereo Audio AT-COMP-88M

Atlona 8x8 Component Matrix Switcher with Stereo Audio AT-COMP-88M Atlona 8x8 Component Matrix Switcher with Stereo Audio AT-COMP-88M User Manual Table of Contents 1. Introduction... 1 2. Features... 1 3. Package Contents... 1 4. Specifications... 1 4. Panel Descriptions

More information

Mini Gateway USB for ModFLEX Wireless Networks

Mini Gateway USB for ModFLEX Wireless Networks Mini Gateway USB for ModFLEX Wireless Networks FEATURES Compatible with all modules in the ModFLEX family. USB device interface & power Small package size: 2.3 x 4.9 External high performance antenna.

More information

User Manual. AtlonA COMPOSITE VIDEO (BNC) + STEREO AUDIO TO HDMI VIDEO FORMAT CONVERTER AND SCALER AT-HD120

User Manual. AtlonA COMPOSITE VIDEO (BNC) + STEREO AUDIO TO HDMI VIDEO FORMAT CONVERTER AND SCALER AT-HD120 User Manual AtlonA COMPOSITE VIDEO (BNC) + STEREO AUDIO TO HDMI VIDEO FORMAT CONVERTER AND SCALER AT-HD120 TABLE OF CONTENTS 1. Introduction... 3 2. Package Contents... 3 3. Features... 3 4. Specification...

More information

User Manual. AtlonA. 7 PRO HD Monitor with HDMI, VGA and Component Inputs (up to 1080p or 1920x1200) AT-DIS7-PROHD

User Manual. AtlonA. 7 PRO HD Monitor with HDMI, VGA and Component Inputs (up to 1080p or 1920x1200) AT-DIS7-PROHD User Manual AtlonA 7 PRO HD Monitor with HDMI, VGA and Component Inputs (up to 1080p or 1920x1200) AT-DIS7-PROHD TABLE OF CONTENTS 1. Introduction... 3 2. Appplications... 3 3. Package Contents... 3 4.

More information

AT03716: Implementation of SAM L Configurable Custom Logic (CCL) Peripheral. Description. SMART ARM-based Microcontrollers APPLICATION NOTE

AT03716: Implementation of SAM L Configurable Custom Logic (CCL) Peripheral. Description. SMART ARM-based Microcontrollers APPLICATION NOTE SMART ARM-based Microcontrollers AT03716: Implementation of SAM L Configurable Custom Logic (CCL) Peripheral APPLICATION NOTE Description The Configurable Custom Logic (CCL) module contains programmable

More information

Jasmine Sub-board Limitation MB87P2020-A

Jasmine Sub-board Limitation MB87P2020-A Application Note Jasmine Sub-board Limitation MB87P2020-A Fujitsu Microelectronics Europe GmbH History Date Author Version Comment 14/10/03 MMu V1.0 First version 1 Warranty and Disclaimer To the maximum

More information

what s in the Box? Camera transmitter with power cable 3M sticker 2 RVS SYSTEMS

what s in the Box? Camera transmitter with power cable 3M sticker 2 RVS SYSTEMS TM 1 what s in the Box? Camera transmitter with power cable 3M sticker 2 RVS SYSTEMS table of Contents introduction...4 features...5 Specifications...6-7 installation...8-9 Operations...10-15 Disclaimer...16

More information

Enable-IT 821P PoE Extender Quickstart Guide Professional Grade Networking

Enable-IT 821P PoE Extender Quickstart Guide Professional Grade Networking ! Enable-IT 821P PoE Extender Quickstart Guide Professional Grade Networking All Rights Reserved 1997-2016 Enable-IT, Inc. INSTALLING THE 821P POE EXTENDER The Enable-IT 821P PoE Extenders have a distance

More information