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

Size: px
Start display at page:

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

Transcription

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

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. i

3 Table of Tables Contents 1 Introduction Additional Resources Overview TV UI API Sample Code... 3 ii

4 Table of Examples Example 3-1: Using the TV UI API iii

5 1 Introduction This document is an introduction for developers to the TV UI API. Using this API, you are able to create interfaces for your app on the screen attached to the U- verse receiver. This allows a user to interact with your TV UI app on a television connected to a U-verse receiver. This document includes the basics of adding this functionality to your app and creating a page to display on the television, as well as a code sample using the API to display an image on the television screen. 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 Set Up a U-verse Enabled Project in Xcode How to Write Your First AT&T U-verse Enabled ios App In addition, you can find more technical information on the AT&T Developer Program web site at Page 1 of 5

6 2 Overview The TV UI API allows you to display content from your app onto the screen attached to the U-verse receiver. This allows you to draw content on screen, such as buttons, images, and text, as well as play audio and visual content. In ios this is handled by an object conforming to the uvetvapplicationdelegate protocol. The two methods are used to serve this content: 3 TV UI API The pageforname:withparams:forframe method enables you to create the uvepages that will be used in your app. Each uvepage you create will be a full TV screen of content. Each time a new page is to be drawn on screen in response to a user action, this method is called with the name of the page passed as a parameter. Using this method you create a full uvepage, adding and positioning the UI elements you wish to display on the TV screen, and then return the uvepage object you created. The resourceforname:withparams:forframe method provides the resources used on each uvepage. These can include video and image files. The resourceforname:withparams:forframe method separates the loading of resource elements from the page layout itself, leading to a quicker initial page load. The TV UI API allows you to display content from your app onto the screen attached to the U-verse receiver. This allows you to draw content, such as buttons, images, and text, as well as play audio and visual content, on screen. To add second-screen functionality to your app, you use the uvetvapplicationdelegate protocol. This protocol has four methods: pageforname:withparams:forframe: This is the callback method that your app receives each time that the U-verse receiver displays a page of content on the screen. Use this method to create UVEPage/UVEPanel objects with UVE gadgets, UVE actions, UVE Animations resourceforname:withparams:forframe:this is the callback method that your app receives each time that a page requests a media file, such as images, audio and video. Although you create the object and add it to the page using the pageforname:withparams:forframe method, when the resource is needed the receiver will call this method, passing the URL of the resource as the name argument. The app then returns the resource as NSData for network transmission. applicationserverdidstart: This method is called when the application server is started. After you receive this callback, the app can display a page on the screen. Page 2 of 5

