AH66T Serial Query Commands

Size: px
Start display at page:

Download "AH66T Serial Query Commands"

Transcription

1 November 24, 2010 AH66T Serial Query Commands PURPOSE This bulletin explains how to understand the serial response received when a query command is sent to the AH66T. Query Commands In addition to the standard query commands listed in Appendix A of the AH66T manual (available for download at there are two newly implemented query commands that are of particular importance when integrating 3 rd party serial controllers with the AH66T. One of these commands queries the overall status of a particular zone and the other queries the overall status of a complete AH66T chassis. This status information includes selected Sources, Volume levels, Bass and Treble EQ levels, volume Mute status, Do-Not-Disturb and Whole House Music settings, Page/Doorbell mode status and System On/Off status. Command Format The command to query a single zone is: &AH66,ZQRY,ZZ,?<cr> where ZZ is the zone number 1 through 12. So, &AH66,ZQRY,1,?<cr> would query the status of zone one and &AH66,ZQRY,11,?<cr> would query the status of zone eleven. The command to query an entire chassis is: &AH66,QRY,U,?<cr> where U is the chassis unit number 1 or 2. So, &AH66,QRY,1,?<cr> would query the status of chassis one and &AH66,QRY,2,?<cr> would query the status of chassis two. Note: <cr> is a carriage return. This is NOT a typed part of the command. ATON 2010 All rights reserved. Page1

2 Zone Query Response Format The response format for the zone query command is straight forward and is presented as Comma Separated Values (CSV). Query Response Format: *AH66,ZQRY,zz,a,b,c,d,e,f,g,h,I,j,k<cr> zz= Zone number a= Selected source where: A0= Zone OFF A1= Analog Input 1 A5= Analog Input 5 A2= Analog Input 2 A6= Analog Input 6 A3= Analog Input 3 R1= Chassis 1 s Internal Tuner A4= Analog Input 4 R2= Chassis 2 s Internal Tuner b= Zone Volume Level in Percent c= Zone Bass Level in db -12 to +12 db Range d= Zone Treble Level in db -12 to +12 db Range e= Zone Mute Status 0= Not Muted 1= Muted f= Zone Do Not Disturb (DND) Status 0=Not in DND mode 1=In DND mode g= Zone Whole House Music (WHM) Status 0=Not in WHM mode 1=In WHM mode h= Zone Loudness Status 0=Loudness OFF 1=Loudness ON i= Zone Page Status 0= Page Inactive 1=Page Active j= Source Audio Status 0= Source Audio Inactive 1=Source Audio Active k= System Status 0= System OFF 1=System On ATON 2010 All rights reserved. Page2

3 Zone Query Response Format (Continued) Zone Query Response Examples: Zone two has been queried using the command &AH66,ZQRY,2,? The response is: *AH66,2,A2,76,+4,+6,0,0,1,1,0,0,1 This indicates: Zone 2 (2) has analog audio input 2 (A2) selected, the current zone volume is set to 76 (76), the Bass is set to +4dB (+4) and the Treble is set to +6 (+6). Additionally, the zone is NOT muted (0), the zone is NOT in DND (0), the zone is currently part of WHM (1), the zone Loudness EQ is ON (1), the zone is NOT in Page mode (0), the currently selected source does NOT have audio present (0) and finally, the system is ON (1). Zone 10 has been queried using the command &AH66,ZQRY,10,? The response is: *AH66,10,R2,42,-1,+1,1,0,0,1,1,1,1 This indicates: Zone 10 (10) has the internal tuner of chassis 2 (R2) selected, the current zone volume is set to 42 (42), the Bass is set to -1dB (-1) and the Treble is set to +1dB (+1). Additionally, the zone IS muted (1), the zone is NOT in DND (0), the zone is currently NOT part of WHM (0), the zone Loudness EQ is ON (1), the zone IS in Page mode (1), the currently selected source DOES have audio present (1) and finally, the system is ON (1). Zone 12 has been queried using the command &AH66,ZQRY,12,? The response is: *AH66,12,A0,52,+3,+1,0,1,0,0,0,0,0 This indicates: Zone 12 (12) has NO source (A0) selected, the current zone volume is set to 52 (52), the Bass is set to +3dB (+3) and the Treble is set to +1dB (+1). Additionally, the zone is NOT muted (0), the zone IS in DND (1), the zone is currently NOT part of WHM (0), the zone Loudness EQ is NOT on (0), the zone is NOT in Page mode (0), the last selected source does NOT have audio present (0)* and finally, the system is OFF (0). *When a zone is OFF, the feedback will always indicate that there is no audio present for the selected source. The Zone Query command is the recommended query method. The following pages cover the Chassis Query Response format. ATON 2010 All rights reserved. Page3

4 Chassis Query Response Format The Chassis Query command is only recommended for advanced programmers with a thorough understanding of ACSII formatted HEX data. The response format for the chassis query command is presented as ASCII formatted HEX data. This response format allows status information for all zones on one chassis to be obtained with just one query command but the response is much more complex than the Zone query command response previously covered. Each chassis must be queried separately. Chassis Query Response Format: *AH66,QRY,U,ABCDEFGHIJKLABCDEFGHIJKLABCDEFGHIJKLABCDEFGHIJKLABCDEFGHIJKLABCDEFGHIJKL U= The Unit number ABCDEFGHIJKL = The combined status information for one zone. Each value is made by using four bits of binary data (abcd) to create a HEX value where: A= 8 (This value is a constant. It will always be 8.) Binary Equivalent: 1000 B= The zone number in HEX. Binary Equivalent: 0001 to 1100 C= System and Zone Information in HEX comprised of: a= 0 (This value is a constant. It will always be 0.) b= System Status (0=OFF, 1=ON) c= Zone Do Not Disturb (DND) Status (0=OFF, 1=ON) d= Zone Mute Status (0=OFF, 1=ON) D= Source and Zone Information in HEX comprised of: a= Source Audio Detect Status (0= No Audio Detected, 1= Audio Detected) bcd= Source Selected (0= OFF, 1-6 = Source 1-6, 7= Source > 6 see F data) Binary Equivalent: 000 to 111 E= Additional Zone information in HEX comprised of: a= 0 (This value is a constant. It will always be 0.) b= Zone Whole House Music (WHM) Status (0=OFF, 1=ON) c= Zone Page Status (0=OFF, 1=ON) d= 0 (This value is a constant. It will always be 0.) F= Additional Source and Zone information in HEX comprised of: a= Zone Loudness EQ Status (0=OFF, 1=ON) bcd= Source Selected (0= Source < 7 see D data, 1= Source 7 (The Internal Radio)) Binary Equivalent: 000 to 111 ATON 2010 All rights reserved. Page4

5 Chassis Query Response Format (Continued) G= Zone Volume Attenuation Level information in HEX comprised of: H= Additional Zone Volume Attenuation Level information in HEX comprised of: a= 0 or 1 b= 0 or 1 *This information is used by ATON products only. 3 rd party controllers should be programmed to ignore this information for proper operation. It is necessary to combine the information contained in Gc, Gd and Ha, Hb, Hc, and Hd to determine the attenuation level in a zone. Attenuation is shown in HEX as a range of 0 (full volume) to 30 (minimum volume). This is a range of 48 volume steps. Binary Equivalent: to I= Zone Treble Level information in HEX comprised of: J= Additional Zone Treble Level information in HEX comprised of: a= 0 or 1 b= 0 or 1 *This information is used by ATON products only. 3 rd party controllers should be programmed to ignore this information for proper operation. It is necessary to combine the information contained in Ic, Id and Ja, Jb, Jc, and Jd to determine the Treble level in a zone. Treble level is shown in HEX as a range of 4 (minimum Treble -12dB) to 1C (maximum Treble +12dB). This is a range of 24 steps. Binary Equivalent: to ATON 2010 All rights reserved. Page5

6 Chassis Query Response Format (Continued) K= Zone Bass Level information in HEX comprised of: L= Additional Zone Bass Level information in HEX comprised of: a= 0 or 1 b= 0 or 1 *This information is used by ATON products only. 3 rd party controllers should be programmed to ignore this information for proper operation. It is necessary to combine the information contained in Ic, Id and Ja, Jb, Jc, and Jd to determine the Bass level in a zone. Bass level is shown in HEX as a range of 4 (minimum Bass -12dB) to 1C (maximum Bass +12dB). This is a range of 24 steps. Binary Equivalent: to Chassis Query Response Examples: Chassis one has been queried using the command: &AH66,QRY,1,? The response is: *AH66,QRY,1, f The 1 after *AH66,QRY indicates Chassis 1 (1) was queried. All of the information for each zone is contained in 12 HEX characters. To make it easier to understand the information presented, each zone s information is grouped individually below. (ABCDEFGHIJKL) Zone 1: ( ) Zone 2: ( ) Zone 3: ( ) Zone 4: ( ) Zone 5: (854f ) Zone 6: ( ) ATON 2010 All rights reserved. Page6

7 Chassis Query Response Examples (Continued) Zone 1: (8 A 1 B 4 C 1 D 0 E 0 F 2 G 4 H 1 I 9 J 0 K 6 L ) (A=8 (constant value) B=1) Shows this information is for Zone 1 C=4 in HEX which is 0 a 1 b 0 c 0 d in Binary a= 0 (This value is a constant. It will always be 0.) b= System Status (1=ON) c= Zone Do Not Disturb (DND) Status (0=OFF) d= Zone Mute Status (0=OFF) D=1 in HEX which is 0 a 0 b 0 c 1 d in Binary a= Source Audio Detect Status (0= No Audio Detected) bcd= Source Selected (1= Source 1) E=0 in HEX which is 0 a 0 b 0 c 0 d in Binary a= 0 (This value is a constant. It will always be 0.) b= Zone Whole House Music (WHM) Status (0=OFF) c= Zone Page Status (0=OFF) d= 0 (This value is a constant. It will always be 0.) F=0 in HEX which is 0 a 0 b 0 c 0 d in Binary a= Zone Loudness EQ Status (0=OFF) bcd= Source Selected (0= Source < 7 see D data) G=2 in HEX which is 0 a 0 b 1 c 0 d in Binary (Ignore this value) (Ignore this value) c= 1 d= 0 H=4 in HEX which is 0 a 1 b 0 c 0 d in Binary a= 0 b= 1 c= 0 d= 0 Combine G data with H data in Binary is 24 in HEX which is 36 in decimal. This indicates the Volume is attenuated by approximately 75 %. (36 divided by 48 multiplied by 100%.) ATON 2010 All rights reserved. Page7

8 Chassis Query Response Examples (Continued) I=1 in HEX which is 0 a 0 b 0 c 1 d in Binary c= 0 d= 1 J=9 in HEX which is 1 a 0 b 0 c 1 d in Binary a= 1 b= 0 c= 0 d= 1 Combine I data with J data in Binary is 19 in HEX. Since 10 HEX is 0dB, this indicates the Treble is set to +9dB. (19 HEX {25 Decimal} - 10 HEX {16 Decimal} = 9 HEX {9 Decimal} = 9 Decimal steps above 0dB) K=0 in HEX which is 0 a 0 b 0 c 0 d in Binary c= 0 d= 0 L=6 in HEX which is 1 a 0 b 0 c 1 d in Binary a= 0 b= 1 c= 1 d= 0 Combine K data with L data in Binary is 6 in HEX. Since 10 HEX is 16 in Decimal, which is 0dB, this indicates the Bass is set to -10dB. (10 HEX {16 Decimal) -6 HEX {6 Decimal} = A HEX {10 Decimal} = 10 Decimal steps below 0dB) ATON 2010 All rights reserved. Page8

Minimum Core Module Version: g! version 5.4, requires S1616A Firmware Document Revision Date:

Minimum Core Module Version: g! version 5.4, requires S1616A Firmware Document Revision Date: Manufacturer: ELAN Integration Note Model Number(s): System S1616A (Multi-Zone Control) Minimum Core Module Version: g! version 5.4, requires S1616A Firmware 2.0.2.2 Document Revision Date: 05-25-2017

More information

Audio Integration Note

Audio Integration Note OneHome Management and Control Solutions Audio Integration Note Manufacturer: Elan Model Number(s): S8.6 OneHome Software ver. 4.0 rel 1288 or later S8.6 Firmware compatible with HomeLogic 1.0.2.1 1.0.4.1

More information

Russound Controllers. RNET Protocol & Specifications RS-232 Communication. Document version

Russound Controllers. RNET Protocol & Specifications RS-232 Communication. Document version Russound Controllers RNET Protocol & Specifications RS-232 Communication Document version 1.00.01 1 Quick Reference Guide Feature CAS44 CAA66 CAM6.6 CAV6.6 Pg. Keypad Events 13 Source Control Events 14

More information

Audio Integration Note

Audio Integration Note ELAN Home Systems Life Just Got Better Audio Integration Note Manufacturer: Elan Model Number(s): System 12 Comments: Version 5.0 (g!) requires S12 FW 2.02.00.04 Document Revision Date: 8/17/2011 OVERVIEW

More information

Communications Protocol

Communications Protocol 28 Kaysal Court, Armonk, NY 10504 914.598.1647 Communications Protocol For the Mirage Audio System Data acquisition and control of Autonomic equipment is performed by home automation systems or personal

More information

Azur 540R v3 Serial Control Protocol V1.0

Azur 540R v3 Serial Control Protocol V1.0 Azur 540R v3 Serial Control Protocol V1.0 1.1 RS232 Protocol The protocol is accessed via the RS232 protocol, i.e. a PC s rear panel com port. Notes: 1) All data consists of ASCII bytes. 2) Settings for

