BEN Series LFD EX-LINK Guide

Slides:



Advertisements
Similar presentations
Digital Audio Mics and connections.
Advertisements

Number Systems and Codes
NUMBER SYSTEM. How to convert hexadecimal numbers to decimal numbers? 230 Working from right to left, MULTIPLY each position with 8 raised to the power.
Decimal Addition What is going on? (carry) (subtract the base)
Data Transformations COMPUTE and RECODE Commands.
Serial Communications Standards (Partly Excerpted from Simpl Primer) Cabling Configuration Protocol.
1 For review question 10, you have a wireless bridge generating a 100 mW signal. The antenna cable and connectors create 3 dB of signal loss, and the antenna.
Serial Port I/O Serial port sends and receives data one bit at a time. Serial communication devices are divided into: Data Communications Equipment (DCE),
Numbering Systems CS208.
Why??  Percents are all around us! Sales and discounts shopping Sales Tax Income Taxes Tips on restaurant bills Etc…  When doing problems with % remember.
Inverse Operations ExpressionInverse Operation How do you get the variable by itself? x + 5 x x x ÷ 20 x3x3.
Modem A Presentation Department of Computer Engineering,
CPS120: Introduction to Computer Science Computer Math: Converting to Decimal.
1 © 2015 Samsung Electronics America - Confidential SMART Signage TV: RM Series LFD and MagicInfo Express.
Chapter 19 Number Systems. Irvine, Kip R. Assembly Language for Intel-Based Computers, Translating Languages English: Display the sum of A times.
1 Press Ctrl-A ©G Dear 2010 – Not to be sold/Free to use Converting Bits and Bytes Stage 6 - Year 11 Applied Mathematic (Preliminary General 1)
Audio Technology Microphone Polar Patterns. OmnidirectionalShotgun.
OPERATIONS USING FRACTIONS. 1. Add, subtract, multiply and divide fractions with and without a calculator. 2. Convert between equivalent forms of fractions.
For ‘Rule of 10s and 3s Example 4’ we have an access point transmitting at 30 mW. The cable and connector between the access point and the antenna create.
Hexadecimal. Overview Hexadecimal (hex) ~ base 16 number system Use 0 through 9 and... A = 10 B = 11 C = 12 D = 13 E = 14 F = 15.
Digital Systems and Binary Numbers
DECIMALBINARY a) b) c) d) e) f) Revision Exercise DECIMALBINARY a) b) c)
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
Irvine, Kip R. Assembly Language for Intel-Based Computers 6/e, Signed Integers The highest bit indicates the sign. 1 = negative, 0 = positive.
ECE 362 Microprocessor Systems and Interfacing ©5-1 Lecture 1 Hexadecimal Computation Outline n Decimal n Binary n Octal n Hexadecimal.
MIDI. MIDI, which means: Musical Instrument Digital Interface, is a digital communications protocol. In August of 1983, music manufacturers agreed on.
The Hexadecimal System is base 16. It is a shorthand method for representing the 8-bit bytes that are stored in the computer system. This system was chosen.
1 © 2015 Samsung Electronics America - Confidential Digital Signage Modernized: Samsung Smart Signage Platform (SSSP)
Base 16 (hexadecimal) Uses the decimal digits and the first letters of the alphabet to encode 4 binary bits (16=2 4 ) abcdef or ABCDEF.
Modem. Introduction: A modem [Modulator -Demodulator] is a device. Data communication means transmitting digital information form one computer to other.
SMART Signage TV: RM / RH Series LFD and MagicInfo Express 2
Unbalanced Signal A two wire cable is used
1 © 2016 Samsung Electronics America - Confidential Introducing MagicInfo Lite I 4.0.
Samsung Ex-link RS-232 Control
Samsung Ex-link RS-232 Control
What is a byte? What is it? How would you use it?
Digital Systems and Binary Numbers
Digital Systems and Binary Numbers
Calculating Percent Change
Introducing MagicInfo Lite I 4.1
Samsung Ex-link RS-232 Control
MagicInfo Family Overview: Features, Players, and Licensing
Easy Digital Signage: MagicInfo Express 2
Serial Communications
USB Project (15th July) Ian Coulter.
Mediabridge cables at mediabridgeproducts.com
Auxiliary 3.5mm Jack ( Standard of Smart phones and Headphones stereo jack Auxiliary 3.5mm Jack both side Cable.
Introducing MagicInfo Lite
Modem A Presentation Department of Computer Engineering,
Number Systems Base 2, 10, 16.
Interfaces – Types of Signals and communications with other devices
LFD Firmware: Updating Via USB Q
MagicInfo Family Overview: Features, Players, and Licensing
Lesson 2.1 How do you use properties of addition and multiplication?
Easy Digital Signage: MagicInfo Express 2 Q
The centronics port Interfacing to a PC.
Converting Repeating Decimals to Fractions
Digital Electronics and Microprocessors
Objective - To add and subtract decimals.
Samsung Support: Before and After the Sale Q
Chapter 6 Transmission of Digital Data Interfaces and Modems
Calculating Percent Change
Addition & Subtraction Addition & Subtraction
BEN Series LFD EX-LINK Guide
Easy Digital Signage: MagicInfo Express 2 Q
MagicInfo Family Overview: Features, Players, and Licensing
Samsung Support: Before and After the Sale Q
LFD Firmware: Updating Via USB Q
Introducing MagicInfo 6
Presentation transcript:

BEN Series LFD EX-LINK Guide Q3 2018

EX-LINK Control EX-LINK is a Samsung branding for industry standard RS232C serial control protocols. This was originally developed for the Consumer TV product line, and is now being used in the BEN series of Commercial LFD products. The following guide will cover: Samsung EX-LINK code structure Checksum calculation Connector pin-outs

EX-LINK Code Structure EX-LINK codes are based on a 7 byte code structure: Bytes 1 and 2 should not be changed, they are a fixed value. Bytes 3 through 5 are the command bytes, for the command you wish to issue. Byte 7 is the checksum of Bytes 1 through 6. For Example – Setting a tuner channel change command to a specific channel: Byte 3 = 0x4 – Channel Direct Tuning Byte 4 = 0x80 – DTV/ATV selection (set to DTV) Byte 5 = 0x10 – Major channel in DTV, multiplied by 4, converted to hex Byte 6 = 0x2 – Minor channel in DTV Byte 7 = 0x40 – Checksum for Bytes 1-6 Thus the full command string would be 0x8 0x22 0x4 0x80 0x10 0x2 0x40 Byte 1 Byte 2 Byte 3 Byte 4 Byte 5 Byte 6 Byte 7 0x08 0x22 Command 1 Command 2 Command 3 Variable Checksum

EX-LINK Checksum Calculation To calculate the checksum for the EX-LINK command string: Using a hexadecimal capable calculator, add the base hex values for each byte (removing the prefix 0x from each number). For example: 0x8 0x22 0x4 0x80 0x10 0x2 becomes 8 22 4 80 10 2 Take the resulting sum, and convert it from hexadecimal, to decimal. For example (in hex) 8+22+4+80+10+2 = C0 C0 in decimal is 192 Take the resulting decimal sum, and calculate it’s inverse (subtract the value from 255). For example: 255-192 = 63 Add 1 to the resulting inverse. For example: 63 + 1 = 64 Convert the resulting sum back to hexadecimal. For example, the decimal value 64 is 40 in hexadecimal. So the resulting checksum would be 0x40 following this string

EX-LINK Pinouts Samsung EX-LINK ports use a 3.5MM stereo audio style jack, Tip-Ring-Sleeve (TRS). These can be adapted to standard DB9 connectors using off-the-shelf adapter cables. 1 2 3 4 5 6 7 8 9 T R S Pin 2 / Tip = Received Data Pin 3 / Ring = Transmitted Data Pin 5 / Sleeve = Signal Ground

Thanks for Attending! 1 (866) 754-6450 samsunglfd@brawnconsulting.com For more information, contact your local Samsung representative, or Brawn Consulting: 1 (866) 754-6450 samsunglfd@brawnconsulting.com Jonathan Brawn Principal Brawn Consulting E: jonathan@brawnconsulting.com Brian Kosich Engineering Services Manager Brawn Consulting E: brian@brawnconsulting.com Thanks for Attending!