7 4 Sample Code applicationserverdidfailtostartwitherror: This method is called when the application server fails to start. After you have implemented the methods in the uvetvapplicationdelegate protocol, call starttvapplicationwithdelegate on the SetTopBox object, on which you wish to display the content. The code sample below starts the application server on the engaged receiver, passing the uvetvapplicationdelegate object that contains this sample as the delegate. [[UverseConnectedManagersharedManager].mostRecentlyEngagedSetTopBox starttvapplicationwithdelegate:self]; After you receive the applicationserverdidstart callback, you can call the displaypagewithname method on the SetTopBox object on which you started the application server, passing the name of the page that you wish to display as the argument. [[UverseConnectedManagersharedManager].mostRecentlyEngagedSetTopBox After you call displaypagewithname, the object that you passed as the argument to the starttvapplicationwithdelegate method will receive the pageforname:withparams:forframe callback. this callback is received for each page your app displays, you should check the pagename argument and then display the correct content for the requested page. After the call to the pageforname:withparams:forframe callback returns the page to be displayed to the SetTopBox, the callback resourceforname:withparams:forframe is called if any resources need to be loaded on the page. Below is an example with a basic implementation of the TV UI API that displays an image on the screen. This example sends an image to be displayed on the screen that is attached to the receiver. Using the ios initwithnibname:bundle method, this example checks if the application server has been started, and if not it calls the starttvapplicationwithdelegate method to start the application server. Next, in the applicationserverdidstart callback, this example calls the displaypagewithname method to display the page on the screen attached to the U-verse receiver. The U-verse receiver then calls the pageforname:withparams:forframe method. In this example, the method creates and adds the uveimage object to the page, and then returns the page. Finally, when the U-verse receiver is about to the display the image, it calls the resourceforname:withparams:forframe method. There are two important things Page 3 of 5

8 to consider regarding this method. First, the resourcename argument is the URL of the resource and not the name. Second, this method returns an NSData object, so the source must be wrapped in an NSData object before it is returned. TV UI API appserverviewcontroller associatedstb = _associatedstb; page = _page; (id)initwithnibname:(nsstring *)nibnameornil bundle:(nsbundle *)nibbundleornil 6 { 7 self = [super initwithnibname:nibnameornil bundle:nibbundleornil]; 8 if (self) { 9 UverseConnectedManager *uvcmgr = [UverseConnectedManager sharedmanager]; 10 _associatedstb = [UverseConnectedManager sharedmanager].mostrecentlyengagedsettopbox; if (uvcmgr.appserverstate!= AppServerStarted){ 13 [_associatedstb starttvapplicationwithdelegate:self]; 14 } 15 } 16 return self; 17 } #pragma mark - uvetvapplicationdelegate 20 - (void)applicationserverdidstart{ 21 NSLog(@"applicationServerDidStart"); 22 [self.associatedstb displaypagewithname:@"test"]; 23 } (void)applicationserverdidfailtostartwitherror:(nserror*)error{ 26 NSLog(@"Failed to start Application Server"); } (uvepage *)pageforname:(nsstring *)pagename withparams:(nsmutabledictionary *)params forframe:(cgrect)tvframe 29 { 30 if ([pagename isequaltostring:@"test"]){ 31 self.page = [[uvepage alloc] initpagewithname:@"test"]; 32 CGRect imageframe = CGRectMake(20,20, 300, 200); 33 NSURL *imageurl = [NSURL urlwithstring:@"car.jpg"]; 34 uveimage *image = [[uveimage alloc] initimagewithname:@"image" imageurl:imageurl frame:imageframe]; 35 [self.page addgadget:image]; Page 4 of 5

9 36 return page; 37 } 38 else { 39 return nil; 40 } 41 } (NSData *)resourceforname:(nsstring*)resourcename withparams:(nsmutabledictionary*)params 44 { 45 if ( [resourcename isequaltostring:@"car.jpg"]){ 46 NSURL imageurl = [NSURL urlwithstring:@"car.jpg"]; 47 return [NSData datawithcontentsofurl:imageurl]; 48 } 49 } Example 4-1: Using the TV UI API. Page 5 of 5

AT&T U-verse Enabled

AT&T U-verse Enabled AT&T U-verse Enabled How to Override Remote Control Keys Publication Date: November 1 st, 2013 Legal Disclaimer This document and the information contained herein (collectively, the "Information") is provided

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Firmware Update Management Object Architecture

Firmware Update Management Object Architecture Firmware Update Management Object Architecture Candidate Version 1.0 15 Jun 2006 Open Mobile Alliance OMA-AD-FUMO-V1_0-20060615-C OMA-AD-FUMO-V1_0-20060615-C Page 2 (16) Use of this document is subject

More information

OMA Device Management Server Delegation Protocol

OMA Device Management Server Delegation Protocol OMA Device Management Server Delegation Protocol Candidate Version 1.3 06 Mar 2012 Open Mobile Alliance OMA-TS-DM_Server_Delegation_Protocol-V1_3-20120306-C OMA-TS-DM_Server_Delegation_Protocol-V1_3-20120306-C

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

Reference Release Definition for ConnMO

Reference Release Definition for ConnMO Reference Release Definition for ConnMO Approved Version 07 Nov 2008 Open Mobile Alliance OMA-RRELD-ConnMO-V1_0-20081107-A OMA-RRELD-ConnMO-V1_0-20081107-A Page 2 (12) Use of this document is subject to

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

Installation and Operation Manual. for the. SM-6 Programmable Stereo Mixer

Installation and Operation Manual. for the. SM-6 Programmable Stereo Mixer for the Copyright 1996 2001 by Broadcast Tools, Inc. All rights reserved. Except as permitted under the United States Copyright Act of 1976, no part of this document may be reproduced or distributed without

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

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

MAGNETIC HEAD FOR USE WITH QIC-3050-MC RECORDING FORMAT

MAGNETIC HEAD FOR USE WITH QIC-3050-MC RECORDING FORMAT QIC-151 Revision B 15 Jun 94 MAGNETIC HEAD FOR USE WITH QIC-3050-MC RECORDING FORMAT (See important notices on the following page) Important Notices This document is a development standard adopted by Quarter-Inch