More information

IT-VCM MODULE. Serial Protocol Manual Version 1.02

IT-VCM MODULE. Serial Protocol Manual Version 1.02 IT-VCM MODULE Serial Protocol Manual Version 1.02 244 Bergen Blvd West Paterson NJ 07424 1-800-332-FSR1 http://www.fsrinc.com/ 43933 LIT1250A TABLE OF CONTENTS Serial Protocol...3 Version Request:... 4

More information

Minimum Core Module Versions: ELAN version 7.1 ( for streaming audio) MRA Software or above Document Revision Date: 6/9/2017

Minimum Core Module Versions: ELAN version 7.1 ( for streaming audio) MRA Software or above Document Revision Date: 6/9/2017 Manufacturer: SpeakerCraft Integration Note Model Number(s): MRA664 Minimum Core Module Versions: ELAN version 7.1 (8.1.398 for streaming audio) Comments: MRA Software 1.4.510 or above Document Revision

More information

UltraHTDAudio3 HSPI User s Guide A HomeSeer HS3 plug-in to control the Home Theater Direct (HTD) Whole-House Audio System.

UltraHTDAudio3 HSPI User s Guide A HomeSeer HS3 plug-in to control the Home Theater Direct (HTD) Whole-House Audio System. UltraHTDAudio3 HSPI User s Guide A HomeSeer HS3 plug-in to control the Home Theater Direct (HTD) Whole-House Audio System. Copyright 2016 ultrajones@hotmail.com Revised 08/17/2016 This document contains

