User`s manual
Table Of Contents
- Preliminary remarks
- Introduction
- New functions
- Installation
- Best practice
- Requirements
- Used ports
- Setup
- Upgrade from Apollo 1.3 to Apollo 1.4
- Upgrade from Apollo 1.4 to Apollo 1.4SR1
- Upgrading from Apollo 1.4 to Apollo 1.5
- Upgrading from Apollo 1.5 to Apollo 1.6
- Upgrading from Apollo 1.6 to Apollo 1.7
- Upgrading from Apollo 1.7 to Apollo 1.8
- Upgrading from Apollo 1.8 to Apollo 1.9
- Upgrading the Display Wall configuration
- Control Room Configurator
- Viewer
- Concept
- Apollo 1.9 Viewers
- Limitations
- Memory requirements (minimal RAM size)
- Communication memory
- Requirements
- Steps required to configure the FRG Viewer
- Steps required to configure the Visu Viewer
- Steps required to configure the Cottus Viewer
- Steps required to configure the VNC Viewer
- Steps required to configure the ProViewer
- Steps required to configure the Web Viewer
- Steps required to configure the MPEG Viewer
- Steps required to configure the VTplus Viewer
- Launching Viewer
- Controlling Viewers
- VNC Viewer
- Explorer
- Starting the Explorer
- Explorer User Interface
- Object Tree
- Source Tree View
- Explorer workspace
- Explorer menu bar
- Help menu
- Remote Desktop menu
- Layout Selector menu
- Explorer tool bar
- Device Manager in the Explorer
- Explorer Context Menu
- Drag&Drop functionality
- Layout Editor
- Desktop Server
- Project Backup
- Command Interface
- Device command Interface
- Desktop command Interface
- Viewer command Interface
- Apollo Explorer command interface
- Apollo Layout Editor command interface
- Apollo Layout Selector command interface
- Apollo Remote Desktop command interface
- Apollo Database Convertor command interface
- Apollo Window Detector command interface
- Control Room Bus services
- Control Room Bus
- Serial command interface
- TCPIP command interface
- Application management
- License management
- Time synchronization
- Log file
- Security Provider
- Defining accessGroups
- Configuration of restricted objects
- Permissions
- Restrictions for regions
- Restrictions for layouts
- Restrictions for shortcuts
- Restrictions for advanced menus
- Window Properties|Description
- Window Properties|Sizable
- Window Properties|Always on Top
- Window Properties|Visible
- Edit|Invisible Windows
- Edit|Keyboardinput
- Edit|CommandLine
- Edit|Permissions
- Edit|SaveLayout
- Customized configuration and uninstallation of Apollo
- Soap API Service
- Appendix
- Hotline

15. Appendix
400/398
________________________________________________________________________________________
Apollo Rel. 1.9 User's Manual
15.6 Escape sequences supported by the send command of the Serial Interface
Escape Sequence Represents
\a
\a\a
\a Bell (alert)
\b
\b\b
\b Backspace
\f
\f\f
\f Formfeed
\n
\n\n
\n New line
\r
\r\r
\r Carriage return
\t
\t\t
\t Horizontal tab
\v
\v\v
\v Vertical tab
\'
\'\'
\' Single quotation mark
\\
\\\\
\\ Backslash
\?
\?\?
\? Literal question mark
\
\\
\
ooo
ASCII character in octal notation
\x
\x\x
\x
hhh
ASCII character in hexadecimal notation
Octal notation:
The ASCII character is entered with up to three digits. Subsequent ASCII characters have
to be separted by "\"
The following example sends "[0] abc [1] de [13]" to the serial interface:
"%ApolloProgram%\devicecmd.exe" -name:Wall1.Port1 -Send:"\0 abc \1 de \15"
Hexadecimal notation:
The ASCII character has to be entered as a two digit value. Subsequent ASCII characters
are just added. Evaluation of the string as notation in hexadecimal stops as soon as a
character can not be taken as a hexadecimal digit
The following example sends "[1 2 3 4 171]Hallo" to the serial interface:
"%ApolloProgram%\devicecmd.exe" -name:Wall1.Port1 -Send:"\x01020304ABHallo"
The \" is not supported, since the double quotation mark is used to brace the parameters of the
command line. To send the double quoatation mark ", use its octal notation \042
To send "Hello World", the following command has to be entered:
"%ApolloProgram%\devicecmd.exe" -name:Wall1.Port1 -Send: "\042Hello World\042"