More information

MAGNETIC HEAD FOR USE WITH QIC-4GB-DC RECORDING FORMAT

MAGNETIC HEAD FOR USE WITH QIC-4GB-DC RECORDING FORMAT QIC-179 Revision A 27 Aug 97 MAGNETIC HEAD FOR USE WITH QIC-4GB-DC RECORDING FORMAT (See important notices on the following page) Important Notices This document is a development standard adopted by Quarter-Inch

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

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

ANCHOR PRO. Version User Manual

ANCHOR PRO. Version User Manual S. K. Ghosh Associates Inc. Seismic and Building Code Consulting ANCHOR PRO Version 2.0.1 User Manual 334 East Colfax Street, Unit E 43 Vantis Drive Palatine, IL 60067 Aliso Viejo, CA 92656 Ph: (847) 991-2700

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

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

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

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

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

Test Report TIDA /14/2014. Test Report For TIDA Aptina Automotive Camera Module 02/14/2014

Test Report TIDA /14/2014. Test Report For TIDA Aptina Automotive Camera Module 02/14/2014 Test Report For TIDA-00098 Aptina Automotive Camera Module 02/14/2014 1 Overview The reference design is an automotive camera module solution with Aptina image sensor and processor, and TI FPD-Link III

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

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

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

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

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

DVI Rover 700 User Guide

DVI Rover 700 User Guide DVI Rover 700 User Guide Featuring ExtremeDVI Technology DVI Rover 700 This document applies to Part Numbers: 00-00106 through 00-00141 inclusive. FCC Radio Frequency Interference Statement Warning The

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

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

Universal ByteBlaster

Universal ByteBlaster Universal ByteBlaster Hardware Manual June 20, 2005 Revision 1.1 Amfeltec Corp. www.amfeltec.com Copyright 2008 Amfeltec Corp. 35 Fifefield dr. Maple, L6A 1J2 Contents Contents 1 About this Document...

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

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

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

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

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

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

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

USER MANUAL HDMI 1x4 Distribution Amplifier w/ CAT5e/6 outputs up to 394ft. (120 meters) USER MANUAL HDMI 1x4 Distribution Amplifier w/ CAT5e/6 outputs up to 394ft. (120 meters) 1. Introduction: The KanexPro is a 1x4 HDMI splitter with one transmitter and four receivers set amplifier that,

More information

Introduction. Package Contents. Installation Requirements

Introduction. Package Contents. Installation Requirements Security Camera Security Camera Introduction Introduction Thank you for purchasing the aircam Dome. This Quick Start Guide is designed to guide you through the installation of the aircam Dome and show

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

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

Model: HDCMP31. Installation Guide

Model: HDCMP31. Installation Guide Model: HDCMP31 Installation Guide 1 Contents Application Diagram... 3 Installation... 3 Smart Scan TM... 3 Configuring Smart Scan TM... 4 Description... 4 Features... 4 Remote Control Guide... 6 Warranty...

More information

LogiCORE IP Spartan-6 FPGA Triple-Rate SDI v1.0

LogiCORE IP Spartan-6 FPGA Triple-Rate SDI v1.0 LogiCORE IP Spartan-6 FPGA Triple-Rate SDI v1.0 DS849 June 22, 2011 Introduction The LogiCORE IP Spartan -6 FPGA Triple-Rate SDI interface solution provides receiver and transmitter interfaces for the

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

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

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

Combination Solder Pad for Single-chip LEDs with P-LCC-2 and P-LCC-4 Housings Application Note

Combination Solder Pad for Single-chip LEDs with P-LCC-2 and P-LCC-4 Housings Application Note Combination Solder Pad for Single-chip LEDs with P-LCC-2 and P-LCC-4 Housings Application Note Introduction For many years, surface mounted devices (SMDs) have been the standard component form used for

More information

Owner s Manual. VGA + Audio to HDMI Adapter/Scaler. Model: P HDSC2

Owner s Manual. VGA + Audio to HDMI Adapter/Scaler. Model: P HDSC2 Owner s Manual VGA + Audio to HDMI Adapter/Scaler Model: P116-000-HDSC2 Combines a VGA video and RCA stereo audio signal for use with an HDMI display Supports VGA input video resolutions up to 1920 x 1440

More information