More information

1. Read Total QTY of Big Packages for Z-Audio Album

1. Read Total QTY of Big Packages for Z-Audio Album Z-Audio2 Protocol Version: 3.6 Updated Date: March 16, 2012 Prepared By: Mendel Lin Email:Mendel@SmartHomeGroup.com 1. Read Total QTY of Big Packages for Z-Audio Album Total QTY of Album: 48 Max. Length

More information

Azur 651R/751R Serial Control Protocol V1.01

Azur 651R/751R Serial Control Protocol V1.01 Azur 651R/751R Serial Control Protocol V1.01 1.1 RS232 Protocol The protocol is accessed via COM1 i.e. the rear panel RS232C port. Header Notes: Footer Group Data 1) All data consists of ASCII bytes. #

More information

Technical Note TN15. G68 RS232 Interface. 5 th January Source Commands. Volume Commands

Technical Note TN15. G68 RS232 Interface. 5 th January Source Commands. Volume Commands Technical Note TN15 5 th January 2009 G68 RS232 Interface The RS232 interface for the G68 can be operated from any terminal which operates at 9600 baud with 1 start bit, 1 stop bit and 0 parity. Commands

More information

The physical connection to the G68 Surround Controller consists of a Null Modem / RS232C cable.

The physical connection to the G68 Surround Controller consists of a Null Modem / RS232C cable. G68 System RS232 Commands This document provides relevant RS232 commands for the Meridian G68 Surround Controller. All basic commands take the form of two ASCII characters followed by a carriage return

More information

B l e n d i n g H i g h F idelity a n d A r c h i t e c t u r e ZR-4 4-SOURCE, 4-ZONE MULTIZONE RECEIVER KIT WITH AM/FM TUNER.

B l e n d i n g H i g h F idelity a n d A r c h i t e c t u r e ZR-4 4-SOURCE, 4-ZONE MULTIZONE RECEIVER KIT WITH AM/FM TUNER. B l e n d i n g H i g h F idelity a n d A r c h i t e c t u r e ZR-4 4-SOURCE, 4-ZONE MULTIZONE RECEIVER KIT WITH AM/FM TUNER user guide Congratulations! Thank you for purchasing the Niles ZR-4 MultiZone

More information

IT-VCM MODULE. Serial Protocol Manual Firmware Version 3.04

IT-VCM MODULE. Serial Protocol Manual Firmware Version 3.04 IT-VCM MODULE Serial Protocol Manual Firmware Version 3.04 244 Bergen Blvd Woodland Park NJ 07424 1-800-332-FSR1 http://www.fsrinc.com/ 43933 LIT1250D TABLE OF CONTENTS Serial Protocol...3 Typical RS-232

More information

Control App Guide. SF-16M 16-Channel Digital Matrix Amplifier

Control App Guide. SF-16M 16-Channel Digital Matrix Amplifier Control App Guide SF-16M 16-Channel Digital Matrix Amplifier SonaFlex App The SF-16M Control app for Android and ios allows users to control their SonaFlex system without any other control method. The

More information

The physical connection to the 861 Reference System consists of a Null Modem / RS232C cable.

The physical connection to the 861 Reference System consists of a Null Modem / RS232C cable. This document provides relevant RS232 commands for the Meridian 861 Surround Processor. All basic commands take the form of two ASCII characters followed by a carriage return to execute. Once a basic command

More information

User s Guide. Digital Whole Home Audio Distribution System

User s Guide. Digital Whole Home Audio Distribution System User s Guide Digital Whole Home Audio Distribution System Document Number 62R00-1 Rev A October, 2006 Copyright 2006 Home Automation, Inc. All Rights Reserved Precautions Exposure to extremely high noise

More information

Control Interface Specification V1.1.1

Control Interface Specification V1.1.1 Control Interface Specification V1.1.1 Status: released Author: Helmut Geißer email: Helmut.Geisser@loewe.de Andreas Bauer email: Andreas.Bauer@loewe.de 1 Revision History Version Date Name Department

More information

User s Guide. Digital Whole Home Audio Distribution System. Includes 8 audio source inputs and 8 amplified audio zones

User s Guide. Digital Whole Home Audio Distribution System. Includes 8 audio source inputs and 8 amplified audio zones User s Guide Digital Whole Home Audio Distribution System FEATURES Includes 8 audio source inputs and 8 amplified audio zones Hi-Fi2 SYSTEM Optional Hi-Fi2 Expansion Kit adds 8 more zones (16 total) Super

More information

Profiler MIDI Parameter Documentation

