Pepperl+Fuchs VB14N Manual

Pepperl+Fuchs VB14N Manual

Host mode programming
Hide thumbs Also See for VB14N:

Advertisement

Quick Links

FACTORY AUTOMATION
MANUAL
VB14N
HOST MODE PROGRAMMING

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the VB14N and is the answer not in the manual?

Questions and answers

Subscribe to Our Youtube Channel

Summary of Contents for Pepperl+Fuchs VB14N

  • Page 1 FACTORY AUTOMATION MANUAL VB14N HOST MODE PROGRAMMING...
  • Page 2: Table Of Contents

    How To Get Single Parameter From The Reader ........13 How to access installer parameters ............15 Save And Restore Commands..............16 Examples ....................19 VB14N PARAMETERS LIST..............22 Code Definition ................... 22 Operating Modes ..................34 Reading System Layout ................36 Device Network Setting................
  • Page 3: Host Mode Programming

    HOST MODE PROGRAMMING HOST MODE PROGRAMMING An alternative method of programming the VB14N laser scanners is by sending programming strings. These strings must be transmitted from the Host system to the device either on the auxiliary RS232 serial interface or on the main RS232/RS485 serial interface. This is called Host Mode Programming.
  • Page 4: Programming Commands

    HOST MODE PROGRAMMING PROGRAMMING COMMANDS CONNECTION TO DEVICE DESCRIPTION HOST COMMAND REPLY MESSAGE Enter Host Mode <ESC> [ C <ESC> H <CR><LF> After entering this command, the device responds with the first reply message and then waits for the following command. From now on device is in CONNECTED state.
  • Page 5: Disconnection From Device

    HOST MODE PROGRAMMING DISCONNECTION FROM DEVICE DESCRIPTION HOST COMMAND REPLY MESSAGE Exit Programming Mode <ESC> d M <B0 > ADDR <ESC> d <CR><LF> Where ADDR is the address of the device in a ID-NET™ Master/Slave layout. This message must always be transmitted to exit from programming mode. Exit Terminal Mode <ESC>...
  • Page 6: Self Disconnection

    HOST MODE PROGRAMMING SELF DISCONNECTION Specific situations exist so that the device is automatically disconnected from the Host and its IDLE state is reached again. Once connected, following message could be sent: DESCRIPTION HOST REPLY DEVICE MESSAGE Self Disconnection <ESC> [ A This message notifies a forced disconnection from the Host.
  • Page 7 HOST MODE PROGRAMMING HOST DEVICE <ESC> [ C (Enter Host Mode) <ESC> H <CR><LF> <ESC> ] B (Enter Terminal Mode) <ESC> R <CR><LF> <ESC> c M <B0 > 0 (Enter Programming Mode) <ESC> c <CR><LF> Figure 1 - Connection to standalone device...
  • Page 8 HOST MODE PROGRAMMING HOST DEVICE <ESC> d M <B0 > 0 (Exit Programming Mode) <ESC> d <CR><LF> <ESC> I A <space> (Exit Terminal Mode) <ESC> K <CR><LF> <ESC> [ A (Exit Host Mode) <ESC> X <CR><LF> Figure 2 - Disconnection from standalone device...
  • Page 9: Programming Strings

    HOST MODE PROGRAMMING PROGRAMMING STRINGS DEFINITIONS Common definitions for each parameter are: Path The complete parameter path must have the following format: /Folder1[#Depth1]/Folder2[#Depth2]/ … /FolderN[#DepthN]/Param[#DepthM] Where:  Folder Name FolderX:  Folder or Parameter Depth (not necessary if equal to 1) [#DepthX]: ...
  • Page 10 HOST MODE PROGRAMMING Type (Parameter Type) Parameter type is essential in order to decide the parameter VALUE format used in the programming strings. Types are: Type Integer (Numeric) Type Enumeration Type String Type Binary String Type Floating Point The other definitions change according to the parameter type Integer (Type = 0) Range Minimum and maximum values allowed for the parameter.
  • Page 11 HOST MODE PROGRAMMING Item List 0 = On Line 1 = Automatic 3 = Test 4 = Continuous 0 (Entry 0  On Line) Default: String (Type = 2) Length Minimum and maximum number of characters allowed for this parameter. Example: Device Name parameter (USER INFORMATION SECTION folder).
  • Page 12 HOST MODE PROGRAMMING Floating Point (Type = 4) The Floating Point parameter value has the following format: XXX.YYY Range Minimum and maximum values allowed for the parameter. The sign can be omitted if the parameter value is not negative.
  • Page 13: How To Send Single Parameter To The Reader

    HOST MODE PROGRAMMING HOW TO SEND SINGLE PARAMETER TO THE READER To guarantee the complete compatibility with future software releases, It strongly suggests to use the shortcuts programming strings. NOTE Using Complete Parameter Path The 'Set Parameter' programming string must have the following format: SP<space>PATH:VALUE<CR><LF>...
  • Page 14 HOST MODE PROGRAMMING Using Short Parameter Description (Shortcut) The 'Set Shortcut' programming string (based on the short parameter description) must have the following format: SS<space>SHORTCUT:VALUE<CR><LF> Where:  'Set Shortcut' command  Short Parameter Description (SHC) SHORTCUT:  Parameter Value VALUE: After entering this command, the device responds with the proper reply message and then waits for one or more programming strings.
  • Page 15: How To Get Single Parameter From The Reader

    HOST MODE PROGRAMMING HOW TO GET SINGLE PARAMETER FROM THE READER To guarantee the complete compatibility with future software releases, It strongly suggests to use the shortcuts programming strings. NOTE Using Complete Parameter Path The 'Get Parameter' programming string must have the following format: GP<space>PATH<CR><LF>...
  • Page 16 HOST MODE PROGRAMMING Using Short Parameter Description (Shortcut) The 'Get Shortcut' programming string (based on the short parameter description) must have the following format: GS<space>SHORTCUT<CR><LF> Where:  'Get Shortcut' command.  Short Parameter Description (SHC). SHORTCUT: After entering this command, the device responds with the proper reply message and then waits for one or more programming strings.
  • Page 17: How To Access Installer Parameters

    HOST MODE PROGRAMMING HOW TO ACCESS INSTALLER PARAMETERS Set Right Parameter Description The 'Set Right' programming string allows the user to access some particular parameters not available as standard user: SR<space>L<space>PASSWORD<CR><LF> Where:  'Set Right' command  Access Level Description ...
  • Page 18: Save And Restore Commands

    HOST MODE PROGRAMMING SAVE AND RESTORE COMMANDS The 'Data Storage' programming command must have the following format: E<space>MODE<CR><LF> Where:  Data Storage command.  Data Storage mode. The possible values are: MODE: V = Storage in temporary (volatile) memory only. P = Storage in temporary and permanent memory.
  • Page 19 HOST MODE PROGRAMMING The 'Restore Default Configuration' programming command must have the following format: SD<space>DEFNUM<CR><LF> Where:  Restore Default configuration command  Default configuration number. The only possible value is DEFNUM: currently: 0 = Factory Default After entering this command, the device responds with the proper reply message and then waits for one or more programming strings.
  • Page 20 HOST MODE PROGRAMMING HOST DEVICE SP<space>PATH1:VALUE1<CR><LF> (Set parameter 1) Y<space>VALUE1<CR><LF> SP<space>PATH2:VALUE2<CR><LF> (Set parameter 2) Y<space>VALUE2<CR><LF> E<space>MODE<CR><LF> (Data Storage) Y<space>MODE<CR><LF> Figure 3 - Two parameters programming session with data storage...
  • Page 21: Examples

    HOST MODE PROGRAMMING EXAMPLES - 1 - Set Minimum Label Length parameter in CODE LABEL SETTING #2 folder: Path: /Codes/Code#2/MinLength Shortcut: Type: 0 (Integer) Range: 0 to 60 Value: The 'Set Parameter' programming string is: SP<space>/Codes/Code#2/MinLength:4<CR><LF> The 'Set Shortcut' programming string is: SS<space>3#2:4<CR><LF>...
  • Page 22 HOST MODE PROGRAMMING After entering the programming string, the reader responds with the message: Y<space>1<CR><LF> - 3 - Set Device Name parameter in USER INFORMATION SECTION folder: Path: /UserInfo/Name Shortcut: Type: 2 (String) Length: 0 to 128 Value: 2KN_FAMILY The 'Set Parameter' programming string is: SP<space>/UserInfo/Name:2KN_FAMILY<CR><LF>...
  • Page 23 HOST MODE PROGRAMMING After enter the programming string, the reader responds with the message: Y<space>6<space> 484541444552<CR><LF> - 5 - Get value of Digital Output 2 Activation Event parameter in DIGITAL OUTPUT LINES SETTING folder: Path: /IO/Out/Out1/Active Shortcut: Type: 1 (Enumeration) 2 (Entry 2 ...
  • Page 24: Vb14N Parameters List

    HOST MODE PROGRAMMING VB14N PARAMETERS LIST CODE DEFINITION PARAMETER COMPLETE PATH VALUE CODE DEFINITION Code Combination /Codes 0 = Single Label /MultiLabel 1 = Standard Multi Label 2 = Logical Combination 3 = Code Collection Logical Combination /Codes Length: 0 to 64...
  • Page 25 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Multiple Read is /Codes 5036 1 0 = No Read treated as /LedIndic 1 = Good Read /MultipleReadAs LOCAL NO READ STRINGS #N (DEPTH: N = 1 to 15) Group Label Local /Codes Length: 0 to 48 No Read String /LocNoReadComb...
  • Page 26 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE 11 = Staff Member 12 = Nat. Product Code 13 = Nat. Special Testing 14 = Nat. Use Bar Code 15 = Nat. CUE Status 16 = Nat. Donor ID Chain 1: - Right /Codes 5003 1 0 = None...
  • Page 27 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Chain 6: Left - /Codes 5012 1 0 = None /Symbology 1 = Donation ID /Cod128Par … /Chain6Left 16 = Nat. Donor ID Chain 6: - Right /Codes 5013 1 0 = None /Symbology 1 = Donation ID /Cod128Par...
  • Page 28 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Decoding Severity /Codes 5044 0 Range: 1 to 5 /Symbology /Cod39Par /DecSev Inter Character Gap /Codes 5045 0 Range: 1 to 12 /Symbology /Cod39Par /InterCharGap FAMILY SETTING / EAN-UPC Decoding Safety /Codes 5053 0 Range: 1 to 100 /Symbology /EanUpc...
  • Page 29 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Decoding Severity /Codes 5050 0 Range: 1 to 5 /Symbology /CodBarPar /DecSev Inter Character Gap /Codes 5051 0 Range: 1 to 12 /Symbology /CodBarPar /InterCharGap ABC Codabar /Codes 5001 1 0 = Do Not Chain Concatenation /Symbology 1 = Optional Chain...
  • Page 30 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE FAMILY SETTING / PLESSEY Decoding Safety /Codes 5271 0 Range: 1 to 100 /Symbology /Pharmacode /DecSaf Decoding Severity /Codes 5272 0 Range: 1 to 5 /Symbology /Pharmacode /DecSev CODE LABEL SETTING #N (DEPTH: N = 1 to 10) Enable /Codes 0 = Disable...
  • Page 31 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Label Length /Codes 55 = 55 /Code#N 56 = 56 /Length 57 = 57 58 = 58 59 = 59 60 = 60 Minimum Label /Codes Range: 1 to 60 Length /Code#N /MinLength Maximum Label /Codes Range: 1 to 60...
  • Page 32 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE 31 = 205 32 = 211 33 = 217 34 = 223 35 = 229 36 = 235 37 = 241 38 = 247 39 = 253 40 = 259 41 = 265 42 = 271 43 = 277 44 = 283...
  • Page 33 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE 11 = 129 12 = 139 13 = 149 14 = 159 15 = 169 16 = 179 17 = 189 18 = 199 19 = 209 20 = 219 21 = 229 22 = 239 23 = 249 24 = 259...
  • Page 34 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE 53 = 549 54 = 559 55 = 569 56 = 579 57 = 589 58 = 599 59 = 609 60 = 619 Min Code Position /Codes Range: 0 to 255 Filter /Code#N /MinCodePos Max Code Position...
  • Page 35 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Code Label Local /Codes Length: 0 to 48 Multiple Read String /Code#N /LocMulRead Start Character /Codes 0 = Disabled Transmission /Code#N 2 = Lower Case (only for Codabar) /StartChTx 3 = Upper Case Stop Character /Codes 0 = Disabled...
  • Page 36: Operating Modes

    HOST MODE PROGRAMMING OPERATING MODES PARAMETER COMPLETE PATH VALUE OPERATING MODES Operating Mode /Operating 0 = On Line Selection /Selection 1 = Automatic 4 = Continuous 3 = Test On Line Options /Operating 0 = On Line 1 input /OnLOpt 1 = On Line 2 input 2 = Serial On Line Extended Phase...
  • Page 37 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Automatic Operating Range: 10 to 32765 Threshold (number /AutomaticThreshold of scans) Start Input from /Operating 5313 0 = Disable FieldBus /FieldbusOnl 1 = Enable Continuous /Operating 5185 Range: 10 to 32765 Threshold (number /ContThreshold of scans) Code Filter Depth...
  • Page 38: Reading System Layout

    HOST MODE PROGRAMMING READING SYSTEM LAYOUT PARAMETER COMPLETE PATH VALUE READING SYSTEM LAYOUT Network Baud Rate /Layout 5144 1 1 = 19200 (bps) /NetBaudMS 2 = 38400 3 = 57600 4 = 125Kb 5 = 250Kb 6 = 500Kb 7 = 1Mb Local Device /Layout 0 = Alone or ID-NET...
  • Page 39: Device Network Setting

    HOST MODE PROGRAMMING DEVICE NETWORK SETTING PARAMETER COMPLETE PATH VALUE SCANNER CLUSTER Cluster Description /Cluster Length: 0 to 32 /Descr Topology Role /Cluster 0 = Master /TopRole (Synchronized) 1 = Master (Multidata) 2 = Slave (Synchronized) 3 = Other 12 = Slave (Multidata) Slave Address /Cluster 1 = Slave 1...
  • Page 40: Reading Parameters

    READING PARAMETERS PARAMETER COMPLETE PATH SHC PT VALUE READING PARAMETERS Scan Speed /Reading 5020 1 1 = Off (VB14N-300 /-R) /ScanSpeed_2100std 2 = 500 (Default) 3 = 800 Scan Speed /Reading 5022 1 1 = Off (VB14N-440 /-R /ScanSpeed_2400 2 = 600...
  • Page 41 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Required Quiet /Reading 5131 1 0 = Both Zones /ReqQZ 1 = One Overflow Ratio /Reading 5130 0 Range: 3 to 32 /OverflowRatio Reading Mode /Reading 0 = Reconstruction /Linear 1 = Linear RECONSTRUCTION PARAMETERS Minimum Fragment /Reading...
  • Page 42 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE 26 = 26 27 = 27 28 = 28 29 = 29 30 = 30 Minimum Overlap /Reading 5188 0 Range: 60 to 150 Length /Reconstruction /MinOverlapLen Max Scan Gap /Reading 5186 1 0 = 5 /Reconstruction...
  • Page 43 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH PT VALUE 35 = 320 36 = 340 37 = 360 38 = 380 39 = 400 40 = 420 41 = 440 42 = 460 43 = 480 44 = 500 45 = 525 46 = 550 47 = 575 48 = 600...
  • Page 44 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Amplitude /Reading 5027 1 10 = 10 (degrees) /Oscillating 15 = 15 /AmplFirstZone 20 = 20 25 = 25 30 = 30 35 = 35 40 = 40 Frequency (Hz) /Reading 5 = 0.5 /Oscillating 10 = 1...
  • Page 45: Data Communication Setting

    HOST MODE PROGRAMMING DATA COMMUNICATION SETTING PARAMETER COMPLETE PATH SHC PT VALUE DATA COMMUNICATION SETTING Host Application /Comms 0 = Standard Protocol Type /Application 1 = Crisplant DATA FORMAT Header TX Start /Comms 0 = With Data /OutForm 1 = After Reading Phase /HeadTx Termination after /Comms...
  • Page 46 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Master Max Tx /Comms 5178 1 50 = 50 Delay After Phase /OutForm 60 = 60 Off (ms) /TX_TimeoutMaster 70 = 70 80 = 80 90 = 90 100 = 100 110 = 110 120 = 120 130 = 130...
  • Page 47 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE DATA FORMAT / CUSTOM CODE IDENTIFIER STRINGS Code 128 Identifier /Comms Length: 1 to 32 String /OutForm//codIDStr /cod128 Code IL 2/5 Comms Length: 1 to 32 Identifier String /OutForm/codIDStr /cod25IL Code 39 Standard Comms Length: 1 to 32 Identifier String...
  • Page 48 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Code UPC E /Comms Length: 1 to 32 Addon 2 /OutForm/codIDStr Identifier String /codUPCEADD2 Code EAN 13 /Comms Length: 1 to 32 Addon 5 /OutForm/codIDStr Identifier String /codEAN13ADD5 Code EAN 8 /Comms Length: 1 to 32 Addon 5...
  • Page 49 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Forward Direction /Comms Length: 0 to 32 String /OutForm/Standard /FwDirection Reverse Direction /Comms Length: 0 to 32 String /OutForm/Standard /RvDirection Unknown Direction /Comms Length: 0 to 32 String /OutForm/Standard /NoDirection Motor OFF /Comms 0 = Disable Message...
  • Page 50 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE DATA FORMAT / MULTIDATA Address TX /Comms 0 = Disable /OutForm/Multidata 1 = Enable /Address Header /Comms Length: 0 to 32 /OutForm/Multidata /AddrHeader Separator /Comms Length: 0 to 32 /OutForm/Multidata /AddrSeparator CRISPLANT PARAMETERS Crisplant /Comms...
  • Page 51 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE MAIN SERIAL PORT / HEARTBEAT Timeout (s) /Comms 5079 0 Range: 1 to 3600 /SerMain/HeartbeatM /TimeOutM Heartbeat Header /Comms 5075 3 Length: 0 to 128 String /SerMain/HeartbeatM /HeaderM Heartbeat Fields /Comms 5076 3 Length: 0 to 128 Separator String...
  • Page 52 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Main Port Electrical /Comms 0 = RS232 Interface /SerMain/Line 1 = RS485 Full Duplex /MainHW MUX 32 protocol /Comms Range: 0 to 31 address /SerMain/Line /Addr Handshake /Comms 0 = None (RS232) /SerMain/Line 1 = Hardware (RTS/CTS)
  • Page 53 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Header n. 6 /Comms Length: 1 (Siemens 3964) /SerMain/Line /SRKHead6 Header n. 9 /Comms Length: 1 (Siemens 3964) /SerMain/Line /SRKHead9 Header n. 10 /Comms Length: 1 (Siemens 3964) /SerMain/Line /SRKHead10 Filler Character /Comms Length: 1 (Siemens 3964)
  • Page 54 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Heartbeat Fields /Comms 5064 3 Length: 0 to 128 Separator String /SerAux/HeartbeatA /SeparatorA Counter Module /Comms 5059 1 0 = Disable (Maximum Counter /SerAux/HeartbeatA 1 = 10 Value) /CounterModA 2 = 100 3 = 1000 4 = 10000 5 = Custom...
  • Page 55 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE AUXILIARY SERIAL PORT / LINE PARAMETERS Baud Rate /Comms 8 = 1200 /SerAux/Line 1 = 2400 /StdBaud 2 = 4800 3 = 9600 4 = 19200 5 = 38400 6 = 57600 7 = 115200 Parity /Comms...
  • Page 56 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE IP_address /Comms Max Length: 16 /CBXGateway /Ethernet /IP_address IP_netmask /Comms Max Length: 16 /CBXGateway /Ethernet /IP_netmask IP_gateway /Comms Max Length: 16 /CBXGateway /Ethernet /IP_gateway Station Name /Comms 5425 2 Max Length: 32 /CBXGateway /Ethernet /StationName...
  • Page 57 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Heartbeat Fields /Comms 5295 3 Length: 1 to 128 Separator /CBXGateway /FieldbusOptions /HeartbeatFieldbus /SeparatorFieldbus Counter Module /Comms 5290 1 0 = Disable /CBXGateway 1 = 10 /FieldbusOptions 2 = 100 /HeartbeatFieldbus 3 = 1000 /CounterModFieldbus 4 = 10000...
  • Page 58 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Heartbeat /Comms 5304 3 Length: 1 to 128 Terminator String /CBXGateway /FieldbusOptions /HeartbeatFieldbus /TerminatorFieldbus FIELDBUS / BUS COMMUNICATION Baud Rate (CC- /Comms 5426 1 0 = 156 Kbps LINK) /CBXGateway 1 = 625 Kbps /FieldbusOptions 2 = 2.5 Mbps /BusData...
  • Page 59 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Master Input Area /Comms 5325 0 Range: 8 to144 Size (Profinet) /CBXGateway /FieldbusOptions /BusData /ProfinetInputSize Master Input Area /Comms 5372 0 Range: 8 to 144 Size (Modbus) /CBXGateway /FieldbusOptions /BusData /ModbusRtuInputSize Master Input Area /Comms 5373 0...
  • Page 60 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Master Output Area /Comms 5326 0 Range: 8 to 144 Size (Profinet) /CBXGateway /FieldbusOptions /BusData /ProfinetOutputSize Master Output Area /Comms 5374 0 Range: 8 to 144 Size (Modbus) /CBXGateway /FieldbusOptions /BusData /ModbusRtuOutputSiz Master Output Area /Comms 5375 0 Range: 8 to 144...
  • Page 61 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Data Flow Control /Comms 0 = Disable /CBXGateway 2 = DAD Driver /FieldbusOptions /BusData /FlowControl Data Consistency /Comms 0 = Disable /CBXGateway 1 = Enable /FieldbusOptions /BusData /ConsistencyAbil Process Active /Comms 5421 0 Range: 0 to 65535 Timeout ms /CBXGateway...
  • Page 62 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Stop Bits /Comms 5420 1 1 = 1 /CBXGateway 2 = 2 /FieldbusOptions /BusData/Line /Stopbit FIELDBUS / DIGITAL I/O CONDITIONING / DIGITAL INPUT LINES Input 1 Echo /Comms 5298 1 0 = Disable /CBXGateway 1 = Enable /FieldbusOptions...
  • Page 63 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Data Tx /Comms 5251 1 0 = Disable /CBXGateway 1 = Enable /Services /UserSocket1 /Sock1 Heartbeat /Comms 5260 1 0 = Disable /CBXGateway 1 = Enable /Services Unconditioned /UserSocket1 2 = Enable Conditioned /HeartbeatEnSocket1 Type /Comms...
  • Page 64 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Master Diagnostic /Comms 5259 0 Range: 3 to 10 Check Period (secs) /CBXGateway /Services /UserSocket1 /InputTimeOut TCP/IP SERVICES / USERSOCKET#1 / HEARTBEAT Timeout (s) /Comms 5261 0 Range: 0 to 3600 /CBXGateway /Services /UserSocket1...
  • Page 65 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Counter Starting /Comms 5266 0 Range: 0 to 9999 Value /CBXGateway /Services /UserSocket1 /HeartbeatSocket /CounterStartSocket1 Counter Direction /Comms 5267 1 0 = Up /CBXGateway 1 = Down /Services /UserSocket1 /HeartbeatSocket /CounterDirection Socket1 System Diagnostics /Comms 5268 1 0 = Disable...
  • Page 66 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Data Tx /Comms 5330 1 0 = Disable /CBXGateway 1 = Enable /Services /UserSocket2 /Sock2 Heartbeat /Comms 5331 1 0 = Disable /CBXGateway 1 = Enable /Services Unconditioned /UserSocket2 2 = Enable Conditioned /HeartbeatEnSocket2 Type /Comms...
  • Page 67 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Heartbeat Header /Comms 5333 3 Length: 1 to 128 String /CBXGateway /Services /UserSocket2 /HeartbeatSocket /HeaderSocket2 Heartbeat Fields /Comms 5334 3 Length: 1 to 128 Separator /CBXGateway /Services /UserSocket2 /HeartbeatSocket /SeparatorSocket2 Counter Module /Comms 5335 1 0 = Disable...
  • Page 68 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE System Diagnostics /Comms 5339 1 0 = Disable /CBXGateway 1 = Enable /Services /UserSocket2 /HeartbeatSocket /SysDiagSocket2 Network /Comms 5340 1 0 = Disable Diagnostics /CBXGateway 1 = Enable /Services /UserSocket2 /HeartbeatSocket /DevDiagSocket2 Heartbeat /Comms...
  • Page 69: Digital I/O Setting

    HOST MODE PROGRAMMING DIGITAL I/O SETTING PARAMETER COMPLETE PATH SHC PT VALUE BUILT-IN DIGITAL INPUT LINES Input 1 Active Level 0 = Active Closed Overridden by /In/In1Lev 1 = Active Open Operating Mode Input 2 active level 0 = Active Closed Overridden By /In/In2Lev 1 = Active Open...
  • Page 70 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Deactivation Event 0 = None /Out/Out0 7 = Timeout /Deactive 5 = Phase On 6 = Phase Off 8 = Quality Counter >= Threshold Alternative 0 = None Deactivation Event /Out/Out0 5 = Phase On /Deactive1 6 = Phase Off 8 = Quality Counter >=...
  • Page 71 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE 3 = No Read 5 = Phase On 6 = Phase Off 8 = Multiple Read 9 = Right 10 = Wrong 11 = Ready 12 = Quality Counter < Threshold Alternative 0 = None Activation Event /Out/Out1 1 = Complete Read...
  • Page 72 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Event Counter Range: 1 to 70000 /Out/Out1 /EventCounter1 Event Counter 0 = Consecutive Mode /Out/Out1 1 = Not Consecutive /EventCounterMode1 Quality Counter 5274 0 Range: 1 to 100 Threshold /Out/Out1 /QualityCounter Threshold...
  • Page 73: System Information Section

    HOST MODE PROGRAMMING SYSTEM INFORMATION SECTION PARAMETER COMPLETE PATH VALUE DEVICE INFORMATION Serial Number /SystemInfo 5172 0 Range: 1 to 255 /Model /SerialNumber...
  • Page 74: Leds And Keypad

    HOST MODE PROGRAMMING LEDS AND KEYPAD PARAMETER COMPLETE PATH VALUE LEDS AND KEYPAD Key Functionality /FunctionKey 5111 1 1 = Unlocked /keyAccess 0 = Partially Locked 2 = Locked Test Mode /FunctionKey 5112 1 0 = Disable Data TX /testModeTx 1 = Main, 2 = Aux, 3 = Main &...
  • Page 75: 4.10 Diagnostics

    HOST MODE PROGRAMMING 4.10 DIAGNOSTICS PARAMETER COMPLETE PATH VALUE DIAGNOSTICS Enable /Diagno 5100 1 0 = Disable /Enable 1 = Enable Conveyor Info /Diagno 5097 1 0 = Not Available /ConveyorInfo 1 = Available Conveyor Info /Diagno 5098 1 1 = Input 1 Provider /ConveyorInfoProvider 2 = Input 2...
  • Page 76 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Laser Failure /Diagno 5104 1 0 = Disable /LasFail 1 = Enable Oscillating Mirror /Diagno 5108 1 0 = Disable Failure /OmFail 1 = Enable Oscillating Mirror /Diagno 5414 1 0 = Disable Data Consistency /OmDataConsistency 1 = Enable...
  • Page 77 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE OSCILLATING /Diagno 5220 1 0 = Disable MIRROR: Reset /OmReset 1 = Enable Reading Conditions /Diagno 5221 1 0 = Disable Controller: /DacCommErr 1 = Enable Communication Error Focus Controller: /Diagno 5222 1 0 = Disable Communication...
  • Page 78 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE FieldBus DHCP /Diagno 5401 1 0 = Disable Problem /FBusDhcpProblem 1 = Enable Wrong CBX BM100 /Diagno 5307 1 0 = Disable Rotary Switch /WrongRSPosition 1 = Enable Selection CBX BM100 /Diagno 5308 1 0 = Disable...
  • Page 79 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE FORMAT Header String /Diagno 5101 3 Length: 1 to 128 /Format /Header Terminator String /Diagno 5102 3 Length: 1 to 128 /Format /Terminator Node Identification /Diagno 5253 3 Length: 1 to 128 /Format /NodeIdentification Diagnostic Message /Diagno...
  • Page 80 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE Focus /Diagno 5225 3 Length: 1 to 128 Displacement /Format/UserDefMsg /FocusDisMsg DIGITIZER: Motor /Diagno 5226 3 Length: 1 to 128 Failure /Format/UserDefMsg /DgtzMotFailMsg DIGITIZER: Motor /Diagno 5227 3 Length: 1 to 128 Life End /Format/UserDefMsg /DgtzMotEndMsg...
  • Page 81 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH SHC PT VALUE OSCILLATING /Diagno 5238 3 Length: 1 to 128 MIRROR: /Format/UserDefMsg Communication /OmCommErrMsg Error OSCILLATING /Diagno 5239 3 Length: 1 to 128 MIRROR: Reset /Format/UserDefMsg /OmResetMsg Reading Conditions /Diagno 5240 3 Length: 1 to 128 Controller: /Format/UserDefMsg Communication...
  • Page 82 HOST MODE PROGRAMMING PARAMETER COMPLETE PATH VALUE Heater Failure /Diagno 5549 1 0 = Disable /Format/UserDefMsg 1 = Enable /HeaterFailMsg Slave No Reply /Diagno 5090 3 Length: 1 to 128 /Format/UserDefMsg /SlaveNoReplyMsg Slave Address /Diagno 5088 3 Length: 1 to 128 Duplication /Format/UserDefMsg /SlaveAddrDuplication...
  • Page 83: 4.11 Statistics

    HOST MODE PROGRAMMING 4.11 STATISTICS PARAMETER COMPLETE PATH VALUE STATISTICS Enable /Statisti 0 = Disable /Enable 1 = Enable Separator /Statisti 5141 3 Length: 0 to 32 /Separator Time (hh mm) /Statisti 5134 1 0 = Disable /Clock_hm 1 = Enable Phase Counter /Statisti 5140 1...
  • Page 84: 4.12 User Information Section

    HOST MODE PROGRAMMING 4.12 USER INFORMATION SECTION PARAMETER COMPLETE PATH SHC PT VALUE USER INFORMATION SECTION User Name /UserInfo Length: 0 to 32 /EndUser Device Name /UserInfo Length: 0 to 128 /Name Line Name /UserInfo Length: 0 to 128 /Line...
  • Page 85: Appendix

    (for Serial On Line operating mode option) to a Slave device in an ID-NET™ reading system layout. The VB14N 'Send String To Slave Device #N' special command must have the following format: <ESC> ( <B0 > ADDR STRING ) <ESC>...
  • Page 86: Control Rules Table

    HOST MODE PROGRAMMING CONTROL RULES TABLE This chapter provides a list of the most important control rules that can be applied to the VB14N parameters. PARAMETER CONTROL RULES CODE DEFINITION Must be  Single Label and  Code Collection if...
  • Page 87 HOST MODE PROGRAMMING PARAMETER CONTROL RULES Must be  Leading if  Enable Stop Phase Edge Extended Phase (only for On Line 2 Input)  On Line. ACK/NAK Not available if Operating Mode Selection  Slave Protocol Not available if Scanner Cluster Topology Role Synchronized.
  • Page 88 HOST MODE PROGRAMMING PARAMETER CONTROL RULES DIGITAL OUTPUT LINES SETTING  Enabled. Activation Event, Not available if Activate On Any Diagnostics Error Alternative Activation Event, Deactivation Event, Alternative Deactivation Event STATISTICS  Slave Enable Not available if Local Device Alternative Network Setting RS232 (Type A).
  • Page 89: Error Codes Table

    HOST MODE PROGRAMMING ERROR CODES TABLE This chapter provides a list of the most important error codes. CODE INTERPRETATION COMMAND PARSING Parameter does not exist. Invalid range. Wrong syntax error. Wrong shortcut error. Path not found. Unknown command. Too many parameters in the programming string. No command is present in the programming string.
  • Page 90: Ascii Table

    HOST MODE PROGRAMMING ASCII TABLE CHARACTER TO HEX CONVERSION TABLE CHAR CHAR CHAR < > SPACE " &...
  • Page 91 HOST MODE PROGRAMMING...
  • Page 92 Twinsburg, Ohio 44087 · USA Tel. +1 330 4253555 E-mail: sales@us.pepperl-fuchs.com Asia Pacific Headquarters Pepperl+Fuchs Pte Ltd. Company Registration No. 199003130E Singapore 139942 Tel. +65 67799091 E-mail: sales@sg.pepperl-fuchs.com www.pepperl-fuchs.com Subject to modifications XXXXXX / TDOCT1831__ENG Copyright PEPPERL+FUCHS • Printed in Germany 06/2009...

Table of Contents