X-Series Expansion Cards. X-Video Card

X-Series Expansion Cards. X-Video Card X-Series Expansion Cards X-Video Card User s Guide v1.0 - February 2006 Warnings FCC warning This equipment has been tested and found to comply with the limits for a Class A digital device, pursuant to

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

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

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

American National Standard for Electric Lamps Specifications for the Chromaticity of Solid-State Lighting Products

American National Standard for Electric Lamps Specifications for the Chromaticity of Solid-State Lighting Products American National Standard for Electric Lamps Specifications for the Chromaticity of Solid-State Lighting Products Secretariat: National Electrical Manufacturers Association Approved: May 23, 2017 American

More information

NEMA XR 25 COMPUTED TOMOGRAPHY DOSE CHECK

NEMA XR 25 COMPUTED TOMOGRAPHY DOSE CHECK NEMA XR 25 COMPUTED TOMOGRAPHY DOSE CHECK NEMA Standards Publication XR 25-2010 Computed Tomography Dose Check Published by: National Electrical Manufacturers Association 1300 North 17th Street, Suite

More information

Precision TNC Coaxial Calibration Kit

Precision TNC Coaxial Calibration Kit User Guide Precision TNC Coaxial Calibration Kit DC to 18 GHz Models: 8650CK10/11 8650CK20/21 8650-511 (A) 2/15 User Guide Precision TNC Coaxial Calibration Kit DC to 18 GHz Models: 8650CK10/11 8650CK20/21

More information

ALEPH Z39.50 Client Conformance to U.S. National Z39.50 Profile (ANSI/NISO Z ) Version and Later

ALEPH Z39.50 Client Conformance to U.S. National Z39.50 Profile (ANSI/NISO Z ) Version and Later ALEPH Z39.50 Client Conformance to U.S. National Z39.50 Profile (ANSI/NISO Z39.89 2003) Version 18.01 and Later CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its

More information

American National Standard for Lamp Ballasts High Frequency Fluorescent Lamp Ballasts

American National Standard for Lamp Ballasts High Frequency Fluorescent Lamp Ballasts American National Standard for Lamp Ballasts High Frequency Fluorescent Lamp Ballasts Secretariat: National Electrical Manufacturers Association Approved: January 23, 2017 American National Standards Institute,

More information

HD VIDEO IP STREAMER CT-HDVD-HDSTR-KIT

HD VIDEO IP STREAMER CT-HDVD-HDSTR-KIT www. nacebrands.com HD VIDEO IP STREAMER CT-HDVD-HDSTR-KIT MADE IN CHINA Read this user manual carefully before using this product. Pictures shown in this manual are for reference only. Safety Precaution

More information

Better dispensing, better results.

Better dispensing, better results. Duo-Pak Delivery System Updates Q1 2018 Better dispensing, better results. As of Q1 2018, the 3M Scotch-Weld Structural Adhesive Duo-Pak delivery systems will feature updates and improvements to help provide

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

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

General purpose low noise wideband amplifier for frequencies between DC and 2.2 GHz

General purpose low noise wideband amplifier for frequencies between DC and 2.2 GHz Rev. 5 29 May 2015 Product data sheet 1. Product profile 1.1 General description Silicon Monolitic Microwave Integrated Circuit (MMIC) wideband amplifier with internal matching circuit in a 6-pin SOT363

More information

InfiniBand Trade Association Integrators List Policy

InfiniBand Trade Association Integrators List Policy InfiniBand Trade Association Integrators List Policy The InfiniBand Trade Association ( IBTA ) publishes an Integrators List ( IL ) following each Plugfest sponsored by the IBTA. IBTA published the first

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

VideoEase HDMI 3x1 Switcher Kit (110V) Installation Guide

VideoEase HDMI 3x1 Switcher Kit (110V) Installation Guide VideoEase HDMI 3x1 Switcher Kit 500410 (110V) Installation Guide P/N: 94-00628-A SE-000627-A Copyright Notice : Copyright 2008 MuxLab Inc. All rights reserved. Printed in Canada. No part of this publication

More information

ISIS intouch NET Wi Fi Touch Screen Controller Owner s Manual and Instruction Guide

ISIS intouch NET Wi Fi Touch Screen Controller Owner s Manual and Instruction Guide ISIS intouch NET Wi Fi Touch Screen Controller Owner s Manual and Instruction Guide Table of Contents Overview... 2 Warnings... 3 Kit Includes... 4 Installation Steps... 5 Locate the intouch NET module