Profiler MIDI Parameter Documentation Revision 145 Page 1 Profiler MIDI Parameter Documentation Table of Content List of Tables... 2 Introduction... 3 MIDI Commands... 3 Responses... 5 NRPN Definition... 6 Examples... 6 MIDI Channel vs. Instance...

More information

architecttm audio TELEPHONE PAGING MATRIX APPLICATION GUIDE HiQnet

architecttm audio TELEPHONE PAGING MATRIX APPLICATION GUIDE HiQnet audio HiQnet architecttm TELEPHONE PAGING MATRIX APPLICATION GUIDE TELEPHONE PAGING MATRIX APPLICATION GUIDE This Audio Architect design has a number of unique features including: Telephone Hybrid for

More information

U S E R G U I D E ICS. iremote 2-WAY WIRELESS RF SYSTEM CONTROL REMOTE WITH LCD DISPLAY

U S E R G U I D E ICS. iremote 2-WAY WIRELESS RF SYSTEM CONTROL REMOTE WITH LCD DISPLAY ICS U S E R G U I D E iremote 2-WAY WIRELESS RF SYSTEM CONTROL REMOTE WITH LCD DISPLAY CONGRATULATIONS! Introducing the iremote, the worlds first two-way wireless RF remote control with LCD display that

More information

KRAMER ELECTRONICS LTD. USER MANUAL MODEL: 905xl Power Amplifier. P/N: Rev 3

KRAMER ELECTRONICS LTD. USER MANUAL MODEL: 905xl Power Amplifier. P/N: Rev 3 KRAMER ELECTRONICS LTD. USER MANUAL MODEL: 905xl Power Amplifier P/N: 2900-300196 Rev 3 Contents 1 Introduction 1 2 Getting Started 2 2.1 Achieving the Best Performance 2 2.2 Safety Instructions 2 2.3

More information

Multi-Channel to Two-Channel

Multi-Channel to Two-Channel 4K HDR Multi-Channel to Two-Channel Audio Converter Application Programming Interface AT-HDR-M2C AT-HDR-M2C-QUAD Atlona Manuals Audio Version Information Version Release Date Notes 1 07/18 Initial release

More information

automatic video source selection is commanded preferred video input is composite, color system PAL volume is -15 db

automatic video source selection is commanded preferred video input is composite, color system PAL volume is -15 db Classé SSP-75 serial communication command set 10.4.2000/Juha Questions and corrections to: tapio.vihuri@samplerate.com Example of serial communication bold lines are commands sent to the unit, other lines

More information

velex VX High performance stereo system

velex VX High performance stereo system velex Car DAB series ---------------------------------------- High performance stereo system ---------------------------------------- VX3022-1 Instruction Manual CONTENTS FEATURES.2 ACCESSARIES SUPPLIED...2

More information

Custom Installation Notes: Serial programming interface and IR remote commands for Arcam T32 Tuner

Custom Installation Notes: Serial programming interface and IR remote commands for Arcam T32 Tuner 23425 Custom Installation Notes: Serial programming interface and IR remote commands for Arcam T32 Tuner Contents Introduction...3 Conventions...3 Serial Cable Specification...3 transfer format...3 Command

More information

RS-232 / TCP/IP Port Hardware. RS-232 / TCP/IP Port Hardware. TCP/IP Overview

RS-232 / TCP/IP Port Hardware. RS-232 / TCP/IP Port Hardware. TCP/IP Overview RS-232 / TCP/IP Port Hardware RS-232 / TCP/IP Port Hardware TCP/IP Overview The Serial and TCP/IP port share the same protocol. The TCP/IP connection is a very simple socket, sometimes referred to as Raw

More information

RV-5/MV-5. Serial Protocol Definitions. Software Version: V4.0x. Document Revision: July 2007

RV-5/MV-5. Serial Protocol Definitions. Software Version: V4.0x. Document Revision: July 2007 RV-5/MV-5 Serial Protocol Definitions Software Version: V4.0x Document Revision: July 2007 Lexicon and the Lexicon logo are registered trademarks of Harman International Industries. U.S. patent numbers

More information

INSTRUCTION 1 MANUAL

INSTRUCTION 1 MANUAL MA1801 WATERTIGHT MARINE AM/FM RADIO BLUETOOTH MULTIMEDIA SYSTEM SPECIFICATIONS GENERAL - USB Input (Rear) - 2ch Aux Inputs (Rear) - LCD Display - Clock - IP66 Watertight - Water & Salt Protection PCB

More information

This document covers the release of Auriel 2.0 for release on the Niles MRC-6430 Multi-Room Audio Chassis.

This document covers the release of Auriel 2.0 for release on the Niles MRC-6430 Multi-Room Audio Chassis. Auriel Release Notes Auriel Version: 2.0 (v2.0.75) Release Date: 6/29/2016 1.1 Overview... 1 1.2 Key Features by Release... 1 1.2.1 Auriel 2.0 Software Features...1 1.2.2 Auriel 1.4.527 Software Features...2

More information

RD-44 Audio Network Control Panel

RD-44 Audio Network Control Panel RD-44 Audio Network Control Panel Introduction: The RD-44 is designed to control the audio functions and sources of the MRD-70 marine radio and the MZ-100 DSP Zone Amplifier. With versatile mounting options,

More information

Number codes nibble byte word double word

Number codes nibble byte word double word Codes Number codes Digital circuits (like processors) represent information with two-valued binary codes. Why? Every signal wire in a digital system can transport one binary digit, or bit. A signal at

More information

Bluetooth Soundbar KASBRBTAIOA

Bluetooth Soundbar KASBRBTAIOA Bluetooth Soundbar KASBRBTAIOA Table of Contents Important Safety Information...1 Installation...2 Front Panel Functions...2 Rear Panel Functions...2 Using the Remote Control...2 Remote Control Layout...2

More information

Integration Note OVERVIEW AND SUPPORTED FEATURES. Model Number(s): SR6006, SR5006

Integration Note OVERVIEW AND SUPPORTED FEATURES. Model Number(s): SR6006, SR5006 Manufacturer: Marantz Integration Note Model Number(s): SR6006, SR5006 Core Module Version: 5.4 or newer required Document Revision Date: 1/15/2013 OVERVIEW AND SUPPORTED FEATURES Marantz receivers include

More information

Azur 851A Serial Control Protocol V1.0

Azur 851A Serial Control Protocol V1.0 Azur 851A Serial Control Protocol V1.0 1. History Based on Azur 840A (V1 & V2) and 840E Serial Control Protocol V1.1. 2. RS232 Protocol The protocol is accessed via COM1 i.e. the rear panel RS232C port.

More information

