Protocol Kube ENG01
Protocol Kube ENG01
Modbus PG20-2_4-150218_FW4_2_0 1
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
INDEX
1 Preface............................................................................................ 3
2 Physical connection ..................................................................... 3
2.1 Interface............................................................................................................................... 3
2.2 Line...................................................................................................................................... 3
3 Communication protocol............................................................... 4
3.1 Function code 3: read multiple registers (maximum 16 registers)........................................ 4
3.2 Function code 6: write a single word (one location)............................................................. 5
3.3 Function code 16: preset multiple registers (maximum 16 registers)................................... 6
3.4 The exception reply.............................................................................................................. 7
3.5 Cyclic redundancy check (CRC).......................................................................................... 8
4 Data exchange................................................................................ 10
4.1 Some definitions.................................................................................................................. 10
4.2 Memory zones..................................................................................................................... 10
4.3 Variables zones.................................................................................................................... 10
4.4 Most important changes...................................................................................................... 10
5 Address map.................................................................................. 11
5.1 Common Variables............................................................................................................... 11
5.2 Group of variables compatible with the old Ascon Tecnologic’s instruments
(before Kube series)............................................................................................................. 13
5.3 Instrument identification parameters.................................................................................... 15
5.4 Parameters Setting: Addresses form 280 hex (640 dec) and
2800 hex (10240 dec).......................................................................................................... 17
2 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
1 PREFACE
Tecnologic uses ModBUS® RTU communication protocol.
It is a royalty free protocol and it is easy to implement.
For ModBus RTU a vast literature is available also in internet.
The ModBus protocol represent all data in hexadecimal format.
All communication string finish with a check sum type CRC (cyclic redundancy check).
Every devices in a line must have different address.
The protocol allows one master only and up to 255 slaves
Only Master unit can start the transmission by sending the address of the unit and the command to execute.
Only the unit having the same address will answer to the master.
The transmission characteristics are usually programmable:
Device address: From 1 to 255.
Baud rate: bit per second.
byte format:
–– 1 start bit;
–– 8 data bitis;
–– 2 final bits composed as follows:
1 parity bit (even or odd);
1 stop bit;
or
no parity bit;
2 stop bits.
The K30 allows to configure:
–– address (1 – 254);
–– Baud rate (1200 – 2400 – 9600 – 19200 – 38400).
The byte format is fixed: 8 bits without parity and 1 stop bit.
This document is intended to describe the K30 controllers using the MODBUS protocol in their communication capability and is mainly
directed to technicians, system integrators and software developers.
2 PHYSICAL CONNECTION
2.1 Interface
Kube series controllers are provided with a RS485 serial communication interface, insulated so that any problem arising from ground
potential is removed.
While at rest, the instruments are in a receive condition and are revert to transmission after a correct message has been decoded that
matches the configured address.
2.2 Line
The instruments are equipped with 2 terminals named A and B.
The connection between Kube s has to be carried on in parallel, i.e. all A terminals have to be connected between them so as B terminals.
A termination resistor of 120W is required to maintain the quiescent condition on the line.
Adopted baud rates range 1200... 38400 baud, that is very satisfactory for application performances, yet very slow for RS485 interface.
This fact allows the wiring of the line with a medium quality twisted pair cable: total capacity of the line should not exceed 200 nF.
The line can be up to 1000 meters in length.
Modbus PG20-2_4-150218_FW4_2_0 3
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
3 COMMUNICATION PROTOCOL
The protocol adopted by K30 is a subset of the widely used MODBUS RTU (JBUS, AEG Schneider Automation, Inc. registered trademark)
protocol, so that connections are easy for many commercial PLCs and supervisory programs.
For users needing to develop their own communication software, all information is available as well as implementation hints.
The MODBUS RTU (JBUS) communication functions implemented in Kube series are:
Function 3 Read n register;
Function 6 Preset one register;
Function 16 Preset multiple registers.
These functions allow the supervisory program to read and modify any data of the controller. The communication is based on messages
sent by the master station (host) to the slave stations (K 30) and viceversa. The slave station that recognises the message as sent to it,
analyses the content and, if it is formally and semantically correct, generates a reply message directed back to the master.
The communication process involves five types of messages:
In the “Data(s)” fild the values of the requested registers are presented in word format [2 byte] : the first byte represent the MSB (Most
Significant Byte) while the second byte represent the LSB (Less Significant Byte). This mode will be the same for all requested locations.
Example:
The master requires to the address 1 the value of the locations 25 and 26 (0x19 and 0x1A).
4 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
Example:
The master unit asks to the slave 1 to write in the memory location 770 (0x302) the value 10 (0x0A).
Modbus PG20-2_4-150218_FW4_2_0 5
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
Example:
The master unit requires to the slave 1 to write in the registers 10314 (0x284A) and 10315 (0x284B) the values 100 (0x64) and 200 (oxC8)
6 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
Exception replay
Data Byte (Hex)
Slave address 1
Function code 1
Error code 1
CRC-16 (LSB) 1
CRC-16 (MSB) 1
Modbus PG20-2_4-150218_FW4_2_0 7
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
next character
n = 0
YES
Carry = 1?
NO
CRC = CRC exor POLY
n = n + 1
YES
N < 8?
NO
YES Other
character?
NO
The CRC
calculation
is finished
The polinomial adopted by MODBUS RTU (JBUS) is 1010 0000 0000 0001.
Note: The first transmitted character of the CRC word is the least significant between calculated bytes.
8 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
Follows a subrutine made with “C” able to calculate the CTC-16.
/* ---------------------------------------------------------------
crc_16 calcolo del crc_16
Parametri di ingresso:
buffer: stringa di caratteri di cui calcolare il CRC-16
length: numero di bytes della stringa
Modbus PG20-2_4-150218_FW4_2_0 9
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
4 DATA EXCHANGE
This section contains informations about data exchanged with Kube series controllers concerning numerical and not numerical data, with
their formats and limits.
10 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
5 ADDRESS MAP
All Kube instruments use only words:
Initial address Final address
Meaning
Hex Dec Hex Dec
Group of variables common to all new Ascon Tecnologic’s instruments: numeric values calculated and
1 1 1D 29
dinamically updated. Available in read and write operations
Group of variables compatible with the old Ascon Tecnologic’s instruments (before Kube series): nu-
200 512 250 592
meric values calculated and dinamically updated. Available in read and write operations
280 640 31B 795 Configuration parameters: Numeric and symolic values. Available in read and write operations
Repetition of the configuration parameters: Numeric and symolic values. Available in read and write
2800 10240 289B 10395
operations
Modbus PG20-2_4-150218_FW4_2_0 11
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
Address Dec.
no. Description r/w
Hex Dec Point
Instrument status
bit 0 = Automatic
bit 1 = manual
bit 2 = Standby
bit 3 = Remote Set point (temporary) used
bit 4 = Auto-tuning active
bit 5 = Self tuning active
12A C 12 bit 6 = Reserved 0 r
bit 7 = Timer running
bit 8 = Soft start running
bit 9 = Ramp for set point change (up or down) running
bit 10 = Delay at start up (od) running
bit 11 = Program running
bit 12 = Measure status (0 = OK while 1 = error).
bit 13÷15 = Reserved
Alarms reset
13A D 13 0 = Not resetted 0 r/w
1 = Resetted
Alarms acknowledge
14A E 14 0 = Not acknowledge 0 r/w
1 = acknowledge
Control status
0 = Automatic
15A F 15 0 r/w
1 = Manual
2 = Stand-by
Remote set point (temporary) (from serial link)
16A 10 16 Range: SPLL ÷ SPLH dP r/w
Note: the remote set point is stored in RAM
Auto tuning activation
17A 11 17 0 = not active 0 r/w
1 = active
Power output used when a measuring error is detected.
18A 12 18 Range: -100 ÷ 100 0 r/w
Note: This value is stored in RAM
Default parameters loading.
19A 13 19 0 r/w
-481 = Default parameter loading
Parameters table identification code
Range: 0 ÷ 65535
20A 14 20 Note: The word is composed by two parts: 0 r
- Low byte – Version of the parameter table
- High byte – Version of the family protocoll
Instrument identification code
20 = KM1/KM3
21A 15 21 0 r
25 = KX1/KX3
26 = KR1/KR3
First temporary code for speed configuration
The code is composed by two distinct 4 digits subcodes:
AABB where:
AA = Input type: 0 ÷ 25
22A 16 22 BB = Control type and service functions 0 ÷ 21 0 r/w
Note: 10000 = Temporary value not inserted
The programmed codes will be activated only after both have been correctly be pro-
grammed.. The order has no importance.
Second temporary code for speed configuration
The code is composed by two distinct 4 digits subcodes:
CDEF where:
C = Alarm type 1 0 ÷ 9
D = Alarm type 2 0 ÷ 9
23A 17 23 E = Alarm type 3 0 ÷ 9 0 r/w
F = Enabling service functions 0 ÷ 4
Note: 10000 = Temporary value not inserted
The programmed codes will be activated only after that both have been correctly pro-
grammed. The order has no importance.
12 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
Address Dec.
no. Description r/w
Hex Dec Point
First final code for speed configuration
When programmed, the code is composed by two distinct 4 digits subcodes:
AABB where:
24A 18 24 0 r
AA = Input type: 0 ÷ 25
BB = Control type and output functions 0 ÷ 21
If not programmed, the return value is -1 = Code not programmed.
Second temporary code for speed configuration
When programmed, the code is composed by two distinct 4 digits subcodes:
CDEF where:
C = Alarm 1 type 0 ÷ 9
25A 19 25 0 r
D = Alarm 2 type 0 ÷ 9
E = Alarm 3 type 0 ÷ 9
F = Enabling service functions 0 ÷ 4
If not programmed, the return value is -1 = Code not programmed.
Time to end of running program segment
26A 1A 26 Range: 0 ÷ 9959 (hh.mm or mm.ss) 0 r
Note: When the program is not active, the return value is 0.
Manual autotuning start request pending for Od or Soft start
27A 1B 27 Range: 0 = No pending request waiting for the execution; 0 r
1 = Pending request waiting for the execution
Autotuning start request pending for setpoint change for Od or Soft start
28A 1C 28 Range: 0 = No pending request waiting for the execution; 0 r
1 = Pending request waiting for the execution
Value to be retransmitted on the analogue Output
29A 1D 29 0 r/w
Range: Ao1L ÷ Ao1H
5.2 Group of variables compatible with the old Ascon Tecnologic’s instruments
(before Kube series)
Address Dec.
no. Description r/w
Hex Dec Point
PV : Measured value
1B 0200 512 dP r
As Modbus address 1
Number of decimal figure of the measured value
2B 0201 513 0 r
As Modbus address 2
Power output
3B 0202 514 2 r
As Modbus address 4
Power output of the heating output
4B 0203 515 2 r
Range: 0 ÷ 100.00 (%)
Power output of the cooling output
5B 0204 516 2 r
Range: 0 ÷ 100.00 (%)
Alarm 1 status
6B 0205 517 0 = OFF 0 r
1 = ON
Alarm 2 status
7B 0206 518 0 = OFF 0 r
1 = ON
Alarm 3 status
8B 0207 519 0 = OFF 0 r
1 = ON
Operative set point
9B 0208 520 DP r
As Modbus address 3
LBA status
10B 020A 522 0 = OFF
1 = ON
0 r
Overload alarm status
11B 020E 526 0 = OFF
1 = ON
Controller status
0 = Stand-by
12B 020F 527 1 = Auto 0 r
2 = Tuning
3 = Manual
Modbus PG20-2_4-150218_FW4_2_0 13
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
Address Dec.
no. Description r/w
Hex Dec Point
Status/remote control of the Output 1
0 = OFF
13B 0224 548 1 = ON 0 r/w
Note: This parameter is writeable when out 1 is “not used” by the controller (o1F output 1
function = nonE). This parameter is stored in RAM
Status/remote control of the Output 2
0 = OFF
14B 0225 549 1 = ON 0 r/w
Note: This parameter is writeable when out 2 is “not used” by the controller (o2F output 1
function = nonE). This parameter is stored in RAM
Status/remote control of the Output 3
0 = OFF
15B 0226 550 1 = ON 0 r/w
Note: This parameter is writeable when out 3 is “not used” by the controller (o3F output 1
function = nonE). This parameter is stored in RAM
Status/remote control of the Output 4
0 = OFF
16B 0227 551 1 = ON 0 r/w
Note: This parameter is writeable when out 4 is “not used” by the controller (o4F output 1
function = nonE). This parameter is stored in RAM
Digital input 1 status
0 = OFF
17B 0240 576 1 = ON 0 r/w
Note: Digital input 1status can be read from the serial port even if the input is not used by
the controller
Digital input 2 status
0 = OFF
18B 0241 577 1 = ON 0 r/w
Note: Digital input 2 status can be read from the serial port even if the input is not used by
the controller
Program status
0 = Not configured
1 = Reset (not running)
2 = Run
19B 0244 580 3 = Hold 0 r/w
4 = Wait (system)
5 = End (system)
6 = Hold + Wait (system)
7 = Continue
Timer status
0 = Not configured
1 = Reset (stop)
20B 0245 581 0 r/w
2 = Run
3 = Hold
4 = End (Read only)
Program step in execution
0 = Program not active
1 = ramp step 1
2 = soak step 1
2 = ramp step 2
21B 0246 582 4 = soak step 2 0 r
5 = ramp step 3
6 = soak step 3
7 = ramp step 4
8 = soak step 4
9 = END
Remaining time to program end
22B 0247 583 Range: 0 ÷ 65535 (minutes when Pru=hh.mm, seconds when Pru=mm.ss) 2 r
Note: When the program is not running the return code is 0
Program events status
0 > E1 = 0 E2 = 0
23B 248 584 1 > E1 = 1 E2 = 0 0 r
2 > E1 = 0 E2 = 1
3 > E1 = 1 E2 = 1
Remaining time to the timer end
2 r
Range: 0 ÷ 65535 (Hours when Tru=hh.mm, Minutes when Tru=mm.ss)
24B 249 585
0 ÷ 9959 (tenth of seconds when Tru=SSS.d)
1
Note: When the timer is not active the return code is 0.
14 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
Address Dec.
no. Description r/w
Hex Dec Point
Wattmeter:
The meaning of this parameter is defined by the CO.ty parameter setting.
CO.ty = 0ff 0
CO.ty = 1 Instantaneous power (kW);
CO.ty = 2 Consumed energy (kWh);
25B 24A 586 0 r
CO.ty = 3 Energy used during program execution (kWh);
CO.ty = 4/6 Total worked days;
CO.ty = 5/7 Total worked hours;
CO.ty = 8/10 Totalizer of control relay worked days;
CO.ty = 9/11 Totalizer of control relay worked hours.
Duration of first program ramp
26B 24B 587 0 r
Range: 0 ÷ 9999 s
Days counted with the controller Powered ON
27B 24C 588 0 r
Range: 0 ÷ 9999
Power output when the instrument is in manual mode
28B 250 592 2 r/w
Range:-10000 ÷ 10000 (%)
Modbus PG20-2_4-150218_FW4_2_0 15
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
Address Dec.
no. Description r/w
Hex Dec Point
Model Code – Output 3 type
Range: 0x2D = ‘-’ - Not present
19 812 2066 0x4D = ‘M’ – Servomotor command relay 0 r
0x4F = ‘O’ - SSR
0x52 = ‘R’ - Relay
Model Code – Output 4 type
20 813 2067 Range: 0x43 = ‘D’ - Output 4 (VDC for SSR)/Sensor Power Supply/Digital Input 0 r
DI2
Model Code – Serial communication type
21 814 2068 Range: 0x2D = ‘-’ - TTL 0 r
0x53 = ‘S’ - Rs485 Modbus
Model Code – Terminal type
Range: 0x2D = ‘-’ - Standard (screw terminals not removable)
22 815 2069 0x45 = ‘E’ - Removable screw terminals 0 r
0x4D = ‘M’ - Removable spring terminals
0x4E = ‘N’ - Removable terminals (the fixed part only)
23 816 2070 Model Code – Reserved 0 r
24 817 2071 Model Code – Reserved 0 r
25 818 2072 Model Code – Reserved 0 r
26 819 2073 Model Code – Reserved 0 r
27 81A 2074 Model Code – Reserved 0 r
28 81B 2075 Model Code – Reserved 0 r
29 81C 2076 Model Code – Reserved 0 r
30 81D 2077 Model Code – Reserved 0 r
31 81E 2078 Model Code – Reserved 0 r
32 81F 2079 Model Code – Reserved 0 r
33 820 2080 Model Code – Reserved 0 r
34 821 2081 Model Code – Reserved 0 r
35 822 2082 Model Code – Reserved 0 r
36 823 2083 Model Code – Reserved 0 r
37 824 2084 Model Code – Reserved 0 r
38 825 2085 Model Code – Reserved 0 r
39 826 2086 Serial Number – First part (LL) 0 r
40 827 2087 Serial Number – Second part (L) 0 r
41 828 2088 Serial Number – Third part (H) 0 r
42 829 2089 Serial Number – Fourth part (HH) 0 r
Calibration Date – Day
43 82A 2090 0 r
Range: 1 ÷ 31
Calibration Date – Month
44 82B 2091 0 r
Range: 1 ÷ 12
45 82C 2092 Calibration Date – Year 0 r
16 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
5.4 Parameters Setting: Addresses form 280 hex (640 dec) and 2800 hex (10240 dec)
5.4.1 inP GROUP - Main and auxiliary input configuration
Address Dec.
no. Param. Description Values r/w
Hex Dec Point
0 = J = TC J,
1 = crAL = TC K,
2 = S = TC S,
3 = r = TC R,
4 = t = TC T,
5 = ir.J = IRS J,
6 = ir.cA = IRS K,
7 = Pt1 = RTD Pt100,
Model C (Pt100, Pt1000) 8 = Pt10 = RTD Pt1000,
9 = 0.60 = 0... 60 mV,
10 = 12.60 = 12... 60 mV,
11 = 0.20 = 0... 20 mA,
12 = 4.20 = 4... 20 mA,
13 = 0.5 = 0... 5 V,
14 = 1.5 = 1... 5 V,
15 = 0.10 = 0... 10 V,
280 640 16 = 2.10 = 2... 10 V
1 SEnS 0 r/W
2800 10240 0 = J = TC J,
1 = c rAL = TC K,
2 = S = TC S,
3 = r = TC R,
4 = t = TC T,
5 = ir.J = IRS J,
6 = ir.cA = IRS K,
7 = Ptc = TC KTY81-121,
Model E (Ptc, Ntc) 8 = ntc = NTC 103-AT2,
9 = 0.60 = 0... 60 mV,
10 = 12.60 = 12... 60 mV,
11 = 0.20 = 0... 20 mA,
12 = 4.20 = 4... 20 mA,
13 = 0.5 = 0... 5 V,
14 = 1.5 = 1... 5 V,
15 = 0.10 = 0... 10 V,
16 = 2.10 = 2... 10 V
281 641 Decimal Point Position (linear inputs) 0... 3
2 dp Decimal Point Position (different than 0 r/w
2801 10241 linear inputs) 0/1
282 642
3 SSC Initial scale read-out for linear inputs -1999... 9999 dP r/w
2802 10242
283 643
4 FSc Full Scale Readout for linear inputs -1999... 9999 dP r/w
2803 10243
284 644 0 = C = °C
5 unit Engineer unit 0 r/w
2804 10244 1 = F = °F
Digital filter on the measured value
285 645 Note: This filter affects the control
6 Fil 0 (= OFF)... 200 (seconds) 1 r/w
2805 10245 action, the PV retransmission
and the alarms action.
286 646 Sensor error used to enable the safety or = Over range
7 inE ou = Under range 0 r/w
2806 10246 output value our = Over and under range
287 647
8 oPE Safety output value (% of the output) -100... 100 0 r/w
2807 10247
0 = on = Output used as PWS for TX,
288 648 1 = out4 = Output 4 (digital output 4),
9 IO4.F I/O 4 function 0 r/w
2808 10248 2 = dG2c = Digital input 2 driven by contact,
3 = dG2U = Digital input 2 driven by voltage
Modbus PG20-2_4-150218_FW4_2_0 17
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
Address Dec.
no. Param. Description Values r/w
Hex Dec Point
18 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
Address Dec.
no. Param. Description Values r/w
Hex Dec Point
0 = NonE = Output not used
1 = H.rEG = Heating output
2 = c.rEG = Cooling output
Out 1 function
3 = r.inP = Measure retransmission
(when Out 1 is a linear output)
4 = r.Err = Error (sp - PV) retransmission
5 = r.SP = Set point retransmission
6 = r.SEr = Serial value retransmission
0 = NonE = Output not used
1 = H.rEG = Heating output
2 = c.rEG = Cooling output
3 = AL = Alarm output
4 = t.out = Timer output
5 = t.HoF = Timer out -OFF in hold
28C 652 6 = P.End = Program end indicator
14 o1F 7 = P.HLd = Program hold indicator 0 r/w
280C 10252 8 = P.uit = Program wait indicator
9 = P.run = Program run indicator
Out 1 function 10 = P.Et1 = Program Event 1
(when Out1 is a digital output) 11 = P.Et2 = Program Event 2
12 = or.bo = Out-of-range or burn out indicator
13 = P.FAL = Power failure indicator
14 = bo.PF = Out-of-range, burn out and Power
failure indicator
15 = St.bY = Stand by status indicator
16 = diF.1 = The output repeats the digital
input 1 status
17 = diF.2 = The output repeats the digital
input 2 status
18 = on = Out 1 always ON
28D 653 Initial scale value of the analog retrans-
15 Ao1L -1999 ... Ao1H dp r/w
280D 10253 mission (KM3 only)
28E 654 Full scale value of the analog retrans-
16 Ao1H Ao1L ... 9999 dp r/w
280E 10254 mission (KM3 only)
0... 63
+1 = Alarm 1
28F 655 +2 = Alarm 2
17 o1AL Alarms linked up with the out 1 +4 = Alarm 3 0 r/w
280F 10255 +8 = Loop break alarm
+16 = Sensor Break
+32 = Overload on output 4
0 = dir = Direct action
290 656 1 = rEU = Reverse action
18 o1Ac Out 1 action 0 r/w
2810 10256 2 = dir.r = Direct with reversed LED
3 = ReU.r = Reverse with reversed LED
291 657
19 o2F Out 2 function See the values of 13 = o1F parameter 0 r/w
2811 10257
292 658
20 o2AL Alarms linked up with the out 2 See the values of 16 = o1AL parameter 0 r/w
2812 10258
293 659
21 o2Ac Out 2 action See the values of 17 = o1Ac parameter 0 r/w
2813 10259
294 660
22 o3F Out 3 function See the values of 13 = o1F parameter 0 r/w
2814 10260
295 661
23 o3AL Alarms linked up with the out 3 See the values of 16 = o1AL parameter 0 r/w
2815 10261
296 662
24 o3Ac Out 3 action See the values of 17 = o1Ac parameter 0 r/w
2816 10262
297 664
25 o4F Out 4 function See the values of 13 = o1F parameter 0 r/w
2817 10264
298 664
26 o4AL Alarms linked up with the out 4 See the values of 16 = o1AL parameter 0 r/w
2818 10264
299 665
27 o4Ac Out 4 action See the values of 17 = o1Ac parameter 0 r/w
2819 10265
Modbus PG20-2_4-150218_FW4_2_0 19
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
20 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
Address Dec.
no. Param. Description Values r/w
Hex Dec Point
2A7 679
41 HAL2 AL2 hysteresis 1... 9999 (E.U.) dP r/w
2827 10279
2A8 680
42 AL2d AL2 delay From 0 (oFF) to 9999 (s) 0 r/w
2828 10280
0 = Alarm 2 disabled during Stand by and out of range
2A9 681 Alarm 2 enabling during Stand-by 1 = Alarm 2 enabled in stand by mode
43 AL2o 2 = Alarm 2 enabled in out of range condition 0 r/w
2829 10281 mode and out of range conditions 3 = Alarm 2 enabled in stand by mode and in over range
condition
Modbus PG20-2_4-150218_FW4_2_0 21
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
Address Dec.
no. Param. Description Values r/w
Hex Dec Point
22 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
Address Dec.
no. Param. Description Values r/w
Hex Dec Point
2C7 711 Maximum power output used
73 St.P -100... 100 (%) 0 r/w
2847 10311 during soft start
2C8 712
74 SSt Soft start time --0 (oFF)... 800 = inF (h.mm) 2 r/w
2848 10312
2C9 713
75 SS.tH Threshold for soft start disabling -2000 = (oFF)... 9999 (E.U.) dP r/w
2849 10313
Modbus PG20-2_4-150218_FW4_2_0 23
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
Address Dec.
no. Param. Description Values r/w
Hex Dec Point
24 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
Address Dec.
no. Param. Description Values r/w
Hex Dec Point
2EE 750 From SPLL to SPHL
112 Pr.S4 Set point of the 4th soak dP r/w
286E 10350 -8000 Program End
2EF 751
113 Pr.G4 Gradient of the 4th ramp 1... 10000 (inF= Step transfer) Engineering Unit/minute 1 r/w
286F 10351
2F0 752
114 Pr.t4 Time of the 4th soak 0... 9959 (hh.mm or mm.ss) 2 r/w
2870 10352
2F1 753
115 Pr.b4 Wait band of the 4th soak 0 (oFF) to 9999 (E.U.) 0 r/w
2871 10353
2F2 754
116 Pr.E4 Events of the 4th group 0000... 1111 2 r/w
2872 10354
2F3 755 0 = rES = Program reset
117 Pr.St Program status 1 = run = Program start 0 r/w
2873 10355 2 = HoLd = Program hold
Modbus PG20-2_4-150218_FW4_2_0 25
Kube Family Communication Protocol Ascon Tecnologic S.r.l.
Address Dec.
no. Param. Description Values r/w
Hex Dec Point
0 = nonE = Standard display
1 = Pou = Power output
2 = SPF = Final set point
3 = Spo = Operative set point
4 = AL1 = Alarm 1 threshold
5 = AL2 = Alarm 2 threshold
6 = AL3 = Alarm 3 threshold
7 = Pr.tu = - During a soak, the instrument shows the soak
elapsed time;
-- - During a ramp the display shows the operative set point.
At the end of the program execution, the instrument will show
“P.End” messages alternately with the measured value.
-- - When no program is running, the instrument shows the
standard display
8 = Pr.td = - During a soak, the instrument shows the soak
remaining
time (count down).
-- - During a ramp the display shows the operative set point.
2F8 760 Display At the end of the program execution, the instrument shows
122 diSP “P.End” messages alternately with the measured value. r/w
2878 10360 management
-- - When no program is running, the instrument shows the
standard display.
9 = P.t.tu = When the programmer is running, the display shows the total
elapsed time. At the end of the program execution, the instrument
shows “t.End” messages alternately with the measured value.
10 = P.t.td = When the programmer is running, the display shows the
total remaining time (count down). At the end of the program
execution, the instrument shows “P.End” messages alternately with
the measured value.
11 = ti.uP = When the timer is running, the display shows the timer
counting up. At the end of the counting, the instrument shows
“t.End” messages alternately with the measured value.
12 = ti.du = When the timer is running, the display shows the timer counting
down. At the end of the counting, the instrument shows “t.End”
messages alternately with the measured value.
13 = PErc = Percent of the power output used during soft start (when the
soft start time is equal to infinite, the limit is ever active and it can be
used also when ON/OFF control is selected)
0 = The display colour changes to point out the actual deviation (PV - SP)
2F9 761 1 = Display red (fix)
123 di.cL Display colour
2879 10361 2 = Display green (fix)
3 = Display orange (fix)
2FA 762 Deviation for
124 AdE display colour 1... 9999 Dp r/w
287A 10362 management
2FB 763
125 di.St Display Timeout 0 = oFF (display always ON)... 9959 (mm.ss) 2 r/w
287B 10363
2FC 764 Filter on the
126 fiLd 0 = oFF (filter disabled)... 100 Dp r/w
287C 10364 displayed value
0 = nonE = Bargraph not lit
1 = Pou = PID Output power (single action: 0... 100%,
double action: -100... +100%)
2 = Po.h = Energy Used (kWh)
2FD 765 Bar graph 3 = Pr.tu = Elapsed time of the program in execution
127 Bg.F 0 r/w
287D 10365 Function 4 = Pr.td = Time to end of the program in execution
5 = Pr.tS = Time to end of the program segment in execution
6 = ti.uP = Elapsed time of timer (T1 and T2)
7 = ti.du = Time to end of timer (T1 and T2)
8 = r.iSP = Time to preventive maintenance
0 = AS.Pr = Starts in the same way it was prior to the power down
2FE 766 Instrument status 1 = Auto = Starts in Auto mode
128 dSPu 0 r/w
287E 10366 at power ON 2 = oP.0 = Starts in manual mode with a power output equal to zero
3 = St.bY = Starts in stand-by mode
0 = ALL = All modes will be selectable by the next parameter
2FF 767 Operative modes 1 = Au.oP = Auto and manual (OPLO) mode only will be selectable by
129 oPr.E the next parameter 0 r/w
287F 10367 enabling 2 = Au.Sb = Auto and Stand-by modes only will be selectable by the next
parameter
26 Modbus PG20-2_4-150218_FW4_2_0
Ascon Tecnologic S.r.l. Kube Family Communication Protocol
Address Dec.
no. Param. Description Values r/w
Hex Dec Point
Modbus PG20-2_4-150218_FW4_2_0 27