More information

ATN DNVM-2 ATN DNVM-4 ATN DNVM-6

ATN DNVM-2 ATN DNVM-4 ATN DNVM-6 ATN DNVM-2 ATN DNVM-4 ATN DNVM-6 DIGITAL NIGHT VISION MONOCULAR user s guide Manual (DNVM-2/4/6) Revision 2 - March, 2013 Important Export Restrictions! Commodities, products, technologies and services

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

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

PM8313 D3MX INTERFACING THE D3MX TO THE SSI 78P7200 DS-3 LIU

PM8313 D3MX INTERFACING THE D3MX TO THE SSI 78P7200 DS-3 LIU PM8313 D3MX INTERFACING THE D3MX TO THE SSI 78P7200 DS-3 LIU Preliminary Information Issue 1: September 1995 8501 Commerce Court, Burnaby, BC Canada V5A 4N3 604 668 7300 OVERVIEW The Silicon Systems SSI78P7200

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

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

Model: HD41-ARC. Installation Guide

Model: HD41-ARC. Installation Guide Model: HD41-ARC Installation Guide 1 Contents Application Diagram... 3 Description... 3 Features... 4 Installation... 4 Remote Control Guide... 6 RS232 Control Commands... 7 USB Service Port...9 Smart

More information

AN Cascading NXP LCD segment drivers. Document information. Keywords

AN Cascading NXP LCD segment drivers. Document information. Keywords Rev. 1 12 February 2014 Application note Document information Info Keywords Abstract Content PCF8576C, PCA8576C, PCF8576D, PCA8576D, PCA8576F, PCF8532, PCF8533, PCA8533, PCF8534, PCA8534, PCF8562, PCF85132,

More information

PCI Express JPEG Frame Grabber Hardware Manual Model 817 Rev.E April 09

PCI Express JPEG Frame Grabber Hardware Manual Model 817 Rev.E April 09 PCI Express JPEG Frame Grabber Hardware Manual Model 817 Rev.E April 09 Table of Contents TABLE OF CONTENTS...2 LIMITED WARRANTY...3 SPECIAL HANDLING INSTRUCTIONS...4 INTRODUCTION...5 OPERATION...6 Video

More information

AudiaEXPI-4, AudiaEXPO-4 & AudiaEXPI/O-2

AudiaEXPI-4, AudiaEXPO-4 & AudiaEXPI/O-2 AudiaEXPI-4, AudiaEXPO-4 & AudiaEXPI/O-2 Input & Output Expanders Operation Manual Biamp Systems 9300 S.W. Gemini Drive Beaverton, OR 97008 USA +1.503.641.7287 www.biamp.com AudiaEXPI-4, AudiaEXPO-4 &

More information

Figure 1: AHK1421 Evaluation Board Pictures.

Figure 1: AHK1421 Evaluation Board Pictures. Introduction EVALUATION BOARD DATA SHEET The AHK evaluation board demonstrates functionality of the AHK and its application as a white LED backlight driver under Skyworks' S Cwire serial digital interface

More information

Insulated Cable Engineers Assoc., Inc. Publication No. ICEA P NEMA Standards Publication No. WC

Insulated Cable Engineers Assoc., Inc. Publication No. ICEA P NEMA Standards Publication No. WC Approved as an American National Standard ANSI Approval Date: January 9, 2004 Insulated Cable Engineers Assoc., Inc. Publication No. ICEA P-54-440 NEMA Standards Publication No. WC 51-2003 Ampacities of

More information

General purpose low noise wideband amplifier for frequencies between DC and 2.2 GHz

General purpose low noise wideband amplifier for frequencies between DC and 2.2 GHz Rev. 1 20 October 2011 Product data sheet 1. Product profile 1.1 General description Silicon Monolithic Microwave Integrated Circuit (MMIC) wideband amplifier with internal matching circuit in a 6-pin

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

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

HSK Mine and Portable Cable Splice

HSK Mine and Portable Cable Splice 8096-4-HSK Mine and Portable Cable Splice Instructions 5 and 8 kv rated cables; Type SHD-GC Size 2/0 4/0 (connector max. length 2 1/2") 8096-4-HSK Mine and Portable Cable Splice 78-8119-6296-4-A 1 1.0

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

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

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