Custom Installation Notes: Serial programming interface and IR remote commands for Arcam AVR390/550/850/AV860/SR250

Custom Installation Notes: Serial programming interface and IR remote commands for Arcam AVR390/550/850/AV860/SR250 Custom Installation Notes: Serial programming interface and IR remote commands for Arcam AVR390/550/850/AV860/SR250 Contents Introduction...3 Set-up...3 Conventions...3 Command and response formats...3

More information

VM SERIES Rackmount 100V mixer-amplifiers

VM SERIES Rackmount 100V mixer-amplifiers VM SERIES Rackmount 100V mixer-amplifiers VM60, VM120, VM240Z Caution: Please read this manual carefully before operating Damage caused by misuse is not covered by the warranty Introduction Thank you for

More information

OVERHEAD AUDIO UNIT Model A10117

OVERHEAD AUDIO UNIT Model A10117 R R R OVERHEAD AUDIO UNIT Model 2879703 21A10117 R NOTES APPENDICES TROUBLESHOOTING Resetting the unit Should the overhead unit become unresponsive: Remove power for 5minutes and then reconnect. CONTENTS

More information

Antex XM-100 Satellite Receiver RS232 Control Port Command Set 6/8/05

Antex XM-100 Satellite Receiver RS232 Control Port Command Set 6/8/05 Updated 22 March, 2006 Antex XM-100 Satellite Receiver RS232 Control Port Command Set 6/8/05 This update pertains to firmware version 6.30.126. If you do not know the software version of your XM100, enter

More information

Serial Communications Protocol Definition. Project: SDP-3

Serial Communications Protocol Definition. Project: SDP-3 Serial Communications Protocol Definition Project: SDP-3 Author: Simon Jarvis Updated: January 17, 2002 JBL Synthesis Edit: Chris Neumann Major rev 0 Minor rev 3 Approvals: Engineering: Marketing: 1 of

More information

Valet App Operation Settings and Control. System Status Page

Valet App Operation Settings and Control. System Status Page Valet App Operation Settings and Control This document is meant to get the end-user (you) familiar with some basic and not-so-basic settings and controls within the Valet App. Instructions for syncing

More information

Table of Contents pg " Display pg Cruise Mode pg Map Screen pg Stereo Screen pg Depth Screen pg.

Table of Contents pg  Display pg Cruise Mode pg Map Screen pg Stereo Screen pg Depth Screen pg. USER GUIDE TABLE OF CONTENTS Table of Contents pg. 2 12.3" Display pg. 3-4 Cruise Mode pg. 5-6 Map Screen pg. 6-13 Stereo Screen pg. 14-17 Depth Screen pg. 17 Settings Screen pg. 18-24 Media Screen pg.

More information

Giove CA20-CA21 user manual

Giove CA20-CA21 user manual Giove CA20-CA21 user manual Linea GIOVE Index Giove CA20 and Giove CA21 main units ---- Front panel pag 3 ---- Rear panel and connections pag 3 ---- Giove CA20 wiring pag 4 ---- Giove CA21 wiring pag 5

More information

SYMETRIX SOLUTIONS: TECH TIP May 2014

SYMETRIX SOLUTIONS: TECH TIP May 2014 Input Logic Modules This tech tip will cover a variety of ways in which the Input Logic Module from Control Modules->Control Logics can be used within a SymNet system. Input Logic Modules are typically

More information

RS232G Protocol Version 2.6.2

RS232G Protocol Version 2.6.2 RS232G Protocol Version 2.6.2 The RS232G Protocol is standard ASCII based. The commands must include parameters (separated by commas) and terminated with a carrier return = ASCII 13. The commands

More information

MODEL TDAI-2170 INTEGRATED AMPLIFIER EXTERNAL CONTROL MANUAL

MODEL TDAI-2170 INTEGRATED AMPLIFIER EXTERNAL CONTROL MANUAL MODEL TDAI-2170 INTEGRATED AMPLIFIER EXTERNAL CONTROL MANUAL Serial Settings The serial port settings are always 8 data bits, no parity and one stop bit with a baud rate of 115200. Commands and Requests

More information

HDS Series I2C Application Notes

HDS Series I2C Application Notes HDS Series I2C Application Notes I2C Bus Interface Introduction The I2C interface of the HDS series of power supplies allows remote control and monitoring and provides the following features: 1) Retrieving

More information

AUD-340 Installation Guide

AUD-340 Installation Guide F0123456789ABC DE AUD-340 Installation Guide INPUTS CONTROL OUTPUT 24V DC 48V LINE 2 AUDIO IR RS232 COM 70V 100V 1 3 DIGITAL L R AUDIO 2.5A MAX TX RX 1 2 3 INPUT SELECT LINE BASS TREBLE MUTE 1 Safety Precautions

More information

Computer Organization

Computer Organization Computer Organization Register Transfer Logic Number System Department of Computer Science Missouri University of Science & Technology hurson@mst.edu 1 Decimal Numbers: Base 10 Digits: 0, 1, 2, 3, 4, 5,

More information

Introduction to Numbering Systems

Introduction to Numbering Systems NUMBER SYSTEM Introduction to Numbering Systems We are all familiar with the decimal number system (Base 10). Some other number systems that we will work with are Binary Base 2 Octal Base 8 Hexadecimal

More information

Chapter 3: Number Systems and Codes. Textbook: Petruzella, Frank D., Programmable Logic Controllers. McGraw Hill Companies Inc.

Chapter 3: Number Systems and Codes. Textbook: Petruzella, Frank D., Programmable Logic Controllers. McGraw Hill Companies Inc. Chapter 3: Number Systems and Codes Textbook: Petruzella, Frank D., Programmable Logic Controllers. McGraw Hill Companies Inc., 5 th edition Decimal System The radix or base of a number system determines

More information

maintenance(servicing)

maintenance(servicing) the product s enclosure,it risk of electric shock to TO REDUCE SHOCK. DO NOT REMOVE COVER(OR BACK).REFER SERVICING TO QUALIFIED SERVICE RERSONNEL. maintenance(servicing) To reduce the risk of fire or electric

More information

MR100 INSTALLATION/OWNER'S MANUAL Digital Media Marine Receiver

MR100 INSTALLATION/OWNER'S MANUAL Digital Media Marine Receiver MR100 INSTALLATION/OWNER'S MANUAL Digital Media Marine Receiver Preparation MR100 INSTALLATION Please read entire manual before installation. Before You Start Disconnect negative battery terminal. Consult

More information

POWERLINC PROGRAMMING MANUAL v1.2a

