Advertisement

PRON NA60-MB0
MODBUS PROTOCOL USER GUIDE 3.50
Modbus Communication Protocol User Guide
PRON NA60-MB0
Version 3.50
PRON NA60-MB0 Remote Setting Manual
Page: 1 of 59

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the NA60-MB0 PRON Series and is the answer not in the manual?

Questions and answers

Summary of Contents for Thytronic NA60-MB0 PRON Series

  • Page 1 PRON NA60-MB0 MODBUS PROTOCOL USER GUIDE 3.50 Modbus Communication Protocol User Guide PRON NA60-MB0 Version 3.50 PRON NA60-MB0 Remote Setting Manual Page: 1 of 59...
  • Page 2: Table Of Contents

    PRON NA60-MB0 Contents Contents ..................................2 Modbus RTU communication..........................3 Serial port settings............................3 Transmission mode ............................3 Data Types ..............................3 Supported functions ............................. 4 Exceptions ..............................4 Modbus/TCP ..............................5 Network setting............................. 5 NTP synchronization ............................ 5 Logical organization of the protection’s data ......................6 Basic Data Type ............................
  • Page 3: Modbus Rtu Communication

    PRON NA60-MB0 Introduction This Protocol Manual is for use with Thytronic Protective Relays, such as the DMC, NTG and PRO-N series that support Modbus RTU and Modbus TCP communication protocol. 1 Modbus RTU communication The Thytronic Protective Relay (TPR) uses a communication protocol called Modbus. A company called Modicon, for use with their programmable controllers, developed the Modbus protocol.
  • Page 4: Supported Functions

    PRON NA60-MB0 1.4 Supported functions TPR supports the following Modbus functions: Code Name 0x01 Read Coil Status 0x02 Read Input Status 0x03 Read Holding Registers 0x04 Read Input Registers 0x05 Force Single Coil 0x06 Preset Single Register 0x0F Force Multiple Coil 0x10 Preset Multiple Registers Table 3 Supported Modbus functions...
  • Page 5: Modbus/Tcp

    PRON NA60-MB0 The next table describes all the exceptions handled by the TPRs. Code Name Description The function code received in the query is not an allowable action for ILLEGAL FUNCTION the slave. The data address received in the query is not an allowable address for ILLEGAL DATA ADDRESS the slave A value contained in the query data field is not an allowable value for...
  • Page 6: Logical Organization Of The Protection's Data

    PRON NA60-MB0 2 Logical organization of the protection’s data Each TPR has some data that can be read and/or written. These data are grouped in 4 data table. Data with 1 bit of information (e.g. the state of an output), can be placed in the Discrete Inputs table or in the Coils table, while data with more than 1 bit of information (e.g.
  • Page 7: Byte

    PRON NA60-MB0 2.1.2 BYTE Description: Signed variable with 1 byte (8 bit) of information. Range: -128 +127 Relationship with Modbus: A BYTE data type is always placed in the Least Significant Byte (LSB) of a Modbus Register (DIM=1). Modbus Byte Register Example: relationship between the data BYTE whose value is 13 (0x0D) and its Modbus representation:...
  • Page 8: Word

    PRON NA60-MB0 2.1.4 WORD Description: Signed variable with 2 byte (16 bit) of information. Range: -32.768 +32.767 Relationship with Modbus: A WORD data type is always placed in a Modbus Register (DIM=1) keeping the representation (Big Endian). Modbus Word Register Example: relationship between the data WORD whose value is 3073 (0x0C01) and its Modbus representation: Modbus...
  • Page 9: Long

    PRON NA60-MB0 2.1.6 LONG Description: Signed variable with 4 byte (32 bit) of information. Range: -2.147.483.648 +2.147.483.647 Relationship with Modbus: A LONG data type is placed in two Modbus Registers (DIM=2). The Least Significant Word of the LONG data type is placed in the first Modbus register while the Most Significant Word of the LONG data type is placed in the second Modbus register.
  • Page 10 PRON NA60-MB0 2.1.8 ARR Description: Array of BYTE. Relationship with Modbus: † An ARR data type of length n is placed in N Modbus Registers (N= ceil(n/2) ) keeping the byte ordering. If odd n, the last byte of ARR is placed in the MSB of the last Modbus register, while the LSB is set to 0 If even n: Array[n] Modbus Registers...
  • Page 11 PRON NA60-MB0 2.1.9 STR Description: String data type. It’s represented by an array of BYTE. Every byte represents the hexadecimal ASCII code associated with the character of the string Relationship with Modbus: † An STR data type of length n is placed in N Modbus Registers (N= ceil(n/2) ) keeping the byte ordering.
  • Page 12: How To Read The Address Data Table

    PRON NA60-MB0 3 How to read the Address Data Table All the information necessary to read/write data from/to a TPR is contained in the Address Data Table (see Appendix A). 3.1 Address Data Table Now a description of all the Address Data Table’s fields is given: TYPE ENUM Table 5.
  • Page 13: Type

    PRON NA60-MB0 3.1.4 DIM The DIM field is the number of Modbus registers necessary to contain the VAR data. Example: let’s read the value of the variable “Relay phase nominal current - In ”. From the previous table we see that the reference is 4x for which the function 0x03 has to be used for reading. The Modbus address is IDX-1=50-1=49.
  • Page 14: Enum

    PRON NA60-MB0 3.1.8 ENUM The ENUM field, whenever is defined, contains the meaning of all possible values assumed by the variable. 3.2 Common properties Some common properties are now described for a better understanding. 3.2.1 Input state • State It’s the physical state of the Input: 0 or 1 (OFF or ON) 3.2.2 Output state •...
  • Page 15: Examples

    PRON NA60-MB0 4 Examples For all the examples, the following symbols are assumed: = Slave Modbus address (1-247) = Modbus Function code (1,2,3,4,5,6,15,16) = number of byte in the DATA field = Modbus DATA address = number of Modbus DATA address = Cyclical Redundancy Check DATAx = register x of DATA field...
  • Page 16: Example 2. How To Read A Bit Data Type

    PRON NA60-MB0 4.2 Example 2. How to read a BIT data type Let’s read from the Slave address 1 the variable “I> Trip”. From the Address Data Table (Appendix A) we find out the following information; TYPE ENUM I> Trip 0=OFF, 1=ON The REF field value specify a Discrete Input (1x), so the function 0x02 is used for reading.
  • Page 17: Glossary

    Most Significative Byte Most significative bit Network Time Protocol Remote Terminal Unit Thytronic Protective Relay Most significative Word of a Long data (Higher word) Least significative Word of a Long data (Lower word) Version 3.50 PRON NA60-MB0 Remote Setting Manual...
  • Page 18: Appendix A. Address Data Table

    PRON NA60-MB0 6 Appendix A. Address Data Table TYPE Range ENUM Commands Set RTC 0=OFF, 1=ON Reset CB Open counter 0=OFF, 1=ON Reset LEDs 0=OFF, 1=ON Reset CB time action 0=OFF, 1=ON Reset MTV 0=OFF, 1=ON Reset Breaking currents SumI2t 0=OFF, 1=ON Reset Breaking currents SumI 0=OFF, 1=ON...
  • Page 19: Version 3.50

    PRON NA60-MB0 TYPE Range ENUM Commands UWORD 1,31,1 Month UWORD 1,12,1 Year UWORD 2000,2099,1 Hour UWORD 0,23,1 Minute UWORD 0,59,1 Second UWORD 0,59,1 Testing rele WORD 0="K1",1="K2",2="K3",3="K4" ,4="K5",5="K6",6="K7",7="K8 ",8="K9",9="K10" PLC2 Holding register - 1 UWORD 1,65535,1 PLC2 Holding register - 2 UWORD 1,65535,1 Info...
  • Page 20 PRON NA60-MB0 TYPE Range ENUM Rated nominal values Relay reference name Relay phase nominal current - In ULONG Relay residual nominal current - IEn ULONG Phase CT primary nominal current - Inp ULONG Residual CT primary nominal current - IEnp ULONG Relay nominal voltage ( phase to phase ) - Un ULONG...
  • Page 21 PRON NA60-MB0 TYPE Range ENUM READINGS Diagnostic MINOR Fail alarm 0=NO, 1=YES Protection and controls 0=OUT OF SERVICE, 1=ON SERVICE System diagnostic WORD 0="OK",1="FATAL",2="MAJO R",3="MINOR" Device diagnostic 0=OK, 1=NOT OK Program diagnostic WORD 0="OK",1="NOT OK",2="Disappeared" Data-base boot WORD 0="OK",1="NOT OK",2="Disappeared" Data-base run-time WORD 0="OK",1="NOT...
  • Page 22 PRON NA60-MB0 TYPE Range ENUM Diagnostic MMI module - Boot WORD 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" MMI module - Run-time WORD 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module"...
  • Page 23 PRON NA60-MB0 TYPE Range ENUM Diagnostic MID16-2 module - Boot WORD 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" MID16-2 module - Run-time WORD 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module"...
  • Page 24 PRON NA60-MB0 TYPE Range ENUM PROTECTIONS Thermal protection with RTD thermometric probes - 26 Alarm ThAL1 0=OFF, 1=ON Trip Th>1 0=OFF, 1=ON Alarm ThAL2 0=OFF, 1=ON Trip Th>2 0=OFF, 1=ON Alarm ThAL3 0=OFF, 1=ON Trip Th>3 0=OFF, 1=ON Alarm ThAL4 0=OFF, 1=ON Trip Th>4 0=OFF, 1=ON...
  • Page 25 PRON NA60-MB0 TYPE Range ENUM Thermal image - 49 Alarm DthAL1 0=OFF, 1=ON BLK1 DthAL1 0=OFF, 1=ON BLK2IN DthAL1 0=OFF, 1=ON BLK4IN DthAL1 0=OFF, 1=ON Alarm DthAL2 0=OFF, 1=ON BLK1 DthAL2 0=OFF, 1=ON BLK2IN DthAL2 0=OFF, 1=ON BLK4IN DthAL2 0=OFF, 1=ON Trip Dth>...
  • Page 26 PRON NA60-MB0 TYPE Range ENUM Residual overcurrent - 50N/51N Start IE> 0=OFF, 1=ON Trip IE> 0=OFF, 1=ON BLK1 IE> 0=OFF, 1=ON BLK2IN IE> 0=OFF, 1=ON BLK4IN IE> 0=OFF, 1=ON CLP IE> 0=OFF, 1=ON Start IE>> 0=OFF, 1=ON Trip IE>> 0=OFF, 1=ON BLK1 IE>>...
  • Page 27 PRON NA60-MB0 TYPE Range ENUM Directional phase overcurrent - 67 Start IPD> 0=OFF, 1=ON Trip IPD> 0=OFF, 1=ON BLK1 IPD> 0=OFF, 1=ON BLK2IN IPD> 0=OFF, 1=ON BLK4IN IPD> 0=OFF, 1=ON CLP IPD> 0=OFF, 1=ON Start IPD>> 0=OFF, 1=ON Trip IPD>> 0=OFF, 1=ON BLK1 IPD>>...
  • Page 28 PRON NA60-MB0 TYPE Range ENUM Directional earth fault overcurrent - 67N Start IED> 0=OFF, 1=ON Trip IED> 0=OFF, 1=ON BLK1 IED> 0=OFF, 1=ON BLK2IN IED> 0=OFF, 1=ON BLK4IN IED> 0=OFF, 1=ON CLP IED> 0=OFF, 1=ON Start IED>> 0=OFF, 1=ON Trip IED>> 0=OFF, 1=ON BLK1 IED>>...
  • Page 29 PRON NA60-MB0 TYPE Range ENUM Breaker Failure - BF Trip Int/Ext 0=OFF, 1=ON Start IBF> 0=OFF, 1=ON Start IEBF> 0=OFF, 1=ON Start BF 0=OFF, 1=ON Trip BF 0=OFF, 1=ON BLK1 BF 0=OFF, 1=ON VT supervision - 74VT Block 74VT 0=OFF, 1=ON Alarm 74VT 0=OFF, 1=ON BLK1 74VT...
  • Page 30 PRON NA60-MB0 TYPE Range ENUM PLC2 counters Counter 1 ULONG Counter 2 ULONG Counter 3 ULONG Counter 4 ULONG Counter 5 ULONG Counter 6 ULONG Counter 7 ULONG Counter 8 ULONG Counter 9 ULONG Counter 10 ULONG Counter 11 ULONG Counter 12 ULONG Counter 13...
  • Page 31 PRON NA60-MB0 TYPE Range ENUM PARTIAL COUNTERS Thermal protection with RTD thermometric probes - 26 ParThAL1cnt - Value WORD ParTh>1cnt - Value WORD ParThAL2cnt - Value WORD ParTh>2cnt - Value WORD ParThAL3cnt - Value WORD ParTh>3cnt - Value WORD ParThAL4cnt - Value WORD ParTh>4cnt - Value WORD...
  • Page 32 PRON NA60-MB0 TYPE Range ENUM Thermal image - 49 ParAlDthAL1cnt - Value WORD ParBk1DthAL1cnt - Value WORD ParBk2DthAL1cnt - Value WORD ParAlDthAL2cnt - Value WORD ParBk1DthAL2cnt - Value WORD ParBk2DthAL2cnt - Value WORD ParTrDth>cnt - Value WORD ParBk1Dth>cnt - Value WORD ParBk2Dth>cnt - Value WORD...
  • Page 33 PRON NA60-MB0 TYPE Range ENUM Residual overcurrent - 50N/51N ParStIE>cnt - Value WORD ParTrIE>cnt - Value WORD ParBk1IE>cnt - Value WORD ParBk2IE>cnt - Value WORD ParStIE>>cnt - Value WORD ParTrIE>>cnt - Value WORD ParBk1IE>>cnt - Value WORD ParBk2IE>>cnt - Value WORD ParStIE>>>cnt - Value WORD...
  • Page 34 PRON NA60-MB0 TYPE Range ENUM Directional phase overcurrent - 67 ParStIPD>cnt - Value WORD ParTrIPD>cnt - Value WORD ParBk1IPD>cnt - Value WORD ParBk2IPD>cnt - Value WORD ParStIPD>>cnt - Value WORD ParTrIPD>>cnt - Value WORD ParBk1IPD>>cnt - Value WORD ParBk2IPD>>cnt - Value WORD ParStIPD>>>cnt - Value WORD...
  • Page 35 PRON NA60-MB0 TYPE Range ENUM Directional earth fault overcurrent - 67N ParStIED>cnt - Value WORD ParTrIED>cnt - Value WORD ParBk1IED>cnt - Value WORD ParBk2IED>cnt - Value WORD ParStIED>>cnt - Value WORD ParTrIED>>cnt - Value WORD ParBk1IED>>cnt - Value WORD ParBk2IED>>cnt - Value WORD ParStIED>>>cnt - Value WORD...
  • Page 36 PRON NA60-MB0 TYPE Range ENUM Accessory counters ParStBFcnt - Value WORD ParTrBFcnt - Value WORD ParBk1BFcnt - Value WORD Version 3.50 PRON NA60-MB0 Remote Setting Manual Page: 36 of 59...
  • Page 37 PRON NA60-MB0 TYPE Range ENUM Delayed inputs 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON IN10 0=OFF, 1=ON IN11 0=OFF, 1=ON IN12 0=OFF, 1=ON IN13 0=OFF, 1=ON IN14 0=OFF, 1=ON IN15 0=OFF, 1=ON IN16...
  • Page 38 PRON NA60-MB0 Version 3.50 PRON NA60-MB0 Remote Setting Manual Page: 38 of 59...
  • Page 39 PRON NA60-MB0 TYPE Range ENUM Delayed inputs IN33 0=OFF, 1=ON IN34 0=OFF, 1=ON IN35 0=OFF, 1=ON IN36 0=OFF, 1=ON IN37 0=OFF, 1=ON IN38 0=OFF, 1=ON IN39 0=OFF, 1=ON IN40 0=OFF, 1=ON IN41 0=OFF, 1=ON IN42 0=OFF, 1=ON Version 3.50 PRON NA60-MB0 Remote Setting Manual Page: 39 of 59...
  • Page 40 PRON NA60-MB0 TYPE Range ENUM Internal states Reset LEDs 0=OFF, 1=ON Profile selection 0=OFF, 1=ON Fault trigger 0=OFF, 1=ON IE/IPh Block2 0=OFF, 1=ON IPh Block2 0=OFF, 1=ON IE Block2 0=OFF, 1=ON Block1 0=OFF, 1=ON Tcs1 0=OFF, 1=ON Tcs2 0=OFF, 1=ON Trip External protections 0=OFF, 1=ON Reset partial counters...
  • Page 41 PRON NA60-MB0 TYPE Range ENUM Block4 ST-Iph-BLK4 0=OFF, 1=ON ST-IE-BLK4 0=OFF, 1=ON BLK4OUT 0=OFF, 1=ON Relays 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON Version 3.50 PRON NA60-MB0 Remote Setting Manual Page: 41 of 59...
  • Page 42 PRON NA60-MB0 TYPE Range ENUM MEASURES Physical f - Value LONG 1000 IL1 - Value LONG 16000 IL2 - Value LONG 16000 IL3 - Value LONG 16000 IE - Value LONG 80000 UL1 - Value LONG 112000 UL2 - Value LONG 112000 UL3 - Value...
  • Page 43 PRON NA60-MB0 TYPE Range ENUM Sequence I1 - Value LONG 16000 I2 - Value LONG 16000 I2/I1 - Value LONG 2000 U2 - Value LONG 112000 Power P - Value LONG 172800 Q - Value LONG 172800 S - Value LONG 172800 CosPhi - Value...
  • Page 44 PRON NA60-MB0 TYPE Range ENUM 4th harmonic IL1-4th - Value LONG 16000 IL2-4th - Value LONG 16000 IL3-4th - Value LONG 16000 5th harmonic IL1-5th - Value LONG 16000 IL2-5th - Value LONG 16000 IL3-5th - Value LONG 16000 Phase demands IL1FIX - Value LONG 16000...
  • Page 45 PRON NA60-MB0 TYPE Range ENUM Energy measures EA+ - Value LONG EA- - Value LONG EA - Value LONG EQ+ - Value LONG kvarh EQ- - Value LONG kvarh EQ - Value LONG kvarh PT100 Probes WORD 0="ON",1="WAIT",2="LOW",3 ="HIGH",4="FAIL" LONG WORD 0="ON",1="WAIT",2="LOW",3 ="HIGH",4="FAIL"...
  • Page 46 PRON NA60-MB0 TYPE Range ENUM Fault 0 Fault n. 0 - Fault counter LONG Fault n. 0 - Date Fault n. 0 - Time Fault n. 0 - Fault cause WORD 0="No faults",1="U< Start",2="U< Trip",3="U<< Start",4="U<< Trip",5="I> Start",6="I> Trip",7="I>> Start",8="I>> Trip",9="I>>> Start",10="I>>>...
  • Page 47 PRON NA60-MB0 Alarm",51="PT4 Trip",52="PT5 Alarm",53="PT5 Trip",54="PT6 Alarm",55="PT6 Trip",56="PT7 Alarm",57="PT7 Trip",58="PT8 Alarm",59="PT8 Trip",60="74TCS Trip",61="74CT Trip",62="BF Start",63="BF Trip",64="Logic input" Version 3.50 PRON NA60-MB0 Remote Setting Manual Page: 47 of 59...
  • Page 48 PRON NA60-MB0 TYPE Range ENUM Fault 0 Fault n. 0 - IL1r ULONG 16000 Fault n. 0 - IL2r ULONG 16000 Fault n. 0 - IL3r ULONG 16000 Fault n. 0 - UL1r ULONG 112000 Fault n. 0 - UL2r ULONG 112000 Fault n.
  • Page 49 PRON NA60-MB0 Fault n. 0 - Inputs IN27-IN42 UWORD Fault n. 0 - Outputs K1-K6 UWORD Fault n. 0 - Outputs K7-K10 UWORD Fault n. 0 - Fault cause info Version 3.50 PRON NA60-MB0 Remote Setting Manual Page: 49 of 59...
  • Page 50 PRON NA60-MB0 TYPE Range ENUM Fault 1 Fault n. 1 - Fault counter LONG Fault n. 1 - Date Fault n. 1 - Time Fault n. 1 - Fault cause WORD 0="No faults",1="U< Start",2="U< Trip",3="U<< Start",4="U<< Trip",5="I> Start",6="I> Trip",7="I>> Start",8="I>> Trip",9="I>>> Start",10="I>>>...
  • Page 51 PRON NA60-MB0 Alarm",51="PT4 Trip",52="PT5 Alarm",53="PT5 Trip",54="PT6 Alarm",55="PT6 Trip",56="PT7 Alarm",57="PT7 Trip",58="PT8 Alarm",59="PT8 Trip",60="74TCS Trip",61="74CT Trip",62="BF Start",63="BF Trip",64="Logic input" Version 3.50 PRON NA60-MB0 Remote Setting Manual Page: 51 of 59...
  • Page 52 PRON NA60-MB0 TYPE Range ENUM Fault 1 Fault n. 1 - IL1r ULONG 16000 Fault n. 1 - IL2r ULONG 16000 Fault n. 1 - IL3r ULONG 16000 Fault n. 1 - UL1r ULONG 112000 Fault n. 1 - UL2r ULONG 112000 Fault n.
  • Page 53 PRON NA60-MB0 Fault n. 1 - Inputs IN27-IN42 UWORD Fault n. 1 - Outputs K1-K6 UWORD Fault n. 1 - Outputs K7-K10 UWORD Fault n. 1 - Fault cause info Version 3.50 PRON NA60-MB0 Remote Setting Manual Page: 53 of 59...
  • Page 54 PRON NA60-MB0 TYPE Range ENUM Events Event n. 0 - Event counter LONG Event n. 0 - Date Event n. 0 - Hour SEE MANUAL END PAGE Event n. 0 - Cause WORD Event n. 1 - Event counter LONG Event n.
  • Page 55 PRON NA60-MB0 TYPE Range ENUM Events Event n. 8 - Event counter LONG Event n. 8 - Date Event n. 8 - Hour SEE MANUAL END PAGE Event n. 8 - Cause WORD Event n. 9 - Event counter LONG Event n.
  • Page 56 PRON NA60-MB0 TYPE Range ENUM Events Event n. 16 - Event counter LONG Event n. 16 - Date Event n. 16 - Hour SEE MANUAL END PAGE Event n. 16 - Cause WORD Event n. 17 - Event counter LONG Event n.
  • Page 57 PRON NA60-MB0 TYPE Range ENUM Test TEST state 0=OFF, 1=ON PLC2 Lettura digitali PLC2 Discrete Input - 1 0=OFF, 1=ON PLC2 Discrete Input - 2 0=OFF, 1=ON PLC2 Discrete Input - 3 0=OFF, 1=ON PLC2 Discrete Input - 4 0=OFF, 1=ON PLC2 Discrete Input - 5 0=OFF, 1=ON PLC2 Discrete Input - 6...
  • Page 58 PRON NA60-MB0 Event n. x - Cause 0="No events",1="IN1 on",2="IN1 off",3="IN2 on",4="IN2 off",5="IN3 on",6="IN3 off", 7="IN4 on",8="IN4 off",9="IN5 on",10="IN5 off",11="IN6 on",12="IN6 off",13="IN7 on", 14="IN7 off",15="IN8 on",16="IN8 off",17="IN9 on",18="IN9 off",19="IN10 on", 20="IN10 off",21="IN11 on",22="IN11 off",23="IN12 on",24="IN12 off",25="IN13 on", 26="IN13 off",27="IN14 on",28="IN14 off",29="IN15 on",30="IN15 off",31="IN16 on", 32="IN16 off",33="IN17 on",34="IN17 off",35="IN18 on",36="IN18 off",37="IN19 on", 38="IN19 off",39="IN20 on",40="IN20 off",41="IN21 on",42="IN21 off",43="IN22 on", 44="IN22 off",45="IN23 on",46="IN23 off",47="IN24 on",48="IN24 off",49="IN25 on",...
  • Page 59 PRON NA60-MB0 296="Test General Start on",297="Test General Start off",298="Test General Trip on", 299="Test General Trip off",300="Test Quality on",301="Test Quality off", 302="VIN LinkLoss on",303="VIN LinkLoss off",304="VIN change settings on", 305="VIN change settings off",306="Block F51S1 on",307="Block F51S1 off", 308="Block F51S2 on",309="Block F51S2 off",310="Block F51S3 on",311="Block F51S3 off", 312="Block F51NS1 on",313="Block F51NS1 off",314="Block F51NS2 on", 315="Block F51NS2 off",316="Block F51NS3 on",317="Block F51NS3 off", 318="Block F67S1 on",319="Block F67S1 off",320="Block F67S2 on",321="Block F67S2 off",...

This manual is also suitable for:

N60-mb2 pron seriesPron na60-mb2Pron na60-mb0

Table of Contents

Save PDF