User manual | F50 www.barco.com

Add to my manuals
22 Pages

advertisement

User manual | F50 www.barco.com | Manualzz
Communication Protocol
www.barco.com
F50
Contents
Setting up LAN communication.............................................................................................................................4
Connecting to the projector............................................................................................................................................... 4
Setting up RS232 communication.........................................................................................................................4
Connect to the projector.................................................................................................................................................... 4
RS232 Communication parameters................................................................................................................................... 4
Communication Protocol.......................................................................................................................................5
Timing............................................................................................................................................................................... 5
Overview............................................................................................................................................................................ 5
Message body................................................................................................................................................................... 5
Mnemonic......................................................................................................................................................................... 5
Modifiers............................................................................................................................................................................ 5
Acknowledge/Response.................................................................................................................................................... 6
Examples........................................................................................................................................................................... 6
ASCII protocol......................................................................................................................................................9
Value tables........................................................................................................................................................16
Communication protocoll
2
Rev. 1.2
This page is Intentionally left blank
Communication protocoll
3
Rev. 1.2
Setting up LAN communication
The projector is shipped with a set of default settings, these are as follows:
Description
Value
DHCP
On
IP address
0.0.0.0
Subnet mask
0.0.0.0
Default gateway
0.0.0.0
TCP/UDP port
1025
Before you connect the projector to your LAN make sure that the IP settings are set correct according to your LAN configuration.
IP settings can be changed from OSD. It can be set automatically by using DHCP (Dynamic Host Configuration Protocol) or manually
by disabling DHCP and set IP address, Subnet mask and Gateway.
When enabling DHCP please allow up to a minute for the projector to receive IP settings from the DHCP server. The IP address will be
updated and shown in the OSD.
If there is no DHCP server in the network the projector will be assigned a “zero configuration” address, 169.254.0.0/16.
To renew an IP address, select “renew” in the OSD (setup->network).
Connecting to the projector
You have two options regarding how to make the physical connection to the projector. You can either use a crossover twisted pair (TP)
cable directly from the computer to the projector, or two straight-through TP cables with a HUB or a switch between them.
When the projector is set up with proper IP settings, you should be able to control it.
Setting up RS232 communication
Connect to the projector
Connect the projector and host using a standard serial cable with 9-pin female to the host, and 9-pin male to the projector. Pin 2
connects to pin 2, pin 3 connects to pin 3 and pin 5 connects to pin 5.
RS232 Communication parameters
Table 1 shows supported rs232 settings:
Parameter
Data
Baud rate
19200
Parity
N
Databits
8
Stopbits
1
Flowcontrol
None
Table 1: RS232 parameters
Communication protocoll
4
Rev. 1.2
Communication Protocol
This section describes how to use the communication protocol to control projectors remotely.
When the projects are connected to either RS232 or LAN you can control the projectors through this ASCII based protocol.
Note: Some commands will generate OSD feedback. This can be turned off from the projector’s menu system or by setting
“OSDC” to value 0 (OSD off) or value 1 (OSD show only warnings).
Timing
General timing constraints:
• Wait 30 seconds after power on before sending next command.
• Wait for response before sending next command.
• Minimum 2 seconds delay before resending if no response received.
• Minimum 500ms delay between commands.
• Minimum 5 seconds delay after sending 20 commands
Overview
The protocol has the following definition:
HEADER
SEPARATOR
ADDRESS
SEPARATOR
MESSAGE BODY
TERMINATOR
1 byte
1 byte
1 -3 bytes
1 byte
N bytes
1 byte
Field
Description
Comment
Header
ASCII character ‘:’
Required
Separator
ASCII character ‘space’
Optional
Address
1 – 3 bytes address
Optional
Terminator
CR carriage return (0x0D)
Required
Message body
The message body structure is as follows:
MNEMONIC
SEPARATOR]
MODIFIER
SEPARATOR
VALUES
SEPARATOR
TARGET
1 byte
1 byte
1 -3 bytes
1 byte
N bytes
1 byte
N bytes
Field
Description
Comment
Mnemonic
4 bytes key identifier, not case sensitive
Required
Modifer
Single char symbol
Optional
Values
N bytes value (max 6 bytes)
Optional
Target
N bytes value (max 4 bytes)
Optional
Separator
ASCII character ‘space’
Optional
Mnemonic
The Mnemonic is 4 bytes key identifier, know as the ASCII command.
Example: POWR, SABS, IDVI
Modifiers
R
Relative change. Value given will be relative to the existing value.
Example: :BRIG R10 will increase brightness with 10 steps
A
Request acknowledges. This modifier is only used to read back
the result of the command.
Default all commands send acknowledges so this will not be
necessary.
Default all commands send acknowledges so this will not be
necessary.
?
Get current value
?M
Get maximum value
?N
Get minimum value
?D
Get default value
?S
Get default step value
Communication protocoll
5
Rev. 1.2
Acknowledge/Response
Acknowledge is optional and ON by default. Auto acknowledge can be turned on and off with ECHO commad. It can also be activated
on a per command basis using modifier A.
ACK
ADDRESS
SEP
COMMAND
SEP
VALUE
TERM
1 byte
3 bytes
1 byte
4 bytes
1 byte
6 bytes
1 byte
Field
Description
Comment
ACK
ASCII character ‘%’
Always
SEP
ASCII space
Always
VALUE
6 bytes return value
Always
TERM
Termination char 0x0D (CR)
Always
Most commands value returns the actual value of the requested command. If the requested command is not valid the response may
include an error message.
Code
Error message
Description
!00001
Access denied
Current access level is too low
!00002
Not available
Command currently not available
Example:
Contrast is not available when the
projector is searching for sources
!00003
Not implemented
Command to implemented
!00004
Value out of range
Value out of range
Some commands could return a value that is more than 6 characters, for instance strings.
Code
Extended info
Description
e00001
Extended info, string
A description string follows
Example:
> :seri ?
> %001 SERI e00001 07010001
Examples
The protocol accepts one single SPACE between fields, or no SPACE between fields.
‘CR’ ASCII value carriage return, hex value 0x0D.
SET-commands
SET POWER ON
:
P
O
W
R
1
‘CR’
:POWR1’CR’
ACKNOWLEDGE POWER ON
%
0
0
1
P
O
W
R
0
0
0
0
0
1
‘CR’
%001 POWR 000001’CR’
SET BRIGHTNESS TO 60
:
B
R
I
G
6
0
‘CR’
:BRIG 60’CR’
ACKNOWLEDGE BRIGHTNESS
%
0
0
1
B
R
I
G
0
0
0
0
6
0
‘CR’
%001 BRIG 000060’CR’
Communication protocoll
6
Rev. 1.2
INCREMENT CONTRAST
:
C
N
T
R
R
1
‘CR’
:CNTR R1’CR’
ACKNOWLEDGE INCREMENT CONTRAST
%
0
0
1
C
N
T
R
0
0
0
0
6
1
‘CR’
%001 CNTR 000061’CR’
DECREMENT CONTRAST with 2 steps
:
C
N
T
R
R
-
2
‘CR’
:CNTR R-2’CR’
ACKNOWLEDGE INCREMENT CONTRAST
%
0
0
1
C
N
T
R
0
0
0
0
5
9
‘CR’
%001 CNTR 000059’CR’
SET-commands with target
SET ASPECT TRIGGER BEHAVIOR 16:10 to off
:
T
A
T
B
1
3
‘CR’
:TATB 1 3’CR’
ACKNOWLEDGE SET ASPECT TRIGGER BEHAVIOR 16:10
%
0
0
1
T
A
T
B
0
0
0
0
0
1
‘CR’
%001 TATB 000001’CR’
GET-commands
GET current value CONTRAST
:
C
N
T
R
?
‘CR’
CNTR?’CR’
ACKNOWLEDGE CONTRAST GET
%
0
0
1
C
N
T
R
0
0
0
0
5
9
‘CR’
%001 CNTR 000059’CR’
GET minimun value BRIGHTNESS
:
B
R
I
G
?
N
‘CR’
:BRIG ?N’CR’
ACKNOWLEDGE BRIGHTNESS GET MIN
%
0
0
1
B
R
I
G
0
0
0
0
0
0
‘CR’
%001 CNTR 000000’CR’
GET-commands with target
GGET ASPECT TRIGGER BEHAVIOR 16:10
:
T
A
T
B
?
3
‘CR’
: TATB ? 3
ACKNOWLEDGE GET ASPECT TRIGGER BEHAVIOR 16:10 off
%
0
0
1
T
A
T
B
0
0
0
0
0
1
‘CR’
%001 TATB 000001 ’CR’
Communication protocoll
7
Rev. 1.2
This page is Intentionally left blank
Communication protocoll
8
Rev. 1.2
ASCII protocol
Showing all properties for available commands.
Command
Description
Platforms
Operations
supported
Comments
POWR
Power
GP9
Get, Set
0 - power off, 1 - power on
POST
Power state
GP9
Get
See value table POST
IABS
Set source abs values
GP9
Get, Set
See value table IABS
IVGA
Select VGA
GP9
Get, Set
IDVI
Select DVI
GP9
Get, Set
IHDM
Select HDMI
GP9
Get, Set
IDIP
DisplayPort
GP9
Get, Set
IHDB
HDBaseT
GP9
Get, Set
ISDI
SDI
GP9
Get, Set
1 - SDI 1, 2 - SDI 2
ISTS
Signal Status
GP9
Get
0 - searching 1 - locked to source
TDSM
3D
GP9
Get, Set
See value table TDSM
TDGT
Glass type
GP9
Get, Set
0 - DLP Link™, 1 - IR
TDGD
Genlock phase delay
GP9
Get, Set
TDSE
Swap eyes
GP9
Get, Set
Soure selection
1 - DisplayPort 1, 2 - DisplayPort 2
3D
0 - off, 1 - on
3D->dual head setup
IABS
Set source abs value for left eye
See value table IABS
IABS
Set source abs value for right eye
See value table IABS
Picture
PRES
Select profile
GP9
Get, Set
See value table PRES
GABS
Set Gamma abs value
GP9
Get, Set
See value table GABS
GAFI
Select Gamma Film
GP9
Get, Set
1 - Film 2.2, 2 - Film 2.6, 3 - Film 2.4,
4 - Film 2.8
GAVI
Select Gamma Video
GP9
Get, Set
1 - Video 1, 2 - Video2
GACO
Select Gamma Computer
GP9
Get, Set
1 - Computer 1, 2 - Computer 2
LPW1
Lamp Power
GP9
Get, Set
RESP
Select profile to reset
GP9
Get, Set
RESP
Reset selected profile
GP9
Get, Set
ENAP
Enable power user profiles
GP9
Get, Set
BRIG
Brightness
GP9
Get, Set
CNTR
Contrast
GP9
Get, Set
CSAT
Saturation
GP9
Get, Set
SABS
Set Scaling abs value
GP9
Get, Set
S1T1
Select Scaling 1:1
GP9
Get, Set
S169
Select Scaling 16:9
GP9
Get, Set
SS43
Select Scaling 4:3
GP9
Get, Set
SFLA
Select Scaling FillAll
GP9
Get, Set
SFAR
Select Scaling FillAspectRatio
GP9
Get, Set
S235
Select Scaling Fill 2.35:1
GP9
Get, Set
PRST
Picture Reset
GP9
Get, Set
PMUT
Picture Mute
GP9
Get, Set
AUTO
Auto adjust current source
GP9
Set
FRZE
Freeze Image
GP9
Get, Set
Communication protocoll
9
0 - current profile, 1 - all profiles
0 - disable, 1 - enable
See value table SABS
0 - disable, 1 - enable
0 - disable, 1 - enable
Rev. 1.2
Description
Platforms
Operations
supported
Comments
BCCR
BrilliantColor Control
GP9
Get, Set
See value table BCCR
CMOD
Color Management Enable
GP9
Get, Set
0 - disable, 1- enable
CMWH
Color Managmenet White
GP9
Get, Set
0 - temperature, 1 - coordinate
CMTV
Color Management Temperature
GP9
Get, Set
3200 - 9300
CMXV
Color Management X-Coordinate
GP9
Get, Set
CMYV
Color Management Y-Coordinate
GP9
Get, Set
RD65
Reset to D65
GP9
Set
RWHN
Reset white point to native
GP9
Set
Command
Picture->RealColor
Picture->RealColor->desired values
DSCR
Desired Coords Mode
GP9
Get, Set
BAGA
Balanced Gains
GP9
Get, Set
DSRX
Desired Red X
GP9
Get, Set
DSRY
Desired Red Y
GP9
Get, Set
DSRG
Desired Red Gain
GP9
Get, Set
DSGX
Desired Green X
GP9
Get, Set
DSGY
Desired Green Y
GP9
Get, Set
DSGG
Desired Green Gain
GP9
Get, Set
DSBX
Desired Blue X
GP9
Get, Set
DSBY
Desired Blue Y
GP9
Get, Set
DSBG
Desired Blue Gain
GP9
Get, Set
DSCX
Desired Cyan X
GP9
Get, Set
DSCY
Desired Cyan Y
GP9
Get, Set
DSCG
Desired Cyan Gain
GP9
Get, Set
DSMX
Desired Magenta X
GP9
Get, Set
DSMY
Desired Magenta Y
GP9
Get, Set
DSMG
Desired Magenta Gain
GP9
Get, Set
DSYX
Desired Yellow X
GP9
Get, Set
DSYY
Desired Yellow Y
GP9
Get, Set
DSYG
Desired Yellow Gain
GP9
Get, Set
DSWX
Desired White X
GP9
Get, Set
DSWY
Desired White Y
GP9
Get, Set
DSWG
Desired White Gain
GP9
Get, Set
RCMN
Reset all desired values to native
GP9
Set
Picture->RealColor calibration
CMTP
Color calibration test image
GP9
Get, Set
CMPP
Color processed test image
GP9
Get, Set
Picture->RealColor calibration->measured values
MSWX
Measured White X
GP9
Get, Set
MSWY
Measured White Y
GP9
Get, Set
MSWL
Measured White Luminance
GP9
Get
MSRX
Measured Red X
GP9
Get, Set
MSRY
Measured Red Y
GP9
Get, Set
MSRL
Measured Red Luminance
GP9
Get, Set
MSGX
Measured Green X
GP9
Get, Set
MSGY
Measured Green Y
GP9
Get, Set
MSGL
Measured Green Luminance
GP9
Get, Set
Communication protocoll
10
Rev. 1.2
Command
Description
Platforms
Operations
supported
Comments
Picture->RealColor calibration->measured values
MSBX
Measured Blue X
GP9
Get, Set
MSBY
Measured Blue Y
GP9
Get, Set
MSBL
Measured Blue Luminance
GP9
Get, Set
MSDX
Measured BC1 X
GP9
Get, Set
MSDY
Measured BC1 Y
GP9
Get, Set
MSDL
Measured BC1 Luminance
GP9
Get, Set
MSEX
Measured BC2 X
GP9
Get, Set
MSEY
Measured BC2 Y
GP9
Get, Set
MSEL
Measured BC2 Luminance
GP9
Get, Set
HPOS
Horizontal position
GP9
Get, Set
For VGA only
VPOS
Vertical position
GP9
Get, Set
For VGA only
PHSE
Phase
GP9
Get, Set
For VGA only
FREQ
Frequency
GP9
Get, Set
For VGA only
DCSP
Color Space
GP9
Get, Set
0 - auto, 1 - RGB, 2 - YCbCr 709, 3 YCbCr 601
DVST
Input Level
GP9
Get, Set
0 - auto, 1 - computer, 2 - video
0 - disable, 1 - enable
Picture->Advanced
Picture->Advanced->source correction
IBCO
Individual brightness and contrast
offset adjustments
GP9
Get, Set
BOR0
Brightness offset red
GP9
Get, Set
BOG0
Brightness offset green
GP9
Get, Set
BOB0
Brightness offset blue
GP9
Get, Set
COR0
Contrast offset red
GP9
Get, Set
COG0
Contrast offset green
GP9
Get, Set
COB0
Contrast offset blue
GP9
Get, Set
ACAL
AD calibration
GP9
Set
ORIE
Select Orientation abs value
GP9
Get, Set
DESK
Select Orientation Desktop Front
GP9
Get, Set
CEIL
Select Orientation Ceiling Front
GP9
Get, Set
RDES
Select Orientation Desktop Rear
GP9
Get, Set
RCEI
Select Orientation Ceiling Rear
GP9
Get, Set
SCAN
Source Scan
GP9
Get, Set
0 - disable, 1 - enable
IR01
IR front Enable
GP9
Get, Set
0 - disable, 1 - enable
IR02
IR rear Enable
GP9
Get, Set
0 - disable, 1 - enable
OSDC
OSD Enable
GP9
Get, Set
See value table OSDC
TEST
Test Image
GP9
Get, Set
0 - off, 1 - 7 different test patterns
SVGA
Sync termination VGA
GP9
Get, Set
0 - 2.2kOhm, 1 - 75Ohm
SSY1
Sync termination SYNC1
GP9
Get, Set
0 - 2.2kOhm, 1 - 75Ohm
SSY2
Sync termination SYNC2
GP9
Get, Set
0 - 2.2kOhm, 1 - 75Ohm
SSY3
Sync termination SYNC3
GP9
Get, Set
0 - 2.2kOhm, 1 - 75Ohm
DPE1
DisplayPort 1 eq
GP9
Get, Set
0 - normal, 1 - high
DPE2
DisplayPort 2 eq
GP9
Get, Set
0 - normal, 1 - high
DHED
picture by picture
GP9
Get, Set
See value table EDIR
EDIR
Edid resolution
GP9
Get, Set
See value table EDIT
EDIT
Edid type
GP9
Get, Set
See value table EDIT
Installation
Communication protocoll
11
See value table ORIE
Rev. 1.2
Command
Description
Platforms
Operations
supported
Comments
Installation->synchronization
FLSO
2D frame lock source
GP9
Get, Set
0 - source, 1 - SYNC1, 2 - SYNC 2,
3 - SYNC 3
FLO1
SYNC 1 2D output mode
GP9
Get, Set
FLO2
SYNC 2 2D output mode
GP9
Get, Set
FLO3
SYNC 3 2D output mode
GP9
Get, Set
TSLR
3D source sync
GP9
Get, Set
TDLR
3D display sync
GP9
Get, Set
TBO1
SYNC 1 3D output mode
GP9
Get, Set
TBO2
SYNC 2 3D output mode
GP9
Get, Set
TBO3
SYNC 3 3D output mode
GP9
Get, Set
FLST
FrameLock Status
GP9
Get
FCRE
Factory Reset
GP9
Set
FCRL
Factory reset level
GP9
Get, Set
PINC
PIN Code
GP9
Set
DHCP
DHCP enable change
GP9
Get, Set
ETAP
Ethernet apply changes
GP9
Set
CODE
Service Code
GP9
Set
ECOP
standby ECO mode
GP9
Get, Set
0 - disable, 1 - enable
DPMS
DPMS
GP9
Get, Set
0 - disable, 1 - enable
DPMT
DPMS Timeout
GP9
Get, Set
in minutes
LMUT
LED indicators mute
GP9
Get, Set
0 - off, 1 - on
MNUT
Menu Timeout
GP9
Get, Set
See value table MNUT
BACK
Background color
GP9
Get, Set
0- white, 1 - gray, 2 - black
SPLH
Splash
GP9
Get, Set
0 - black, 1 - logo
BAUD
Baudrate
GP9
Get, Set
See value table BAUD
Language
GP9
Get, Set
See value table LANG
PART
Part Number String
GP9
Get
SERI
Serial Number String
GP9
Get
MAYR
Manufacture Year
GP9
Get
MAWE
Manufacture Week
GP9
Get
SVER
Software Version
GP9
Get
CWT1
Color wheel type
GP9
Get
LRM1
Lamp1 Estimated Remaining Lamp
Time
GP9
Get
LTR1
Lamp1 Runtime
GP9
Get
UTOT
Unit Time Total
GP9
Get
LPW1
Lamp Power
GP9
Get, Set
IPAD
IP address
GP9
Get
Settings
0 - limited, 1 - full
Language
LANG
Status
Communication protocoll
12
Rev. 1.2
Command
Description
Platforms
Operations
supported
Comments
Status->synchronisation information
TDSM
3D
GP9
Get, Set
See value table TDSM
FLSO
2D frame lock source
GP9
Get, Set
0 - source, 1 - SYNC1, 2 - SYNC 2,
3 - SYNC 3
FLFS
2D framelock frequency
GP9
Get
FLSS
2D framelock status
GP9
Get
FLPH
2D framelock phase
GP9
Get
TSLR
3D source sync
GP9
Get, Set
TSLF
3D source sync frequency
GP9
Get
TSLD
3D source sync duty cycle
GP9
Get
TSLS
3D source sync status
GP9
Get
TSLP
3D source sync phase
GP9
Get
TDLR
3D display sync
GP9
Get, Set
TDLF
3D display sync frequency
GP9
Get
TDLD
3D display sync duty cycle
GP9
Get
TDLS
3D display sync status
GP9
Get
TDLP
3D display sync phase
GP9
Get
CWI1
Color Wheel Index 1
GP9
Get, Set
LFMP
LFM performed
GP9
Set
LFMD
disable LFM messages
GP9
Get, Set
FCRL
Factory reset level
GP9
Get, Set
0 - limited, 1 - full
ENAP
Enable power user profiles
GP9
Get, Set
0 - disable, 1 - enable
LSDI
Lens shift disable
GP9
Get, Set
0 - enable 1 - disable
LSCA
Lens shift calibration
GP9
Set
SVER
Software Version
GP9
Get
PRID
Product ID
GP9
Get
See value table FLSS
See value table TSLS
See value table TDLS
Service
Service->systems statistics
CTPO
total time powered (seconds)
GP9
Get
UTOT
Unit Time Total (hrs)
GP9
Get
See value table GABS
CTSB
time since last boot (seconds)
GP9
Get
0 - RGB->RGB, 1 - R->RGB, 2 - G->RGB,
3 - B->RGB
LRM1
Lamp1 Estimated Remaining Lamp
Time (hrs)
GP9
Get
Value: 0 - disable, 1 - enable
Target: 0-RGB, 1-IR (if available)
LTR1
Lamp Runtime (hrs)
GP9
Get
LHO1
Lamp Channel Total Time (hrs)
GP9
Get
CTF0
Fan run time
GP9
Get
Communication protocoll
13
Rev. 1.2
Command
Description
Platforms
Operations
supported
Comments
Service->temperature control
THRM
Thermal Status
GP9
Get
FAN1
Fan Speed 1
GP9
Get
FAN2
Fan Speed 2
GP9
Get
FAN3
Fan Speed 3
GP9
Get
FAN4
Fan Speed 4
GP9
Get
SNS1
Sensor Value 1
GP9
Get
SNS2
Sensor Value 2
GP9
Get
SNS3
Sensor Value 3
GP9
Get
SNS4
Sensor Value 4
GP9
Get
SNS5
Sensor Value 5
GP9
Get
SNS6
Sensor Value 6
GP9
Get
SNS7
Sensor Value 7
GP9
Get
SNS8
Sensor Value 8
GP9
Get
SNS9
Sensor Value 9
GP9
Get
SN10
Sensor Value 10
GP9
Get
SN11
Sensor Value 11
GP9
Get
SN12
Sensor Value 12
GP9
Get
SN13
Sensor Value 13
GP9
Get
SN14
Sensor Value 14
GP9
Get
SN15
Sensor Value 15
GP9
Get
SN16
Sensor Value 16
GP9
Get
LSDW
Lens Shift Down
GP9
Set
0 - 1000 steps
LSUP
Lens Shift Up
GP9
Set
0 - 1000 steps
LSLF
Lens Shift Left
GP9
Set
0 - 1000 steps
LSRH
Lens Shift Right
GP9
Set
0 - 1000 steps
LSDI
Lens shift disable
GP9
Get, Set
0 - enable 1 - disable
LSCA
Lens shift calibration
GP9
Set
LHO1
Lamp Channel Total Time
GP9
Get
LST1
Lamp Status
GP9
Get
LRM1
Lamp Estimated Remaining Lamp
Time
GP9
Get
LTR1
Lamp Runtime
GP9
Get
ECHO
Communication Response (on/off)
GP9
Set
SINF
Show OSD Info
GP9
Set
ACSS
Current Access Level
GP9
Get
MAC address
GP9
Get
Lens control
Lamp status
See value table LST1
Miscellaneous
MACA
Communication protocoll
14
Rev. 1.2
Description
Platforms
Operations
supported
MENU
Menu Navigate Toggle OSD Menu
GP9
Set
NVUP
Menu Navigate Up
GP9
Set
NVDW
Menu Navigate Down
GP9
Set
NVLF
Menu Navigate Left
GP9
Set
NVRH
Menu Navigate Right
GP9
Set
NVOK
Menu Navigate Ok
GP9
Set
Command
Comments
Menu navigate
Communication protocoll
15
Rev. 1.2
Value tables
POST
GABS
Power state
et Gamma abs value
Value
Description
Value
Description
0
Deep sleep
0
Film 2.2
1
Off
1
Film 2.6
2
Powering up
2
Video 1
3
On
3
Video 2
4
Powering down
4
Film 2.4
5
Critical powering down
5
Film 2.8
6
Critical off
7
Computer 1
8
Computer 2
9
Linear
IABS
12
DICOM 10 Lux
Description
13
DICOM 60 Lux
0
VGA
14
DICOM 180 Lux
2
DVI
15
DICOM 250 Lux
8
HDMI
16
DICOM 300 Lux
17
DisplayPort 1
17
DICOM 400 Lux
18
DisplayPort 2
19
Dynamic
19
HDBaseT
20
SDI 1
21
SDI 2
Set source abs values
Value
TDSM
3D mode
Value
Description
0
off
1
side by side
2
frame sequential
3
dual head
PRES (2D modes)
PRES (3D modes)
Set profile
Set profile
Description
Value
Description
0
standard
8
3D
1
presentation
11
custom 3D
21
advanced 3D
Value
2
bright
3
video
4
cinema
5
dicom
10
custom
20
advanced
Communication protocoll
16
Rev. 1.2
SABS
Set scaling abs value
Value
Description
0
1:1
1
Fill All
2
Fill Aspect Ratio
3
Fill 16:9
4
Fill 4:3
5
Fill 2.35:1
BCCR
BrilliantColor Control
Value
Description
0
Off
1
color
BrilliantColor Control
2
bright
Value
Description
5
SRP (if available)
0
Off
4
color (rgb only)
7
Auto
5
bright (rgb only)
6
SRP (rgb only) (if available)
BCCR (profile 3D advanced)
DSCR
Desired Coords Mode
Value
Description
0
White
1
RGB
2
RGBCMY
CMTP
Color calibration test image
Value
Description
0
Off
1
Red uncorrected
2
Green uncorrected
3
Blue uncorrected
4
White uncorrected
CMPP
Color procesed test image
Value
Description
0
Off
1
Red
2
Green
3
Blue
4
White
5
Black
6
Cyan
7
Magenta
8
Yellow
Communication protocoll
17
Rev. 1.2
ORIE
Set Orientation abs value
Value
Description
0
Desktop front
1
Ceiling rear
2
Desktop rear
3
Ceiling front
OSDC
OSD Enable
Value
Description
0
OSD off
1
OSD show only warnings
2
OSD on
EDIR
Edid resolution
Target
Value
Description
0 - VGA
0
Auto
2 - DVI
1
Custom (not implemented)
3 - HDMI
2
VGA
25 - DisplayPort 1
3
SVGA
26 - DisplayPort 2
4
XGA
27 - HDBaseT
5
720 50Hz
6
720 60Hz
7
WXGA 1366
8
SXGA
9
SX+
12
1080 60Hz
13
1080 120Hz
14
WUXGA
15
WUXGA 60Hz
16
WUXGA 120Hz
17
WQXGA 60Hz
18
WQXGA 120Hz
19
2560x1080 60Hz
20
2560x1080 120Hz
Target
Value
Description
3 - HDMI
1
DVI
27 - HDBaseT
2
HDMI
EDIT
Edit type
Communication protocoll
18
Rev. 1.2
MNUT
Menu timeout
Value
Description
0
5 seconds
1
10 seconds
2
15 seconds
3
30 seconds
4
60 seconds
5
never
BAUD
Baudrate
Value
Description
4800
4800
9600
9600
19200
19200
38400
38400
57600
57600
115200
115200
LANG
Language
Value
Description
0
English
1
French
2
Germen
3
Spanish
4
Norwegian
5
Swedish
6
Russian
7
Korean
8
Japanese
9
Chinese Simplified
10
Chinese Traditionale
11
Portuguese
12
Italian
FLSS
Framelock Signal status
Value
Description
0
free running
3
locked
TDSLS and TDLS
3D source & display sync
status
Value
Description
0
free running
1
drifting, free running
2
drifting, locked
3
locked
Communication protocoll
19
Rev. 1.2
LST1
Lamp status
Value
Description
0
Defect
1
Warming up
2
Lamp is on
3
Lamp is off
4
Lamp is cooling down
5
Lamp is not present
TBOS
3D BNC sync-out signal
Value
Description
0
Off
1
3D glass sync
2
3D display sync
3
Passthrough
Communication protocoll
20
Rev. 1.2
Communication protocoll
21
Rev. 1.2
(Titanium ASCII REV 1.2.xls)
REV_1.2- 18.11.14
www.barco.com

advertisement

Was this manual useful for you? Yes No
Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Related manuals

Download PDF

advertisement