POWERLINC PROGRAMMING MANUAL v1.2a INTRODUCTION The PowerLinc from SmartHome will provide 12V 300mA DC and two-way power-line communication to any PowerLinc compatible OEM 1 unit. The PowerLinc can also be used as a direct TW523 replacement

More information

Software 4.0 Build Rel or later. Nuvo Grand Concerto FW v2.56, HWv00; M3 Server v1.60, ipod v1.53 Document Revision Date: 1/17/2013

Software 4.0 Build Rel or later. Nuvo Grand Concerto FW v2.56, HWv00; M3 Server v1.60, ipod v1.53 Document Revision Date: 1/17/2013 Manufacturer: Model Number(s): Core Module Versions: Nuvo Grand Concerto Software 4.0 Build 1452.0 Rel or later Integration Note 6.0.236 and newer includes zone controller integration only, no virtual

More information

CMPSC210 Lecture 7: Hexadecimal Numbers. Prof. John Wenskovitch 09/16/2016

CMPSC210 Lecture 7: Hexadecimal Numbers. Prof. John Wenskovitch 09/16/2016 CMPSC210 Lecture 7: Hexadecimal Numbers Prof. John Wenskovitch 09/16/2016 Last Time Binary numbers Converting from binary to decimal Converting from decimal to binary Introducing ways to represent negative

More information

RM244V and CS4. 4 Output 100V Mixer-Amp and Call Station. Item ref: UK, UK User Manual

RM244V and CS4. 4 Output 100V Mixer-Amp and Call Station. Item ref: UK, UK User Manual RM244V and CS4 4 Output 100V Mixer-Amp and Call Station Item ref: 953.144UK, 953.146UK User Manual Caution: Please read this manual carefully before operating Damage caused by misuse is not covered by

More information

AX1300BT SPECIFICATIONS: MECHLESS AM/FM MULTIMEDIA PLAYER RECEIVER BLUETOOTH w BUILT-IN SPEAKERS DESIGNED FOR AUSTRALASIAN CONDITIONS

AX1300BT SPECIFICATIONS: MECHLESS AM/FM MULTIMEDIA PLAYER RECEIVER BLUETOOTH w BUILT-IN SPEAKERS DESIGNED FOR AUSTRALASIAN CONDITIONS MECHLESS AM/FM MULTIMEDIA PLAYER RECEIVER BLUETOOTH w BUILT-IN SPEAKERS SPECIFICATIONS: GENERAL: Mechless Fixed Face Panel Ultra Memory Power Backup Built-In Speakers ISO DIN Mounting ISO Wiring harness

More information

OVERHEAD AUDIO UNIT Model A10049

OVERHEAD AUDIO UNIT Model A10049 R R R OVERHEAD AUDIO UNIT Model 2879459 21A10049 R NOTES APPENDICES TROUBLESHOOTING Resetting the unit Should the overhead unit become unresponsive: Remove power for 5minutes and then reconnect. CONTENTS

More information

Owner s Manual AWM910 JENSEN AWM910 COMPACT DISC PLAYER RADIO CD COMPACT MUSIC SYSTEM MUTE AUX BAND AUX IN PUSH PUSH PWR VOL ALARM T/F AUD SPK A SPK B

Owner s Manual AWM910 JENSEN AWM910 COMPACT DISC PLAYER RADIO CD COMPACT MUSIC SYSTEM MUTE AUX BAND AUX IN PUSH PUSH PWR VOL ALARM T/F AUD SPK A SPK B AWM910 Owner s Manual COMPACT DISC PLAYER PUSH 1 2 3 4 5 6 RPT SCAN RDM H M PUSH PWR VOL ALARM SET ON/OFF EQ T/F AUD RADIO CD COMPACT MUSIC SYSTEM MUTE AUX BAND CD AUX IN A B A+B JENSEN AWM910 Thank You!

More information

Integrated Serial Communication Protocol for MCA1120/PCA1120

Integrated Serial Communication Protocol for MCA1120/PCA1120 Integrated Serial Communication Protocol for MCA1120/PCA1120 1. Protocol Overview ISCP (Integrated Serial Control Protocol) consists of three command characters and parameter character(s) of variable length.

More information

Before starting the troubleshooting, make sure you have installed the latest version of audio driver and Nahimic on your notebook.

Before starting the troubleshooting, make sure you have installed the latest version of audio driver and Nahimic on your notebook. Nahimic Troubleshooting Instructions and Q&A Please refer to the Troubleshooting Instructions to resolve the problem, if you encounter any audio problem listed below. Audio playback: Low volume, weak,

More information

Integra DTR-20.7/30.7/40.7/50.7/60.7/DHC-60.7 Onkyo TX-NR545/646TX-RZ800/900

Integra DTR-20.7/30.7/40.7/50.7/60.7/DHC-60.7 Onkyo TX-NR545/646TX-RZ800/900 Manufacturer: Model Number(s): Core Module Version: 7.2.639 Integra/Onkyo Comments: Tested: Integra 40.7 Document Revision Date: 10/12/2015 OVERVIEW AND SUPPORTED FEATURES Integration Note Integra DTR-20.7/30.7/40.7/50.7/60.7/DHC-60.7

More information

Integration Note. Virtual Matrix: The driver offers the ability to receive the auxiliary input feed from up to six other Sonos units

Integration Note. Virtual Matrix: The driver offers the ability to receive the auxiliary input feed from up to six other Sonos units Integration Note Manufacturer: Sonos Model Number(s): Sonos ALL Models up to ver. 7.1 g! Core Module Version: 8.0.278 Driver Developer: Core Programming Limited Document Revision Date: 03/01/2017 OVERVIEW

More information

InFocus LP790 RS232 Commands

InFocus LP790 RS232 Commands InFocus LP790 RS232 Commands 1 PURPOSE... 3 2 SCOPE... 3 3 FUNCTION TYPE... 3 3.1 LEGAL ARGUMENTS....3 4 COMMAND RETURN CODES... 4 5 COMMAND SYNTAX... 4 5.1 DELIMITER...4 5.2 SEPARATOR...4 5.3 COMMAND

More information

Lecture 2: Number Systems

Lecture 2: Number Systems Lecture 2: Number Systems Syed M. Mahmud, Ph.D ECE Department Wayne State University Original Source: Prof. Russell Tessier of University of Massachusetts Aby George of Wayne State University Contents

More information

PMR4000RMKII. Control command list

PMR4000RMKII. Control command list PMR4000RMKII Control command list Command list PMR4000RMKII 1. TABLE OF CONTENT 2. OBJECTIVE... 3 3. CONFIGURE THE COMMUNICATION... 4 4. SEND COMMANDS TO PMR4000RMKII... 5 5. PMR4000RMKII Responses...

More information

Integration Note OVERVIEW AND SUPPORTED FEATURES. Model Number(s): SR5008/6008/7008

Integration Note OVERVIEW AND SUPPORTED FEATURES. Model Number(s): SR5008/6008/7008 Manufacturer: Marantz Integration Note Model Number(s): SR5008/6008/7008 Minimum Core Module Version: 6.5 Comment: Tested SR7008 FW: 5330-0346-9582 Document Revision Date: 12/30/2013 OVERVIEW AND SUPPORTED

More information

AUD-220 Installation Guide

AUD-220 Installation Guide AUD-220 Installation Guide STEREO MONO BRIDGE IR RS232 TX RX MIC 48V LINE L R MIC 1 2 INPUTS 24V DC 1 x 40W @ 8Ω 2 x 20W @ 4Ω LOOP OUTPUTS The Intelix AUD-220 is a 2x20 watt Class D amplifier with 8Ω speaker

More information

INSTRUCTION MANUAL DECKLESS CAR AUDIO PLAYER CA-2787SU. Please read the instruction manual before used.

INSTRUCTION MANUAL DECKLESS CAR AUDIO PLAYER CA-2787SU. Please read the instruction manual before used. INSTRUCTION MANUAL DECKLESS CAR AUDIO PLAYER CA-2787SU Please read the instruction manual before used. Key Function: 1. Mode Button Press to switch between RADIO/USB/SD-MMC/Aux-In Card mode. The unit preset

More information

QUICKSTART GUIDE ENGLISH ( 3 9 ) MANUAL DE INICIO RÁPIDO ESPAÑOL ( ) GUIDE D UTILISATION RAPIDE FRANÇAIS ( )

QUICKSTART GUIDE ENGLISH ( 3 9 ) MANUAL DE INICIO RÁPIDO ESPAÑOL ( ) GUIDE D UTILISATION RAPIDE FRANÇAIS ( ) QUICKSTART GUIDE ENGLISH ( 3 ) MANUAL DE INICIO RÁPIDO ESPAÑOL ( 11 17 ) GUIDE D UTILISATION RAPIDE FRANÇAIS ( 1 25 ) MANUALE RAPIDO DI UTILIZZAZIONE ITALIANO ( 27 33 ) KURZANLEITUNG DEUTSCH ( 35 41 )

More information

WS-220 BT. 4-ZONE LEVEL CONTROLLER with BLUETOOTH. WS-220 BT Specifications

WS-220 BT. 4-ZONE LEVEL CONTROLLER with BLUETOOTH. WS-220 BT Specifications HIGH PERFORMANCE AUDIO WS - 220 BT 4-ZONE BLUETOOTH CONTROLLER OWNER'S MANUAL wetsounds.com 1 ABOUT WS-220 BT 4-ZONE LEVEL CONTROLLER with BLUETOOTH WS-220 BT Specifications S/N Ratio 80dB @ 1 V Input

More information

Omnia.11 Version 1.2 Update

Omnia.11 Version 1.2 Update Omnia.11 Version 1.2 Update This update is for units currently running version 1.1(119) as shown in the Setup menu ONLY. If your unit is running an earlier version (such as v1.03), you will need to update

More information

Analyzing the command string for switch to input #

Analyzing the command string for switch to input # Marshall VSW-2200 Switcher Control Protocol Firmware Version: 3.3 Document edited 8-22-2016 (legacy command structures have been removed from this document) Serial Port (over USB) Setting: Baud rate :

More information

TABLE OF CONTENTS. Introduction...2 Communication with a device Messages from the controller Messages from the device...

TABLE OF CONTENTS. Introduction...2 Communication with a device Messages from the controller Messages from the device... TABLE OF CONTENTS Introduction...2 Communication with a device...2-3 Messages from the controller...4-5 Messages from the device...6-8 1 INTRODUCTION Phoenix provides control on some of its devices using

More information

PXR 1506 / WATT MIXER AMPLIFIER

PXR 1506 / WATT MIXER AMPLIFIER PXR 1506 / 1508 150-WATT MIXER AMPLIFIER Operating Manual www.peavey.com ENGLISH PXR 1506 / 1508 150-Watt, 8-Channel Mixer Amplifier Designed with the latest Peavey technology, the PXR 1506 / 1508 powered

More information

3950 NW 120 th Ave, Coral Springs, FL TEL FAX Ford A²B to 12-channel Analog & Digital sound processor NTV-KIT873

3950 NW 120 th Ave, Coral Springs, FL TEL FAX Ford A²B to 12-channel Analog & Digital sound processor NTV-KIT873 3950 NW 120 th Ave, Coral Springs, FL 33065 TEL 561-955-9770 FAX 561-955-9760 Ford A²B to 12-channel Analog & Digital sound processor NTV-KIT873 WARNING: Do not connect any RCA cables to the ZEN-A2B interface

More information

Presentation Switchers. digital presentation systems. Programmers Guide PS190. September, 2015 PN: DOC c

Presentation Switchers. digital presentation systems. Programmers Guide PS190. September, 2015 PN: DOC c Presentation Switchers digital presentation systems Programmers Guide PS190 September, 2015 PN: DOC-000025-00c Trademark Information Presentation Switchers, the PS Box logo or icon, and the names and marks

More information

Nahimic Troubleshooting Instructions and Q&A The document applies to all MSI Notebook and Vortex product which supports Nahimic.

Nahimic Troubleshooting Instructions and Q&A The document applies to all MSI Notebook and Vortex product which supports Nahimic. Nahimic Troubleshooting Instructions and Q&A The document applies to all MSI Notebook and Vortex product which supports Nahimic. To know whether the product supports Nahimic or not, please visit MSI website

More information

PRECAUTIONS. How to Handle Discs. Lithium Battery Cell Warnings

PRECAUTIONS. How to Handle Discs. Lithium Battery Cell Warnings CONTENTS Precautions... 1 How to Handle Discs... 1 Lithium Battery Cell Warnings... 1 Installation... 2 Prepare Radio... 2 Mount Radio... 2 Wiring Connections... 3 Uninstall the Main Unit... 4 Control

More information

KRELL EVOLUTION 2 STATUS FEEDBACK DESCRIPTION

KRELL EVOLUTION 2 STATUS FEEDBACK DESCRIPTION KRELL EVOLUTION 2 STATUS FEEDBACK DESCRIPTION Version 1.0 Wednesday, April 18, 2007 OVERVIEW The Evolution 2 (Evo-2) can report back it s operational status via the RS232 port. The system reports it s

More information

Antex SRX-3 TriplePlay Multizone Satellite Receiver. RS232 Control Port Command Set 4/22/2004

Antex SRX-3 TriplePlay Multizone Satellite Receiver. RS232 Control Port Command Set 4/22/2004 Page 1 of 7 Antex SRX-3 TriplePlay Multizone Satellite Receiver RS232 Control Port Command Set 4/22/2004 This document describes the commands needed to access various functions of the Antex SRX-3 TriplePlay

More information

DM-1 Installation & User Guide V 4.0

DM-1 Installation & User Guide V 4.0 DM-1 Installation & User Guide V 4.0 Cloud Electronics Limited 140 Staniforth Road, Sheffield, S9 3HF England Tel +44 (0) 114 244 7051 Fax +44 (0) 114 242 5462 E-mail info@cloud.co.uk Web site http://www.cloud.co.uk

More information

Mercedes Benz NTG5+ MOST150 to 12-channel Analog & Digital sound processor NTV-KIT871

Mercedes Benz NTG5+ MOST150 to 12-channel Analog & Digital sound processor NTV-KIT871 3950 NW 120 th Ave, Coral Springs, FL 33065 TEL 561-955-9770 FAX 561-955-9760 Mercedes Benz NTG5+ MOST150 to 12-channel Analog & Digital sound processor NTV-KIT871 WARNING: Do not connect any RCA cables

More information

QC External Devices (EXD)

QC External Devices (EXD) 1 2 QC External Devices (EXD) QC Version 6.1, db-lab 210 Features GPIB compliant protocols (IEEE 488 & 488.2) Communicates with any GPIB device for control, measurement and data acquisition Device status

More information

SmartAudio: SSA Feature Summary

SmartAudio: SSA Feature Summary As part of the line of Savant SmartSystems control solutions, the SmartAudio (SSA-3000) delivers 6 x 8 audio distribution and integrated control in a U fanless enclosure. SmartAudio delivers stereo preamp

More information

PCD-FDE1 Network Controller Installation Manual

PCD-FDE1 Network Controller Installation Manual PCD-FDE1 Network Controller Installation Manual Product Overview Perkins Innovation PCD-FDE1 provides direct access and remote control of a Russound multiroom audio system from an Apple iphone, ipod touch,

More information

MODBUS Network Communication

MODBUS Network Communication MODBUS Network Communication The IP3416 and IP99 use the MODBUS protocol, originally standardized by Modicon and is used widely in the PLC industry. For instance, many graphic interface packages available

More information

Moodle WILLINGDON COLLEGE SANGLI. ELECTRONICS (B. Sc.-I) Introduction to Number System

Moodle WILLINGDON COLLEGE SANGLI. ELECTRONICS (B. Sc.-I) Introduction to Number System Moodle 1 WILLINGDON COLLEGE SANGLI ELECTRONICS (B. Sc.-I) Introduction to Number System E L E C T R O N I C S Introduction to Number System and Codes Moodle developed By Dr. S. R. Kumbhar Department of

More information

AX430 AM/FM CASSETTE PLAYER WITH CD CHANGER CONTROL

AX430 AM/FM CASSETTE PLAYER WITH CD CHANGER CONTROL Ω Ω 2002/11 (C/A) Ω Ω Ω (155 mm) (19 mm) (178 mm) (188 mm) Clarion Co., Ltd. All Rights Reserved. Copyright 2002: Clarion Co., Ltd. (50 mm) (58 mm) PE-1712K-E 280-7890-00 Owner s manual AX430 AM/FM CASSETTE

More information

Importing Part Information in Sage BusinessWorks 2012

Importing Part Information in Sage BusinessWorks 2012 Importing Part Information in Sage BusinessWorks 2012 Sage BusinessWorks Accounting import format requirements: 1. The import file must be in a comma delimited variable (.CSV) text format. Each field can

More information

The Music Lovers Line. Integrated Amplifier Receiver NEW PRODUCT BULLETIN

The Music Lovers Line. Integrated Amplifier Receiver NEW PRODUCT BULLETIN Integrated Amplifier Receiver The Music Lovers Line Inherited from the superb A-S2000 amplifier: purity of sound and elegance of design. Created by those obsessed with great sound, for those who love great

More information

Octal & Hexadecimal Number Systems. Digital Electronics

Octal & Hexadecimal Number Systems. Digital Electronics Octal & Hexadecimal Number Systems Digital Electronics What, More Number Systems? Why do we need more number systems? Humans understand decimal Check out my ten digits! Digital electronics (computers)

More information

SE311: Design of Digital Systems

SE311: Design of Digital Systems SE311: Design of Digital Systems Lecture 3: Complements and Binary arithmetic Dr. Samir Al-Amer (Term 041) SE311_Lec3 (c) 2004 AL-AMER ١ Outlines Complements Signed Numbers Representations Arithmetic Binary

More information

Quickstart Guide (English)

Quickstart Guide (English) Quickstart Guide (English) Introduction 1. Make sure all items listed in the Box Contents are included in the box. Look in the box under the foam sheet for the speaker stand rubber feet, speaker stand

More information

INSTRUCTION MANUAL CAR RADIO RECEIVER / MP3 PLAYER WITH BULETOOTH HAND FREE SYSTEM TUNING / SEEK UP / DOWN NEXT/ BACK BUTTON LCD DISPLAY RANDOM

INSTRUCTION MANUAL CAR RADIO RECEIVER / MP3 PLAYER WITH BULETOOTH HAND FREE SYSTEM TUNING / SEEK UP / DOWN NEXT/ BACK BUTTON LCD DISPLAY RANDOM INSTRUCTION MANUAL CAR RADIO RECEIVER / MP3 PLAYER WITH BULETOOTH HAND FREE SYSTEM TUNING / SEEK UP / DOWN NEXT/ BACK LCD DISPLAY AUX TALK CANCEL/ SRC ENCODER VOLUME KNOB MENU PLAY/ PAUSE INTRO REPEAT

More information

Using LabVIEW to Send Commands via RS232 to Ontrack Control Systems ADR Interfaces

Using LabVIEW to Send Commands via RS232 to Ontrack Control Systems ADR Interfaces Using LabVIEW to Send Commands via RS232 to Ontrack Control Systems ADR Interfaces ADR112 DAQ Board ADR101 RS232 Data Acquisition Interface DAQ Ontrack company s lowest-cost solution. RS232 to 8 digital

More information

Beyond NEW PRODUCT BULLETIN

Beyond NEW PRODUCT BULLETIN Beyond Reproducing sound with rich musicality thanks to the ToP-ART high sound quality design concept, these amps inherit a refined, beautiful appearance while providing digital inputs for connecting a

More information