rol & infomech communication protocol

53
ROL & INFOMECH Communication Protocol SCADA System Communication Protocol Version 2.0 UPDATE:2014/10/14 Jabatan Pengairan Dan Saliran

Upload: others

Post on 28-Mar-2022

0 views

Category:

Documents


0 download

TRANSCRIPT

ROL & INFOMECH Communication ProtocolJabatan Pengairan Dan Saliran
ROL & INFOMECH Communication Protocol
[Type the company name]
1.1 Data Requirement ......................................................................................................................... 3
1.2 Communication Chart ................................................................................................................... 3
1.3 Communication URL ..................................................................................................................... 4
1.3.1 ROL Server .............................................................................................................................. 4
1.3.2 Infomech Server ..................................................................................................................... 4
2.0 XML Format ........................................................................................................................... 5
2.1 Real Data ....................................................................................................................................... 5
2.2 Trend ............................................................................................................................................. 7
2.3 Alarm ............................................................................................................................................. 9
3.0 Real Data Index Reference Table ........................................................................................... 13
3.1 Gate ............................................................................................................................................. 13
3.2 Pump ........................................................................................................................................... 16
3.4 Crest Gate ................................................................................................................................... 26
3.5 Solar Aerator ............................................................................................................................... 29
3.6 Trash Rake ................................................................................................................................... 34
3.7 Water Quality .............................................................................................................................. 36
4.1 Gate ............................................................................................................................................. 38
4.2 Pump ........................................................................................................................................... 40
4.4 Crest Gate ................................................................................................................................... 45
4.5 Solar Aerator ............................................................................................................................... 46
4.6 Trash Rake ................................................................................................................................... 48
5.1 Gate ............................................................................................................................................. 50
5.2 Pump ........................................................................................................................................... 50
Gate
Pump
Station A Station B Station C Station D
Step 1 - Request Latest Date Time Example: http://rol-
jps.selfip.com/xml/requestUpdateInfo.php? ref_no=xxxxxxxxx Return Format: <data>
<refno>xxxxxxx</refno>
Step 2 – Sender Example: http://rol- jps.selfip.com/xml/xmlReceive.php?ref_no =xxxxxxxx
Step 3 – Receiver Verify incoming data, process and store to database
Check Update http://rol-jps.selfip.com/xml/requestUpdateInfo.php?&ref_no=xxxxxxxxxxxxx
Check Update http://infomech.selfip.com/xml/requestUpdateInfo.php?&ref_no=xxxxxxxxxxxxx
ROL & INFOMECH Communication Protocol
[Type the company name]
5 2.0 XML Format
2.1 Real Data 1 <?xml version="1.0" encoding="utf-8"?> The first line is the XML declaration. It
defines the XML version (1.0) and the encoding used UTF-8 stands for Unicode Transformation Format-8
2 < LOGGING> XML documents must contain a start root element.
3 <logging_type> RealData (Case Sensitive)
4 <vender_id> Vender ID
5 <vender> Vender Name
7 <station_id> Station ID
8 <station_name> Station Name
9 <send_date> Sending date Year = 2013 (4 digits) Month = 10 (Leading Zero) Date = 31 (Leading Zero)
10 <send_time> Sending time Hour = 23(Leading Zero) Minute = 56(Leading Zero) Second = 03(Leading Zero)
11 <update_date> Data updated date Year = 2013 (4 digits) Month = 10 (Leading Zero) Date = 31 (Leading Zero)
12 <update_time> Data updated date Hour = 23(Leading Zero) Minute = 56(Leading Zero) Second = 03(Leading Zero)
13 <total_data> Total record
14 <data1> Start a new nested elements With new data index.
15 <index> Give unique index
16 <tag> Water_Level
25 <status> Complete
ROL & INFOMECH Communication Protocol
[Type the company name]
6 2.1.1 Real Data XML Format Sample
<?xml version="1.0" encoding="utf-8"?> <LOGGING> <logging_type>RealData</logging_type> <vender_id>vender id</vender_id> <vender>vender name</vender> <station_ref>reference number</station_ref> <station_id>station id</station_id> <station_name>station name</station_name> <send_date> <year>2012</year> <month>01</month> <day>01</day> </send_date> <send_time> <hour>01</hour> <minute>02</minute> <second>03</second> </send_time> <update_date> <year>2012</year> <month>10</month> <day>30</day> </update_date> <update_time> <hour>10</hour> <minute>34</minute> <second>54</second> </update_time> <total_data>29</total_data> <data1> <index>8</index> <tag>RED_PHASE</tag> <desc>Red Phase Status</desc> <eunit>-</eunit> <value>1</value> </data1> <data2> <index>9</index> <tag>YEL_PHASE</tag> <desc>Yellow Phase Status</desc> <eunit>-</eunit> <value>1</value> </data2>
…………………………………….…. <status> <message>Complete</message> </status> </LOGGING>
ROL & INFOMECH Communication Protocol
[Type the company name]
7 2.2 Trend 1 <?xml version="1.0" encoding="utf-8"?> The first line is the XML declaration. It
defines the XML version (1.0) and the encoding used UTF-8 stands for Unicode Transformation Format-8
2 < LOGGING> XML documents must contain a start root element.
3 <logging_type> Trend (Case Sensitive)
4 <vender_id> Vender ID
5 <vender> Vender Name
7 <station_id> Station ID
8 <station_name> Station Name
9 <send_date> Sending date Year = 2013 (4 digits) Month = 10 (Leading Zero) Date = 31 (Leading Zero)
10 <send_time> Sending time Hour = 23(Leading Zero) Minute = 56(Leading Zero) Second = 03(Leading Zero)
11 <total_data> Total record
12 <logging> Start a new nested elements With new data index.
13 <data1> String of data
14 </ logging> End of nested elements.
25 <status> Complete
ROL & INFOMECH Communication Protocol
[Type the company name]
<?xml version="1.0" encoding="utf-8"?> <LOGGING> <logging_type>Trend</logging_type> <vender_id>vender id</vender_id> <vender>vender name</vender> <station_ref>reference number</station_ref> <station_id>station id</station_id> <station_name>station name</station_name> <send_date> <year>2012</year> <month>01</month> <day>01</day> </send_date> <send_time> <hour>01</hour> <minute>02</minute> <second>03</second> </send_time> <total_data>12</total_data> <logging> <data1>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data1> <data2>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data2> <data3>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data3> <data4>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data4> <data5>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data5> <data6>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data6> <data7>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data7> <data8>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data8> <data9>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data9> <data10>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data10> <data11>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data11> <data12>YYYY-MM-DD,HH:MM:SS,value1,value2,value3,value4,value5....</data12> </logging> <status> <message>Complete</message> </status> </LOGGING>
ROL & INFOMECH Communication Protocol
[Type the company name]
9 2.3 Alarm 1 <?xml version="1.0" encoding="utf-8"?> The first line is the XML declaration. It
defines the XML version (1.0) and the encoding used UTF-8 stands for Unicode Transformation Format-8
2 < LOGGING> XML documents must contain a start root element.
3 <logging_type> Alarm = Alarm (Case Sensitive)
4 <vender_id> Vender ID
5 <vender> Vender Name
7 <station_id> Station ID
8 <station_name> Station Name
9 <send_date> Sending date Year = 2013 (4 digits) Month = 10 (Leading Zero) Date = 31 (Leading Zero)
10 <send_time> Sending time Hour = 23(Leading Zero) Minute = 56(Leading Zero) Second = 03(Leading Zero)
11 <update_date> Data updated date Year = 2013 (4 digits) Month = 10 (Leading Zero) Date = 31 (Leading Zero)
12 <update_time> Data updated date Hour = 23(Leading Zero) Minute = 56(Leading Zero) Second = 03(Leading Zero)
13 <total_data> Total record
14 <alarm1> Start a new nested elements With new data index.
15 <index> Give unique index
16 <type> Active / Off
17 <cat> Alarm / Event
19 <description> Gate 1 Open
20 <start_date> Year = 2013 (4 digits) Month = 10 (Leading Zero) Date = 31 (Leading Zero)
21 <start_time> Hour = 23(Leading Zero) Minute = 56(Leading Zero) Second = 03(Leading Zero)
22 <end_date> Year = 2013 (4 digits) Month = 10 (Leading Zero) Date = 31 (Leading Zero)
23 <end_time> Hour = 23(Leading Zero) Minute = 56(Leading Zero) Second = 03(Leading Zero)
24 </alarm1> End of nested elements.
ROL & INFOMECH Communication Protocol
[Type the company name]
10 25 <status> Complete
26 </ LOGGING > End root element.
2.3.1 Alarm XML Format Sample
<?xml version="1.0" encoding="utf-8"?> <LOGGING> <logging_type>Alarm</logging_type> <vender_id>vender id</vender_id> <vender>vender name</vender> <station_ref>reference number</station_ref> <station_id>station id</station_id> <station_name>station name</station_name> <send_date> <year>2012</year> <month>01</month> <day>01</day> </send_date> <send_time> <hour>01</hour> <minute>02</minute> <second>03</second> </send_time> <total_data>3</total_data> <alarm1> <index>104</index> <type>active</type> <cat>Event</cat> <tag>S1_OPEN</tag> <description>Gate 1 Open</description> <start_date> <year>2012</year> <month>01</month> <day>01</day> </start_date> <start_time> <hour>01</hour> <minute>02</minute> <second>03</second> </start_time> <end_date> <year>-9999</year> <month>-9999</month> <day>-9999</day> </end_date> <end_time> <hour>-9999</hour> <minute>-9999</minute> <second>-9999</second> </end_time>
ROL & INFOMECH Communication Protocol
[Type the company name]
11 </alarm1> <alarm2> <index>21</index> <type>off</type> <cat>Event</cat> <tag>S1_MANUAL </tag> <description>Gate 1 In Manual</description> <start_date> <year>2012</year> <month>01</month> <day>01</day> </start_date> <start_time> <hour>01</hour> <minute>02</minute> <second>03</second> </start_time> <end_date> <year>2012</year> <month>01</month> <day>01</day> </end_date> <end_time> <hour>01</hour> <minute>02</minute> <second>03</second> </end_time> </alarm2>
<alarm3> <index>182</index> <type>off</type> <cat>Alarm</cat> <tag>RED_PHASE</tag> <description>Red Phase Fail</description> <start_date> <year>2012</year> <month>01</month> <day>01</day> </start_date> <start_time> <hour>01</hour> <minute>02</minute> <second>03</second> </start_time> <end_date> <year>2012</year> <month>01</month> <day>01</day> </end_date> <end_time> <hour>01</hour>
ROL & INFOMECH Communication Protocol
[Type the company name]
12 <minute>02</minute> <second>03</second> </end_time> </alarm3> <status> <message>Complete</message> </status> </LOGGING>
ROL & INFOMECH Communication Protocol
[Type the company name]
3.1 Gate Index Tag Name Description Format Remark
Phase Indicator
0 / 1 (Int)
Gate Mode
11 S1_DOOR_MODE Gate 1 Mode 0=Local 1=Manual 2=Remote 3=Auto 4=Standby
0 – 4 (Int)
Gate Status
21 S1_DOOR_STAT Gate 1 Status 2=FullOpen 3=FullClose 4=Opening 5=Closing 6=Opened 7=Closed 8=XFClose
2 – 8 (Int)
Gate Condition
31 S1_DOOR_COND Gate 1 Condition 0=Normal 1=NoPower 2=Trip 3=EStop 4=OpnLmt 5=ClsLmt
0-5 (Int)
Gate Position
ROL & INFOMECH Communication Protocol
[Type the company name]
Gate Operation Info
51 S1_ACC_LOHR Gate 1 Accumulator Time Lower Hour hh HH
52 S1_ACC_UPHR Gate 1 Accumulator Time Upper Hour hh HH
53 S1_ACC_SEC Gate 1 Accumulator Time Second ss SS
54 S1_ACC_LPCNT Gate 1 On Accumulator Count Lower Counter (Int)
55 S1_ACC_UOCNT Gate 1 On Accumulator Count Upper Counter (Int)
56 S1_ACCTIME_YY Gate 1 On Accumulator Time Year yy YY
57 S1_ACCTIME_MM Gate 1 On Accumulator Time Month mm MM
58 S1_ACCTIME_DD Gate 1 On Accumulator Time Day dd DD
59 S1_ACCTIME_HH Gate 1 On Accumulator Time Hour hh HH
60 S1_ACCTIME_NN Gate 1 On Accumulator Time Minute mm mm
61 S2_ACC_LOHR Gate 2 Accumulator Time Lower Hour hh HH
62 S2_ACC_UPHR Gate 2 Accumulator Time Upper Hour hh HH
63 S2_ACC_SEC Gate 2 Accumulator Time Second ss SS
64 S2_ACC_LPCNT Gate 2 On Accumulator Count Lower Counter (Int)
65 S2_ACC_UOCNT Gate 2 On Accumulator Count Upper Counter (Int)
66 S2_ACCTIME_YY Gate 2 On Accumulator Time Year yy YY
67 S2_ACCTIME_MM Gate 2 On Accumulator Time Month mm MM
68 S2_ACCTIME_DD Gate 2 On Accumulator Time Day dd DD
69 S2_ACCTIME_HH Gate 2 On Accumulator Time Hour hh HH
70 S2_ACCTIME_NN Gate 2 On Accumulator Time Minute mm Mm
71 S3_ACC_LOHR Gate 3 Accumulator Time Lower Hour hh HH
72 S3_ACC_UPHR Gate 3 Accumulator Time Upper Hour hh HH
73 S3_ACC_SEC Gate 3 Accumulator Time Second ss SS
74 S3_ACC_LPCNT Gate 3 On Accumulator Count Lower Counter (Int)
75 S3_ACC_UOCNT Gate 3 On Accumulator Count Upper Counter (Int)
76 S3_ACCTIME_YY Gate 3 On Accumulator Time Year yy YY
77 S3_ACCTIME_MM Gate 3 On Accumulator Time Month mm MM
78 S3_ACCTIME_DD Gate 3 On Accumulator Time Day dd DD
79 S3_ACCTIME_HH Gate 3 On Accumulator Time Hour hh HH
80 S3_ACCTIME_NN Gate 3 On Accumulator Time Minute mm mm
81 S4_ACC_LOHR Gate 4 Accumulator Time Lower Hour hh HH
82 S4_ACC_UPHR Gate 4 Accumulator Time Upper Hour hh HH
83 S4_ACC_SEC Gate 4 Accumulator Time Second ss SS
84 S4_ACC_LPCNT Gate 4 On Accumulator Count Lower Counter (Int)
85 S4_ACC_UOCNT Gate 4 On Accumulator Count Upper Counter (Int)
86 S4_ACCTIME_YY Gate 4 On Accumulator Time Year yy YY
87 S4_ACCTIME_MM Gate 4 On Accumulator Time Month mm MM
88 S4_ACCTIME_DD Gate 4 On Accumulator Time Day dd DD
89 S4_ACCTIME_HH Gate 4 On Accumulator Time Hour hh HH
90 S4_ACCTIME_NN Gate 4 On Accumulator Time Minute mm mm
91 S5_ACC_LOHR Gate 5 Accumulator Time Lower Hour hh HH
92 S5_ACC_UPHR Gate 5 Accumulator Time Upper Hour hh HH
93 S5_ACC_SEC Gate 5 Accumulator Time Second ss SS
94 S5_ACC_LPCNT Gate 5 On Accumulator Count Lower Counter (Int)
95 S5_ACC_UOCNT Gate 5 On Accumulator Count Upper Counter (Int)
96 S5_ACCTIME_YY Gate 5 On Accumulator Time Year yy YY
97 S5_ACCTIME_MM Gate 5 On Accumulator Time Month mm MM
98 S5_ACCTIME_DD Gate 5 On Accumulator Time Day dd DD
99 S5_ACCTIME_HH Gate 5 On Accumulator Time Hour hh HH
ROL & INFOMECH Communication Protocol
[Type the company name]
15 100 S5_ACCTIME_NN Gate 5 On Accumulator Time Minute mm mm
101 S6_ACC_LOHR Gate 6 Accumulator Time Lower Hour hh HH
102 S6_ACC_UPHR Gate 6 Accumulator Time Upper Hour hh HH
103 S6_ACC_SEC Gate 6 Accumulator Time Second ss SS
104 S6_ACC_LPCNT Gate 6 On Accumulator Count Lower Counter (Int)
105 S6_ACC_UOCNT Gate 6 On Accumulator Count Upper Counter (Int)
106 S6_ACCTIME_YY Gate 6 On Accumulator Time Year yy YY
107 S6_ACCTIME_MM Gate 6 On Accumulator Time Month mm MM
108 S6_ACCTIME_DD Gate 6 On Accumulator Time Day dd DD
109 S6_ACCTIME_HH Gate 6 On Accumulator Time Hour hh HH
110 S6_ACCTIME_NN Gate 6 On Accumulator Time Minute mm mm
Water Level Set Point
Water Level
Number Of Bay
Gate Description
Gate Position In Percentage
Station Information
311 SITE_NAME Site Name A-Z a-z (String)
ROL & INFOMECH Communication Protocol
[Type the company name]
331 SITE_STATE Site State A-Z a-z (String)
341 GSM_NO GSM Nomber +60121234567
344 GSM_SIG GSM Signal Strength
SMS Configuration
357 SMS_NO1 SMS Contact Nomber 1 +60121234567
361 CONT_SMS2 SMS Contact 2 A-Z a-z (String)
367 SMS_NO2 SMS Contact Nomber 2 +60121234567
371 CONT_SMS3 SMS Contact 3 A-Z a-z (String)
377 SMS_NO3 SMS Contact Nomber 3 +60121234567
381 CONT_SMS4 SMS Contact 4 A-Z a-z (String)
387 SMS_NO4 SMS Contact Nomber 4 +60121234567
391 CONT_SMS5 SMS Contact 5 A-Z a-z (String)
397 SMS_NO5 SMS Contact Nomber 5 +60121234567
401 CONT_SMS6 SMS Contact 6 A-Z a-z (String)
407 SMS_NO6 SMS Contact Nomber 6 +60121234567
411 CONT_SMS7 SMS Contact 7 A-Z a-z (String)
417 SMS_NO7 SMS Contact Nomber 7 +60121234567
3.2 Pump Index Tag Name Description Format Remark
Water Level
Pump Running Status
423 NO_PUMP_RUN_PV Nomber of Pump Run PV 1-6 (Int)
422 NO_PUMP_RUN_SP Nomber of Pump Run SP 1-6 (Int)
Phase Indicator
0 / 1 (Int)
Pump 1 Information
1 P1_PUMP_COND Pump 1 Condition 0=Normal 1=Shutdown 2=OverLoadTrip 3=MCUFault 4=PumpFault
0-4 (Int)
2 P1_PUMP_MODE Pump 1 Mode 1=Manual 2=Remote 3=Auto
1-3 (Int)
0 / 1 (Int)
ROL & INFOMECH Communication Protocol
[Type the company name]
17 P1_PUMP_DLT_STOP Pump 1 Stop Delta Time Seconds (Int)
19 P1_PUMP_STOP_TS Pump 1 Stop Timestamp Timestamp
21 P1_PUMP_ACC_DLT Pump 1 Accum Time Seconds (Int)
23 P1_PUMP_ACC_CNT Pump 1 Accum Run Count Counter (Int)
25 P1_PUMP_ACC_TS Pump 1 Accum Timestamp Seconds (Int)
31 P1_PUMP_AUTOTMR_SP Pump 1 Auto Timer Setpoint Seconds (Int)
33 P1_PUMP_RMTTMR_SP Pump 1 Remote Timer Setpoint Seconds (Int)
35 P1_PUMP_RMT_CTL Pump 1 Remote Control 0=off 1=on
0 / 1 (Int)
41 P1_PUMP_PWR_GROUP Pump 1 Power Group
42 P1_PUMP_AVG_AMP Pump 1 Average Amp Ampere (Float)
43 P1_PUMP_AVG_PF Pump 1 Average PF
44 P1_PUMP_RN_VOLT Pump 1 Red to Neutral Voltage (Float)
45 P1_PUMP_YN_VOLT Pump 1 Yellow to Neutral Voltage (Float)
46 P1_PUMP_BN_VOLT Pump 1 Blue to Neutral Voltage (Float)
47 P1_PUMP_INPWR_STAT Pump 1 InPower State 1=rybFail 2=rFail 3=yFail 4=bFail 5=ryFail 6=rbFail 7=ybFail
1-7 (Int)
48 P1_PUMP_OVRPWR_STAT Pump 1 Power State 0=OK 1=engageP1to2 2=pwr2ACBTrip 3=engageP2to1 4=pwr1ACBTrip
0-4 (Int)
62 P2_PUMP_DLT_RUN Pump 2 Run Delta Time
64 P2_PUMP_RUN_TS Pump 2 Run Timestamp
67 P2_PUMP_DLT_STOP Pump 2 Stop Delta Time
69 P2_PUMP_STOP_TS Pump 2 Stop Timestamp
71 P2_PUMP_ACC_DLT Pump 2 Accum Time
73 P2_PUMP_ACC_CNT Pump 2 Accum Run Count
75 P2_PUMP_ACC_TS Pump 2 Accum Timestamp
81 P2_PUMP_AUTOTMR_SP Pump 2 Auto Timer Setpoint
83 P2_PUMP_RMTTMR_SP Pump 2 Remote Timer Setpoint
85 P2_PUMP_RMT_CTL Pump 2 Remote Control
86 P2_PUMP_CTL_LVL1 Pump 2 Control Lvl 1
87 P2_PUMP_CTL_LVL2 Pump 2 Control Lvl 2
88 P2_PUMP_CTL_LVL3 Pump 2 Control Lvl 3
89 P2_PUMP_CTL_LVL4 Pump 2 Control Lvl 4
ROL & INFOMECH Communication Protocol
[Type the company name]
91 P2_PUMP_OVRPWR_STAT Pump 2 Power Group
92 P2_PUMP_AVG_AMP Pump 2 Average Amp
93 P2_PUMP_AVG_PF Pump 2 Average PF
94 P2_PUMP_RN_VOLT Pump 2 Red to Neutral
95 P2_PUMP_YN_VOLT Pump 2 Yellow to Neutral
96 P2_PUMP_BN_VOLT Pump 2 Blue to Neutral
97 P2_PUMP_INPWR_STAT Pump 2 InPower State
98 P2_PUMP_OVRPWR_STAT Pump 2 Power State
Pump 3 Infomation
112 P3_PUMP_DLT_RUN Pump 3 Run Delta Time
114 P3_PUMP_RUN_TS Pump 3 Run Timestamp
117 P3_PUMP_DLT_STOP Pump 3 Stop Delta Time
119 P3_PUMP_STOP_TS Pump 3 Stop Timestamp
121 P3_PUMP_ACC_DLT Pump 3 Accum Time
123 P3_PUMP_ACC_CNT Pump 3 Accum Run Count
125 P3_PUMP_ACC_TS Pump 3 Accum Timestamp
131 P3_PUMP_AUTOTMR_SP Pump 3 Auto Timer Setpoint
133 P3_PUMP_RMTTMR_SP Pump 3 Remote Timer Setpoint
135 P3_PUMP_RMT_CTL Pump 3 Remote Control
136 P3_PUMP_CTL_LVL1 Pump 3 Control Lvl 1
137 P3_PUMP_CTL_LVL2 Pump 3 Control Lvl 2
138 P3_PUMP_CTL_LVL3 Pump 3 Control Lvl 3
139 P3_PUMP_CTL_LVL4 Pump 3 Control Lvl 4
140 P3_PUMP_CTL_LVL5 Pump 3 Control Lvl 5
141 P3_PUMP_PWR_GROUP Pump 3 Power Group
142 P3_PUMP_AVG_AMP Pump 3 Average Amp
143 P3_PUMP_AVG_PF Pump 3 Average PF
144 P3_PUMP_RN_VOLT Pump 3 Red to Neutral
145 P3_PUMP_YN_VOLT Pump 3 Yellow to Neutral
146 P3_PUMP_BN_VOLT Pump 3 Blue to Neutral
147 P3_PUMP_INPWR_STAT Pump 3 InPower State
148 P3_PUMP_OVRPWR_STAT Pump 3 Power State
Pump 4 Information
162 P4_PUMP_DLT_RUN Pump 4 Run Delta Time
164 P4_PUMP_RUN_TS Pump 4 Run Timestamp
167 P4_PUMP_DLT_STOP Pump 4 Stop Delta Time
169 P4_PUMP_STOP_TS Pump 4 Stop Timestamp
171 P4_PUMP_ACC_DLT Pump 4 Accum Time
173 P4_PUMP_ACC_CNT Pump 4 Accum Run Count
175 P4_PUMP_ACC_TS Pump 4 Accum Timestamp
181 P4_PUMP_AUTOTMR_SP Pump 4 Auto Timer Setpoint
183 P4_PUMP_RMTTMR_SP Pump 4 Remote Timer Setpoint
185 P4_PUMP_RMT_CTL Pump 4 Remote Control
186 P4_PUMP_CTL_LVL1 Pump 4 Control Lvl 1
ROL & INFOMECH Communication Protocol
[Type the company name]
188 P4_PUMP_CTL_LVL3 Pump 4 Control Lvl 3
189 P4_PUMP_CTL_LVL4 Pump 4 Control Lvl 4
190 P4_PUMP_CTL_LVL5 Pump 4 Control Lvl 5
191 P4_PUMP_PWR_GROUP Pump 4 Power Group
192 P4_PUMP_AVG_AMP Pump 4 Average Amp
193 P4_PUMP_AVG_PF Pump 4 Average PF
194 P4_PUMP_RN_VOLT Pump 4 Red to Neutral
195 P4_PUMP_YN_VOLT Pump 4 Yellow to Neutral
196 P4_PUMP_BN_VOLT Pump 4 Blue to Neutral
197 P4_PUMP_INPWR_STAT Pump 4 InPower State
198 P4_PUMP_OVRPWR_STAT Pump 4 Power State
Pump 5 Information
212 P5_PUMP_DLT_RUN Pump 5 Run Delta Time
214 P5_PUMP_RUN_TS Pump 5 Run Timestamp
217 P5_PUMP_DLT_STOP Pump 5 Stop Delta Time
219 P5_PUMP_STOP_TS Pump 5 Stop Timestamp
221 P5_PUMP_ACC_DLT Pump 5 Accum Time
223 P5_PUMP_ACC_CNT Pump 5 Accum Run Count
225 P5_PUMP_ACC_TS Pump 5 Accum Timestamp
231 P5_PUMP_AUTOTMR_SP Pump 5 Auto Timer Setpoint
233 P5_PUMP_RMTTMR_SP Pump 5 Remote Timer Setpoint
235 P5_PUMP_RMT_CTL Pump 5 Remote Control
236 P5_PUMP_CTL_LVL1 Pump 5 Control Lvl 1
237 P5_PUMP_CTL_LVL2 Pump 5 Control Lvl 2
238 P5_PUMP_CTL_LVL3 Pump 5 Control Lvl 3
239 P5_PUMP_CTL_LVL4 Pump 5 Control Lvl 4
240 P5_PUMP_CTL_LVL5 Pump 5 Control Lvl 5
241 P5_PUMP_PWR_GROUP Pump 5 Power Group
242 P5_PUMP_AVG_AMP Pump 5 Average Amp
243 P5_PUMP_AVG_PF Pump 5 Average PF
244 P5_PUMP_RN_VOLT Pump 5 Red to Neutral
245 P5_PUMP_YN_VOLT Pump 5 Yellow to Neutral
246 P5_PUMP_BN_VOLT Pump 5 Blue to Neutral
247 P5_PUMP_INPWR_STAT Pump 5 InPower State
248 P5_PUMP_OVRPWR_STAT Pump 5 Power State
Pump 6 Information
262 P6_PUMP_DLT_RUN Pump 6 Run Delta Time
264 P6_PUMP_RUN_TS Pump 6 Run Timestamp
267 P6_PUMP_DLT_STOP Pump 6 Stop Delta Time
269 P6_PUMP_STOP_TS Pump 6 Stop Timestamp
271 P6_PUMP_ACC_DLT Pump 6 Accum Time
273 P6_PUMP_ACC_CNT Pump 6 Accum Run Count
275 P6_PUMP_ACC_TS Pump 6 Accum Timestamp
281 P6_PUMP_AUTOTMR_SP Pump 6 Auto Timer Setpoint
ROL & INFOMECH Communication Protocol
[Type the company name]
285 P6_PUMP_RMT_CTL Pump 6 Remote Control
286 P6_PUMP_CTL_LVL1 Pump 6 Control Lvl 1
287 P6_PUMP_CTL_LVL2 Pump 6 Control Lvl 2
288 P6_PUMP_CTL_LVL3 Pump 6 Control Lvl 3
289 P6_PUMP_CTL_LVL4 Pump 6 Control Lvl 4
290 P6_PUMP_CTL_LVL5 Pump 6 Control Lvl 5
291 P6_PUMP_PWR_GROUP Pump 6 Power Group
292 P6_PUMP_AVG_AMP Pump 6 Average Amp
293 P6_PUMP_AVG_PF Pump 6 Average PF
294 P6_PUMP_RN_VOLT Pump 6 Red to Neutral
295 P6_PUMP_YN_VOLT Pump 6 Yellow to Neutral
296 P6_PUMP_BN_VOLT Pump 6 Blue to Neutral
297 P6_PUMP_INPWR_STAT Pump 6 InPower State
298 P6_PUMP_OVRPWR_STAT Pump 6 Power State
Pump Running Set Point By Level
441 P_LVL_SP0 Pump Level SP 0 Meter (Float)
442 P_LVL_SP1 Pump Level SP 1 Meter (Float)
443 P_LVL_SP2 Pump Level SP 2 Meter (Float)
444 P_LVL_SP3 Pump Level SP 3 Meter (Float)
445 P_LVL_SP4 Pump Level SP 4 Meter (Float)
446 P_LVL_SP5 Pump Level SP 5 Meter (Float)
Station Information
461 SITE_NAME Site Name A-Z a-z (String)
471 SITE_DISTRICT Site District A-Z a-z (String)
481 SITE_STATE Site State A-Z a-z (String)
491 GSM_NO GSM Nomber +60121234567
494 GSM_SIG GSM Signal Strength (Int)
SMS Configuration
507 SMS_NO1 SMS Contact Nomber 1 +60121234567
517 SMS_NO2 SMS Contact Nomber 2 +60121234567
527 SMS_NO3 SMS Contact Nomber 3 +60121234567
537 SMS_NO4 SMS Contact Nomber 4 +60121234567
547 SMS_NO5 SMS Contact Nomber 5 +60121234567
ROL & INFOMECH Communication Protocol
[Type the company name]
21 3.3 River Water Treatment Plant Index Tag Name Description Format Remark
Blower Condition, Mode, Status
1 B1_COND Blower 1 Condition 0=Normal 1=NoPower 2=Trip 3=Estop
0-3 (Int)
2 B1_MODE Blower 1 Mode 1=Local 2=Manual 3=Remote 4=Auto
1-4 (Int)
3 B1_STAT Blower 1 Status 0=Stop 1=Run 2=FOpen 3=FClose 4=Openning 5=Closing 6=Opened
0-6 (Int)
21 B1_ACC_DLT Blower 1 Accum Time Seconds (Int)
23 B1_ACC_CNT Blower 1 Accum Run Count Counter (Int)
25 B1_ACC_TS Blower 1 Accum Timestamp Seconds (Int)
31 B1_AUTO_SP Blower 1 Auto Set Point Seconds (Int)
51 B2_COND Blower 2 Condition
52 B2_MODE Blower 2 Mode
53 B2_STAT Blower 2 Status
55 B2_DEVICE Blower 2 As Device
59 B2_ENBLE Blower 2 Enable
71 B2_ACC_DLT Blower 2 Accum Time
73 B2_ACC_CNT Blower 2 Accum Run Count
75 B2_ACC_TS Blower 2 Accum Timestamp
81 B2_AUTO_SP Blower 2 Auto Set Point
101 B3_COND Blower 3 Condition
102 B3_MODE Blower 3 Mode
103 B3_STAT Blower 3 Status
105 B3_DEVICE Blower 3 As Device
109 B3_ENBLE Blower 3 Enable
121 B3_ACC_DLT Blower 3 Accum Time
123 B3_ACC_CNT Blower 3 Accum Run Count
125 B3_ACC_TS Blower 3 Accum Timestamp
131 B3_AUTO_SP Blower 3 Auto Set Point
151 B4_COND Blower 4 Condition
152 B4_MODE Blower 4 Mode
153 B4_STAT Blower 4 Status
155 B4_DEVICE Blower 4 As Device
159 B4_ENBLE Blower 4 Enable
171 B4_ACC_DLT Blower 4 Accum Time
173 B4_ACC_CNT Blower 4 Accum Run Count
175 B4_ACC_TS Blower 4 Accum Timestamp
181 B4_AUTO_SP Blower 4 Auto Set Point
ROL & INFOMECH Communication Protocol
[Type the company name]
205 G1_I_DEVICE Inlet Gate 1 As Device
209 G1_I_ENBLE Inlet Gate 1 Enable
221 G1_I_ACC_DLT Inlet Gate 1 Accum Time
223 G1_I_ACC_CNT Inlet Gate 1 Accum Run Count
225 G1_I_ACC_TS Inlet Gate 1 Accum Timestamp
251 G2_I_COND Inlet Gate 2 Condition
252 G2_I_MODE Inlet Gate 2 Mode
253 G2_I_STAT Inlet Gate 2 Status
255 G2_I_DEVICE Inlet Gate 2 As Device
259 G2_I_ENBLE Inlet Gate 2 Enable
271 G2_I_ACC_DLT Inlet Gate 2 Accum Time
273 G2_I_ACC_CNT Inlet Gate 2 Accum Run Count
275 G2_I_ACC_TS Inlet Gate 2 Accum Timestamp
Outlet Gate Condition, Mode, Status
301 G1_O_COND Outlet Gate 1 Condition
302 G1_O_MODE Outlet Gate 1 Mode
303 G1_O_STAT Outlet Gate 1 Status
305 G1_O_DEVICE Outlet Gate 1 As Device
309 G1_O_ENBLE Outlet Gate 1 Enable
321 G1_O_ACC_DLT Outlet Gate 1 Accum Time
323 G1_O_ACC_CNT Outlet Gate 1 Accum Run Count
325 G1_O_ACC_TS Outlet Gate 1 Accum Timestamp
351 G2_O_COND Outlet Gate 2 Condition
352 G2_O_MODE Outlet Gate 2 Mode
353 G2_O_STAT Outlet Gate 2 Status
355 G2_O_DEVICE Outlet Gate 2 As Device
359 G2_O_ENBLE Outlet Gate 2 Enable
371 G2_O_ACC_DLT Outlet Gate 2 Accum Time
373 G2_O_ACC_CNT Outlet Gate 2 Accum Run Count
375 G2_O_ACC_TS Outlet Gate 2 Accum Timestamp
Sludge Pump Condition, Mode, Status
401 SP1_COND Sludge Pump 1 Condition
402 SP1_MODE Sludge Pump 1 Mode
403 SP1_STAT Sludge Pump 1 Status
405 SP1_DEVICE Sludge Pump 1 As Device
409 SP1_ENBLE Sludge Pump 1 Enable
421 SP1_ACC_DLT Sludge Pump 1 Accum Time
423 SP1_ACC_CNT Sludge Pump 1 Accum Run Count
425 SP1_ACC_TS Sludge Pump 1 Accum Timestamp
431 SP1_AUTO_SP Sludge Pump 1 Auto Set Point
451 SP2_COND Sludge Pump 2 Condition
452 SP2_MODE Sludge Pump 2 Mode
453 SP2_STAT Sludge Pump 2 Status
455 SP2_DEVICE Sludge Pump 2 As Device
459 SP2_ENBLE Sludge Pump 2 Enable
471 SP2_ACC_DLT Sludge Pump 2 Accum Time
473 SP2_ACC_CNT Sludge Pump 2 Accum Run Count
ROL & INFOMECH Communication Protocol
[Type the company name]
Inlet Pump Condition, Mode, Status
501 P1_I_COND Inlet Pump 1 Condition
502 P1_I_MODE Inlet Pump 1 Mode
503 P1_I_STAT Inlet Pump 1 Status
505 P1_I_DEVICE Inlet Pump 1 As Device
509 P1_I_ENBLE Inlet Pump 1 Enable
521 P1_I_ACC_DLT Inlet Pump 1 Accum Time
523 P1_I_ACC_CNT Inlet Pump 1 Accum Run Count
525 P1_I_ACC_TS Inlet Pump 1 Accum Timestamp
531 P1_I_AUTO_SP Inlet Pump 1 Auto Set Point
551 P2_I_COND Inlet Pump 2 Condition
552 P2_I_MODE Inlet Pump 2 Mode
553 P2_I_STAT Inlet Pump 2 Status
555 P2_I_DEVICE Inlet Pump 2 As Device
559 P2_I_ENBLE Inlet Pump 2 Enable
571 P2_I_ACC_DLT Inlet Pump 2 Accum Time
573 P2_I_ACC_CNT Inlet Pump 2 Accum Run Count
575 P2_I_ACC_TS Inlet Pump 2 Accum Timestamp
581 P2_I_AUTO_SP Inlet Pump 1 Auto Set Point
Sluge Valve Condition, Mode, Status
601 SV1_COND Sludge Valve 1 Condition
602 SV1_MODE Sludge Valve 1 Mode
603 SV1_STAT Sludge Valve 1 Status
605 SV1_DEVICE Sludge Valve 1 As Device
609 SV1_ENBLE Sludge Valve 1 Enable
621 SV1_ACC_DLT Sludge Valve 1 Accum Time
623 SV1_ACC_CNT Sludge Valve 1 Accum Run Count
625 SV1_ACC_TS Sludge Valve 1 Accum Timestamp
631 SV1_AUTO_SP Sludge Valve 1 Auto Set Point
651 SV2_COND Sludge Valve 2 Condition
652 SV2_MODE Sludge Valve 2 Mode
653 SV2_STAT Sludge Valve 2 Status
655 SV2_DEVICE Sludge Valve 2 As Device
659 SV2_ENBLE Sludge Valve 2 Enable
671 SV2_ACC_DLT Sludge Valve 2 Accum Time
673 SV2_ACC_CNT Sludge Valve 2 Accum Run Count
675 SV2_ACC_TS Sludge Valve 2 Accum Timestamp
681 SV2_AUTO_SP Sludge Valve 2 Auto Set Point
Power Status
702 IN_PWR Incomming Power Status 0=OK 1=RYBFail 2=RFail 3=YFail 4=BFail 5=RYFail 6=RBFail 7=YBFail
0-7 (Int)
1-3 (Int)
712 FLOW Flow M3/h (Float)
713 COD COD Mg/L (Float)
714 DO_OUTPUT DO Output Sensor Mg/L (Float)
715 DO_1 DO Sensor 1 Mg/L (Float)
716 DO_2 DO Sensor 2 Mg/L (Float)
717 DO_3 DO Sensor 3 Mg/L (Float)
718 DO_4 DO Sensor 4 Mg/L (Float)
719 DO_5 DO Sensor 5 Mg/L (Float)
720 DO_6 DO Sensor 6 Mg/L (Float)
721 DO_1_6_AVG DO Sensor 1-6 Average Mg/L (Float)
722 DO_1_6_MIN DO Sensor 1-6 Minimum Mg/L (Float)
Control Type
741 B_CTRL Blower Control 0=NoCtrol 1=TimeCtrl 2=DOAvgCtrl 3=DOMinCtrl
0-3 (Int)
742 G_I_CTRL Inlet Gate Control 0=NoCtrol 1=TimeCtrl 2=DOAvgCtrl 3=DOMinCtrl
0-3 (Int)
743 SP_CTRL Sludge Pump Control 0=NoCtrol 1=TimeCtrl 2=DOAvgCtrl 3=DOMinCtrl
0-3 (Int)
744 SV_CTRL Sludge Valve Control 0=NoCtrol 1=TimeCtrl 2=DOAvgCtrl 3=DOMinCtrl
0-3 (Int)
745 SA_CTROl Solar Aerator Control 0=NoCtrol 1=TimeCtrl 2=DOAvgCtrl 3=DOMinCtrl
0-3 (Int)
Station Information
753 LONG_N_D Longtitude Deg Degree (Float)
754 LONG_N_M Longtitude Min Minutes (Float)
755 LONG_N_S Longtitude Sec Minutes (Float)
756 LONG_E_D Lagtitude Deg Degree (Float)
757 LONG_E_M Lagtitude Min Minutes (Float)
758 LONG_E_S Lagtitude Sec Minutes (Float)
761 SITE_NAME Site Name A-Z a-z (String)
771 SITE_DISTRICT Site District A-Z a-z (String)
781 SITE_STATE Site State A-Z a-z (String)
791 GSM_NO GSM Nomber +60121234567
794 GSM_SIG GSM Signal Strength (Int)
ROL & INFOMECH Communication Protocol
[Type the company name]
807 SMS_NO1 SMS Contact Nomber 1 +60121234567
817 SMS_NO2 SMS Contact Nomber 2 +60121234567
827 SMS_NO3 SMS Contact Nomber 3 +60121234567
837 SMS_NO4 SMS Contact Nomber 4 +60121234567
847 SMS_NO5 SMS Contact Nomber 5 +60121234567
Blower Control Mode
851 B_CTRL_MODE Blower Control Mode 0=Local 1=Manual 2=Remote 3=Auto
0-3 (Int)
852 B_CTRL_DAVG Blower Control DO AVG Mg/L (Float)
853 B_CTRL_DMIN Blower Control DO Min Mg/L (Float)
855 B_CTROL_DOLVL_SP0 Blower Control DO Lvl SP0 Mg/L (Float)
856 B_CTROL_DOLVL_SP1 Blower Control DO Lvl SP1 Mg/L (Float)
857 B_CTROL_DOLVL_SP2 Blower Control DO Lvl SP2 Mg/L (Float)
858 B_CTROL_DOLVL_SP3 Blower Control DO Lvl SP3 Mg/L (Float)
859 B_CTROL_DOLVL_SP4 Blower Control DO Lvl SP4 Mg/L (Float)
860 B_CTROL_DOLVL_SP5 Blower Control DO Lvl SP5 Mg/L (Float)
862 B_CTRL_TM_ON_SP Blower Control Time On SP Seconds (Int)
863 B_CTRL_TM_OFF_SP Blower Control Time Off SP Seconds (Int)
864 B_CTRL NUM_RUN_SP Blower Control Number Of Run SP (Int)
865 B_CTRL_DO_RUN_SP0 Blower Control DO Run SP0 (Int)
866 B_CTRL_DO_RUN_SP1 Blower Control DO Run SP1 (Int)
867 B_CTRL_DO_RUN_SP2 Blower Control DO Run SP2 (Int)
868 B_CTRL_DO_RUN_SP3 Blower Control DO Run SP3 (Int)
869 B_CTRL_DO_RUN_SP4 Blower Control DO Run SP4 (Int)
870 B_CTRL_DO_RUN_SP5 Blower Control DO Run SP5 (Int)
872 B_CTRL_TM_ON_PV Blower Control Time On PV Seconds (Int)
873 B_CTRL_TM_OFF_PV Blower Control Time Off PV Seconds (Int)
874 B_CTRL_NUM_RUN_PV Blower Control Number Of Run PV (Int)
Sludge Pump Control Mode
Sludge Pump Control SP Value and PV Value
902 SP_CTRL_TM_ON_SP Sludge Pump Control Time On SP Seconds (Int)
903 SP_CTRL_TM_OFF_SP Sludge Pump Control Time Off Sp Seconds (Int)
904 SP_CTRL_NUM_RUN_SP Sludge Pump Control Number Of Run SP
(Int)
912 SP_CTRL_TM_ON_PV Sludge Pump Control Time On PV Seconds (Int)
913 SP_CTRL_TM_OFF_PV Sludge Pump Control Time Off PV Seconds (Int)
914 SP_CTRL_NUM_RUN_PV Sludge Pump Control Number Of Run PV
(Int)
0-3 (Int)
Gate Control SP Value and PV Value
952 G_CTRL_BYLVL Gate Control By Lvl Meter (Float)
956 G_CTRL_LVL_CLS_SP Gate Control By Lvl Close SP Meter (Float)
957 G_CTRL_LVL_OPN_SP Gate Control By Lvl Open SP Meter (Float)
966 G_CTRL_NUM_CLS_SP Gate Control Number Of Close SP (Int)
967 G_CTRL_NUM_OPN_SP Gate Control Number Of Open SP (Int)
Solar Aerator Control SP Value
960 SA_CTRL_ENABLE Solar Aerator Control Enable 0=Disable 1=Enable
0/1(Int)
969 SA_CTRL_OFF_SP Solar Aerator Control By Lvl Off SP Meter (Float)
970 SA_CTRL_ON_SP Solar Aerator Control By Lvl On SP Meter (Float)
Pump Control Mode
1001 P_CTRL_MODE Pump Control Mode 0=Local 1=Manual 2=Remote 3=Auto
0-3 (Int)
1002 P_CTRL_TM_ON_SP Pump Control Time On SP Seconds (Int)
1003 P_CTRL_TM_OFF_SP Pump Control Time Off SP Seconds (Int)
1004 P_CTRL_NUM_RUN_SP Pump Control Number Of Run SP (Int)
1006 P_CTRL_LVL_OFF_SP Pump Control By Lvl Off SP Meter (Float)
1007 P_CTRL_LVLV_ON_SP Pump Control By Lvl On SP Meter (Float)
1012 P_CTRL_TM_ON_PV Pump Control Time On PV Seconds (Int)
1013 P_CTRL_TM_OFF_PV Pump Control Time Off PV Seconds (Int)
1014 P_CTRL_NUM_ON_PV Pump Control Number Of On PV (Int)
Sludge Valve Control Mode
1051 SV_CTRL_MODE Sludge Valve Control Mode 0=Local 1=Manual 2=Remote 3=Auto
0-3 (Int)
1052 SV_CTRL_TM_ON_SP Sludge Valve Control Time On SP Seconds (Int)
1053 SV_CTRL_TM_OFF_SP Sludge Valve Control Time Off SP Seconds (Int)
1054 SV_CTRL_NUM_RUN_SP Sludge Valve Control Number Of Run SP
(Int)
1062 SV_CTRL_TM_ON_PV Sludge Valve Control Time On PV Seconds (Int)
1063 SV_CTRL_TM_OFF_PV Sludge Valve Control Time Off PV Seconds (Int)
1064 SV_CTRL_NUM_RUN_PV Sludge Valve Control Number Of Run PV
(Int)
3.4 Crest Gate Index Tag Name Description Format Remark
1 OM_COND Obermeyer Condition 0=NoAction 1=Infalte 2=Deflate 3=Release 4=Estop
0-4 (Int)
ROL & INFOMECH Communication Protocol
[Type the company name]
27 0=NoAction 1=Local 2=Manual 3=Remote 4=Auto
3 OM_VPP_STAT Obermeyer Pilot Pres Status 0=NoAction 1=SwFail 2=PrLow
0-2 (Int)
4 OM_BP_STAT Obermeyer Blad Pres Status 0=NoAction 1=SenFault 3=PrHigh
0/1/3 (Int)
5 OM_IP_STAT Obermeyer In Pres Status 0=NoAction 1=SenFault 2=PrLow
0-2 (Int)
6 OM_WLVL_STAT Obermeyer Water Level Status 0=NoAction 1=SenFault
0/1 (Int)
7 OM_PLC_STAT Obermeyer PLC Status 0=NoAction 1=AIFault 2=DIFault 3=DOFault
0-3 (Int)
12 OM_IA_PRES Obermeyer Inlet Pressure kPa (Float)
15 OM_WTR_LVL Obermeyer Water Level Meter (Float)
16 OM_WTR_LVL_SP Obermeyer Water Level Set Point Meter (Float)
21 OM_SYS_MAN Obermeyer System Manual Mode 0=NoAction 1=ManMode
0/1 (Int)
22 OM_SYS_OFF Obermeyer System Off Mode 0=NoAction 1=OffMode
0/1 (Int)
23 OM_SYS_AUTO Obermeyer System Auto Mode 0=NoAction 1=AutoMode
0/1 (Int)
0/1 (Int)
0/1 (Int)
0/1 (Int)
27 OM_VPPS_FAIL Obermeyer Valve Pilot Pres Sw Fail 0=NoAction 1=Fail
0/1 (Int)
29 OM_BPS_FAIL Obermeyer Bladder Pres Sensor Fail 0=NoAction 1=SenFail
0/1 (Int)
0/1 (Int)
31 OM_IPS_FAIL Obermeyer In Pres Sensor Fail 0=NoAction 1=Fail
0/1 (Int)
ROL & INFOMECH Communication Protocol
[Type the company name]
33 OM_LS_FAIL Obermeyer Water Level Fail 0=NoAction 1=Fail
0/1 (Int)
0/1 (Int)
35 OM_UPS_BAT Obermeyer Use UPS Battery 0=NoAction 1=Bat
0/1 (Int)
36 OM_UPSBAT_CHG Obermeyer UPS Battery Charging 0=NoAction 1=Charging
0/1 (Int)
37 OM_PLC_AI Obermeyer PLC AI Fail 0=NoAction 1=Fail
0/1 (Int)
38 OM_PLC_DI Obermeyer PLC DI Fail 0=NoAction 1=Fail
0/1 (Int)
0/1 (Int)
Water Level
Station Information
103 LONG_N_D Longtitude Deg Degree (Float)
104 LONG_N_M Longtitude Min Minutes (Float)
105 LONG_N_S Longtitude Sec Minutes (Float)
106 LONG_E_D Lagtitude Deg Degree (Float)
107 LONG_E_M Lagtitude Min Minutes (Float)
108 LONG_E_S Lagtitude Sec Minutes (Float)
111 SITE_NAME Site Name A-Z a-z (String)
122 SITE_DISTRICT Site District A-Z a-z (String)
131 SITE_STATE Site State A-Z a-z (String)
141 GSM_NO GSM Nomber +60121234567
144 GSM_SIG GSM Signal Strength (Int)
SMS Configuration
157 SMS_NO1 SMS Contact Nomber 1 +60121234567
167 SMS_NO2 SMS Contact Nomber 2 +60121234567
177 SMS_NO3 SMS Contact Nomber 3 +60121234567
187 SMS_NO4 SMS Contact Nomber 4 +60121234567
197 SMS_NO5 SMS Contact Nomber 5 +60121234567
ROL & INFOMECH Communication Protocol
[Type the company name]
29 3.5 Solar Aerator Index Tag Name Description Format Remark
Water Level
Pump 1 Info
1 P1_PUMP_COND Pump 1 Condition 0=Normal 1=Shutdown 2=OverLoadTrip 3=MCUFault 4=PumpFault
0-4 (Int)
2 P1_PUMP_MODE Pump 1 Mode 1=Manual 2=Remote 3=Auto
1-3 (Int)
0/1 (Int)
17 P1_PUMP_RUN_TS Pump 1 Run Timestamp Seconds (Int)
19 P1_PUMP_STOP_TS Pump 1 Stop Timestamp Seconds (Int)
21 P1_PUMP_ACC_DLT Pump 1 Accum Time Seconds (Int)
23 P1_PUMP_ACC_CNT Pump 1 Accum Run Count (Int)
25 P1_PUMP_ACC_TS Pump 1 Accum Timestamp Timestamp
31 P1_PUMP_AUTOTMR_SP Pump 1 Auto Timer Setpoint Seconds (Int)
33 P1_PUMP_RMTTMR_CTL Pump 1 Remote Timer Setpoint Seconds (Int)
35 P1_PUMP_RMT_CTL Pump 1 Remote Control 0=off 1=on
0/1 (Int)
41 P1_PUMP_PWR_GROUP Pump 1 Power Group
42 P1_PUMP_AVG_AMP Pump 1 Power Amp
43 P1_PUMP_AVG_PF Pump 1 Average PF
44 P1_PUMP_RN_VOLT Pump 1 Red to Neutral Voltage (Float)
45 P1_PUMP_YN_VOLT Pump 1 Yellow to Neutral Voltage (Float)
46 P1_PUMP_BN_VOLT Pump 1 Blue to Neutral Voltage (Float)
47 P1_PUMP_INPWR_STAT Pump 1 InPower State 0=OK 1=rybFail 2=rFail 3=yFail 4=bFail 5=ryFail
0-5 (Int)
48 P1_PUMP_OVRPWR_STAT Pump 1 Power State 0=OK 1=engageP1to2 2=pwr2ACBTrip 3=engageP2to1 4=pwr1ACBTrip
0-4 (Int)
ROL & INFOMECH Communication Protocol
[Type the company name]
53 P2_PUMP_STAT Pump 2 Status
62 P2_PUMP_DLT_RUN Pump 2 Run Delta Time
67 P2_PUMP_RUN_TS Pump 2 Run Timestamp
69 P2_PUMP_STOP_TS Pump 2 Stop Timestamp
71 P2_PUMP_ACC_DLT Pump 2 Accum Time
73 P2_PUMP_ACC_CNT Pump 2 Accum Run Count
75 P2_PUMP_ACC_TS Pump 2 Accum Timestamp
81 P2_PUMP_AUTOTMR_SP Pump 2 Auto Timer Setpoint
83 P2_PUMP_RMTTMR_CTL Pump 2 Remote Timer Setpoint
85 P2_PUMP_RMT_CTL Pump 2 Remote Control
86 P2_PUMP_CTL_LVL1 Pump 2 Control Lvl 1
87 P2_PUMP_CTL_LVL2 Pump 2 Control Lvl 2
88 P2_PUMP_CTL_LVL3 Pump 2 Control Lvl 3
89 P2_PUMP_CTL_LVL4 Pump 2 Control Lvl 4
90 P2_PUMP_CTL_LVL5 Pump 2 Control Lvl 5
91 P2_PUMP_PWR_GROUP Pump 2 Power Group
92 P2_PUMP_AVG_AMP Pump 2 Power Amp
93 P2_PUMP_AVG_PF Pump 2 Average PF
94 P2_PUMP_RN_VOLT Pump 2 Red to Neutral
95 P2_PUMP_YN_VOLT Pump 2 Yellow to Neutral
96 P2_PUMP_BN_VOLT Pump 2 Blue to Neutral
97 P2_PUMP_INPWR_STAT Pump 2 InPower State
98 P2_PUMP_OVRPWR_STAT Pump 2 Power State
Pump 3 Info
112 P3_PUMP_DLT_RUN Pump 3 Run Delta Time
117 P3_PUMP_RUN_TS Pump 3 Run Timestamp
119 P3_PUMP_STOP_TS Pump 3 Stop Timestamp
121 P3_PUMP_ACC_DLT Pump 3 Accum Time
123 P3_PUMP_ACC_CNT Pump 3 Accum Run Count
125 P3_PUMP_ACC_TS Pump 3 Accum Timestamp
131 P3_PUMP_AUTOTMR_SP Pump 3 Auto Timer Setpoint
133 P3_PUMP_RMTTMR_CTL Pump 3 Remote Timer Setpoint
135 P3_PUMP_RMT_CTL Pump 3 Remote Control
136 P3_PUMP_CTL_LVL1 Pump 3 Control Lvl 1
137 P3_PUMP_CTL_LVL2 Pump 3 Control Lvl 2
138 P3_PUMP_CTL_LVL3 Pump 3 Control Lvl 3
139 P3_PUMP_CTL_LVL4 Pump 3 Control Lvl 4
140 P3_PUMP_CTL_LVL5 Pump 3 Control Lvl 5
141 P3_PUMP_PWR_GROUP Pump 3 Power Group
142 P3_PUMP_AVG_AMP Pump 3 Power Amp
143 P3_PUMP_AVG_PF Pump 3 Average PF
144 P3_PUMP_RN_VOLT Pump 3 Red to Neutral
145 P3_PUMP_YN_VOLT Pump 3 Yellow to Neutral
146 P3_PUMP_BN_VOLT Pump 3 Blue to Neutral
147 P3_PUMP_INPWR_STAT Pump 3 InPower State
148 P3_PUMP_OVRPWR_STAT Pump 3 Power State
Pump 4 Info
152 P4_PUMP_MODE Pump 4 Mode
153 P4_PUMP_STAT Pump 4 Status
162 P4_PUMP_DLT_RUN Pump 4 Run Delta Time
167 P4_PUMP_RUN_TS Pump 4 Run Timestamp
169 P4_PUMP_STOP_TS Pump 4 Stop Timestamp
171 P4_PUMP_ACC_DLT Pump 4 Accum Time
173 P4_PUMP_ACC_CNT Pump 4 Accum Run Count
175 P4_PUMP_ACC_TS Pump 4 Accum Timestamp
181 P4_PUMP_AUTOTMR_SP Pump 4 Auto Timer Setpoint
183 P4_PUMP_RMTTMR_CTL Pump 4 Remote Timer Setpoint
185 P4_PUMP_RMT_CTL Pump 4 Remote Control
186 P4_PUMP_CTL_LVL1 Pump 4 Control Lvl 1
187 P4_PUMP_CTL_LVL2 Pump 4 Control Lvl 2
188 P4_PUMP_CTL_LVL3 Pump 4 Control Lvl 3
189 P4_PUMP_CTL_LVL4 Pump 4 Control Lvl 4
190 P4_PUMP_CTL_LVL5 Pump 4 Control Lvl 5
191 P4_PUMP_PWR_GROUP Pump 4 Power Group
192 P4_PUMP_AVG_AMP Pump 4 Power Amp
193 P4_PUMP_AVG_PF Pump 4 Average PF
194 P4_PUMP_RN_VOLT Pump 4 Red to Neutral
195 P4_PUMP_YN_VOLT Pump 4 Yellow to Neutral
196 P4_PUMP_BN_VOLT Pump 4 Blue to Neutral
197 P4_PUMP_INPWR_STAT Pump 4 InPower State
198 P4_PUMP_OVRPWR_STAT Pump 4 Power State
Pump 5 Info
212 P5_PUMP_DLT_RUN Pump 5 Run Delta Time
217 P5_PUMP_RUN_TS Pump 5 Run Timestamp
219 P5_PUMP_STOP_TS Pump 5 Stop Timestamp
221 P5_PUMP_ACC_DLT Pump 5 Accum Time
223 P5_PUMP_ACC_CNT Pump 5 Accum Run Count
225 P5_PUMP_ACC_TS Pump 5 Accum Timestamp
231 P5_PUMP_AUTOTMR_SP Pump 5 Auto Timer Setpoint
233 P5_PUMP_RMTTMR_CTL Pump 5 Remote Timer Setpoint
235 P5_PUMP_RMT_CTL Pump 5 Remote Control
236 P5_PUMP_CTL_LVL1 Pump 5 Control Lvl 1
237 P5_PUMP_CTL_LVL2 Pump 5 Control Lvl 2
238 P5_PUMP_CTL_LVL3 Pump 5 Control Lvl 3
239 P5_PUMP_CTL_LVL4 Pump 5 Control Lvl 4
240 P5_PUMP_CTL_LVL5 Pump 5 Control Lvl 5
241 P5_PUMP_PWR_GROUP Pump 5 Power Group
242 P5_PUMP_AVG_AMP Pump 5 Power Amp
243 P5_PUMP_AVG_PF Pump 5 Average PF
244 P5_PUMP_RN_VOLT Pump 5 Red to Neutral
245 P5_PUMP_YN_VOLT Pump 5 Yellow to Neutral
246 P5_PUMP_BN_VOLT Pump 5 Blue to Neutral
247 P5_PUMP_INPWR_STAT Pump 5 InPower State
248 P5_PUMP_OVRPWR_STAT Pump 5 Power State
ROL & INFOMECH Communication Protocol
[Type the company name]
32 Pump 6 Info
262 P6_PUMP_DLT_RUN Pump 6 Run Delta Time
267 P6_PUMP_RUN_TS Pump 6 Run Timestamp
269 P6_PUMP_STOP_TS Pump 6 Stop Timestamp
271 P6_PUMP_ACC_DLT Pump 6 Accum Time
273 P6_PUMP_ACC_CNT Pump 6 Accum Run Count
275 P6_PUMP_ACC_TS Pump 6 Accum Timestamp
281 P6_PUMP_AUTOTMR_SP Pump 6 Auto Timer Setpoint
283 P6_PUMP_RMTTMR_CTL Pump 6 Remote Timer Setpoint
285 P6_PUMP_RMT_CTL Pump 6 Remote Control
286 P6_PUMP_CTL_LVL1 Pump 6 Control Lvl 1
287 P6_PUMP_CTL_LVL2 Pump 6 Control Lvl 2
288 P6_PUMP_CTL_LVL3 Pump 6 Control Lvl 3
289 P6_PUMP_CTL_LVL4 Pump 6 Control Lvl 4
290 P6_PUMP_CTL_LVL5 Pump 6 Control Lvl 5
291 P6_PUMP_PWR_GROUP Pump 6 Power Group
292 P6_PUMP_AVG_AMP Pump 6 Power Amp
293 P6_PUMP_AVG_PF Pump 6 Average PF
294 P6_PUMP_RN_VOLT Pump 6 Red to Neutral
295 P6_PUMP_YN_VOLT Pump 6 Yellow to Neutral
296 P6_PUMP_BN_VOLT Pump 6 Blue to Neutral
297 P6_PUMP_INPWR_STAT Pump 6 InPower State
298 P6_PUMP_OVRPWR_STAT Pump 6 Power State
Pump 7 Info
312 P7_PUMP_DLT_RUN Pump 7 Run Delta Time
317 P7_PUMP_RUN_TS Pump 7 Run Timestamp
319 P7_PUMP_STOP_TS Pump 7 Stop Timestamp
321 P7_PUMP_ACC_DLT Pump 7 Accum Time
323 P7_PUMP_ACC_CNT Pump 7 Accum Run Count
325 P7_PUMP_ACC_TS Pump 7 Accum Timestamp
331 P7_PUMP_AUTOTMR_SP Pump 7 Auto Timer Setpoint
333 P7_PUMP_RMTTMR_CTL Pump 7 Remote Timer Setpoint
335 P7_PUMP_RMT_CTL Pump 7 Remote Control
336 P7_PUMP_CTL_LVL1 Pump 7 Control Lvl 1
337 P7_PUMP_CTL_LVL2 Pump 7 Control Lvl 2
338 P7_PUMP_CTL_LVL3 Pump 7 Control Lvl 3
339 P7_PUMP_CTL_LVL4 Pump 7 Control Lvl 4
340 P7_PUMP_CTL_LVL5 Pump 7 Control Lvl 5
341 P7_PUMP_PWR_GROUP Pump 7 Power Group
342 P7_PUMP_AVG_AMP Pump 7 Power Amp
343 P7_PUMP_AVG_PF Pump 7 Average PF
344 P7_PUMP_RN_VOLT Pump 7 Red to Neutral
345 P7_PUMP_YN_VOLT Pump 7 Yellow to Neutral
346 P7_PUMP_BN_VOLT Pump 7 Blue to Neutral
347 P7_PUMP_INPWR_STAT Pump 7 InPower State
ROL & INFOMECH Communication Protocol
[Type the company name]
Pump 8 Info
362 P8_PUMP_DLT_RUN Pump 8 Run Delta Time
367 P8_PUMP_RUN_TS Pump 8 Run Timestamp
369 P8_PUMP_STOP_TS Pump 8 Stop Timestamp
371 P8_PUMP_ACC_DLT Pump 8 Accum Time
373 P8_PUMP_ACC_CNT Pump 8 Accum Run Count
375 P8_PUMP_ACC_TS Pump 8 Accum Timestamp
381 P8_PUMP_AUTOTMR_SP Pump 8 Auto Timer Setpoint
383 P8_PUMP_RMTTMR_CTL Pump 8 Remote Timer Setpoint
385 P8_PUMP_RMT_CTL Pump 8 Remote Control
386 P8_PUMP_CTL_LVL1 Pump 8 Control Lvl 1
387 P8_PUMP_CTL_LVL2 Pump 8 Control Lvl 2
388 P8_PUMP_CTL_LVL3 Pump 8 Control Lvl 3
389 P8_PUMP_CTL_LVL4 Pump 8 Control Lvl 4
390 P8_PUMP_CTL_LVL5 Pump 8 Control Lvl 5
391 P8_PUMP_PWR_GROUP Pump 8 Power Group
392 P8_PUMP_AVG_AMP Pump 8 Power Amp
393 P8_PUMP_AVG_PF Pump 8 Average PF
394 P8_PUMP_RN_VOLT Pump Red to Neutral
395 P8_PUMP_YN_VOLT Pump 8 Yellow to Neutral
396 P8_PUMP_BN_VOLT Pump 8 Blue to Neutral
397 P8_PUMP_INPWR_STAT Pump 8 InPower State
398 P8_PUMP_OVRPWR_STAT Pump 8 Power State
Pump 9 Info
412 P9_PUMP_DLT_RUN Pump 9 Run Delta Time
417 P9_PUMP_RUN_TS Pump 9 Run Timestamp
419 P9_PUMP_STOP_TS Pump 9 Stop Timestamp
421 P9_PUMP_ACC_DLT Pump 9 Accum Time
423 P9_PUMP_ACC_CNT Pump 9 Accum Run Count
425 P9_PUMP_ACC_TS Pump 9 Accum Timestamp
431 P9_PUMP_AUTOTMR_SP Pump 9 Auto Timer Setpoint
433 P9_PUMP_RMTTMR_CTL Pump 9 Remote Timer Setpoint
435 P9_PUMP_RMT_CTL Pump 9 Remote Control
436 P9_PUMP_CTL_LVL1 Pump 9 Control Lvl 1
437 P9_PUMP_CTL_LVL2 Pump 9 Control Lvl 2
438 P9_PUMP_CTL_LVL3 Pump 9 Control Lvl 3
439 P9_PUMP_CTL_LVL4 Pump 9 Control Lvl 4
440 P9_PUMP_CTL_LVL5 Pump 9 Control Lvl 5
441 P9_PUMP_PWR_GROUP Pump 9 Power Group
442 P9_PUMP_AVG_AMP Pump 9 Power Amp
443 P9_PUMP_AVG_PF Pump 9 Average PF
444 P9_PUMP_RN_VOLT Pump 9 Red to Neutral
445 P9_PUMP_YN_VOLT Pump 9 Yellow to Neutral
446 P9_PUMP_BN_VOLT Pump 9 Blue to Neutral
ROL & INFOMECH Communication Protocol
[Type the company name]
448 P9_PUMP_OVRPWR_STAT Pump 9 Power State
Station Information
453 LONG_N_D Longtitude Deg Degree (Float)
454 LONG_N_M Longtitude Min Minutes (Float)
455 LONG_N_S Longtitude Sec Minutes (Float)
456 LONG_E_D Lagtitude Deg Degree (Float)
457 LONG_E_M Lagtitude Min Minutes (Float)
458 LONG_E_S Lagtitude Sec Minutes (Float)
461 SITE_NAME Site Name A-Z a-z (String)
472 SITE_DISTRICT Site District A-Z a-z (String)
481 SITE_STATE Site State A-Z a-z (String)
491 GSM_NO GSM Nomber +60121234567
494 GSM_SIG GSM Signal Strength (Int)
SMS Configuration
507 SMS_NO1 SMS Contact Nomber 1 +60121234567
517 SMS_NO2 SMS Contact Nomber 2 +60121234567
527 SMS_NO3 SMS Contact Nomber 3 +60121234567
537 SMS_NO4 SMS Contact Nomber 4 +60121234567
547 SMS_NO5 SMS Contact Nomber 5 +60121234567
3.6 Trash Rake Index Tag Name Description Format Remark
Water Level
Raker 1 Info
1 RK1_COND Raker 1 Condition 0=Normal 1=Shutdown 2=OverloadTrip 3=MCUFault 4=PumpFault
0-4 (Int)
2 RK1_MODE Raker 1 Mode 1=Manual 2=Remote 3=Auto
1-3 (Int)
0/1 (Int)
14 RK1_RUN_TS Raker 1 Run Timestamp Timestamp (Int)
17 RK1_DLT_STOP Raker 1 Stop Delta Time Seconds (Int)
19 RK1_STOP_TS Raker 1 Stop Timestamp Timestamp (Int)
21 RK1_ACC_DLT Raker 1 Accum Time Seconds (Int)
ROL & INFOMECH Communication Protocol
[Type the company name]
25 RK1_ACC_TS Raker 1 Accum Timestamp Timestamp (Int)
31 RK1_AUTOTMR_SP Raker 1 Auto Timer Setpoint Seconds (Int)
33 RK1_RMTTMR_SP Raker 1 Remote Timer Setpoint Seconds (Int)
35 RK1_RMT_CTL Raker 1 Remote Control 0=off 1=on
0 / 1 (Int)
41 RK1_PWR_GROUP Raker 1 Power Group
42 RK1_AVG_AMP Raker 1 Average Amp Amp (Float)
43 RK1_AVG_PF Raker 1 Average PF
44 RK1_RN_VOLT Raker 1 Red to Neutral Volt (Float)
45 RK1_YN_VOLT Raker 1 Yellow to Neutral Volt (Float)
46 RK1_BN_VOLT Raker 1 Blue to Neutral Volt (Float)
47 RK1_INPWR_STAT Raker 1 InPower State 0=OK 1=rybFail 2=rFail 3=yFail 4=bFail 5=ryFail
0-5 (Int)
48 RK1_PUMP_OVERPWR_ST AT
Raker 1 Power State 0=OK 1=engageP1to2 2=pwr2ACBTrip 3=engageP2to1 4=pwr1ACBTrip
0-4 (Int)
Station Information
453 LONG_N_D Longtitude Deg Degree (Float)
454 LONG_N_M Longtitude Min Minutes (Float)
455 LONG_N_S Longtitude Sec Minutes (Float)
456 LONG_E_D Lagtitude Deg Degree (Float)
457 LONG_E_M Lagtitude Min Minutes (Float)
458 LONG_E_S Lagtitude Sec Minutes (Float)
461 SITE_NAME Site Name A-Z a-z (String)
472 SITE_DISTRICT Site District A-Z a-z (String)
481 SITE_STATE Site State A-Z a-z (String)
491 GSM_NO GSM Nomber +60121234567
494 GSM_SIG GSM Signal Strength (Int)
SMS Configuration
507 SMS_NO1 SMS Contact Nomber 1 +60121234567
517 SMS_NO2 SMS Contact Nomber 2 +60121234567
527 SMS_NO3 SMS Contact Nomber 3 +60121234567
ROL & INFOMECH Communication Protocol
[Type the company name]
547 SMS_NO5 SMS Contact Nomber 5 +60121234567
3.7 Water Quality Index Tag Name Description Format Remark
Station Information
141 LONG_N_D Longtitude Deg Degree (Float)
142 LONG_N_M Longtitude Min Minutes (Float)
143 LONG_N_S Longtitude Sec Minutes (Float)
144 LONG_E_D Lagtitude Deg Degree (Float)
145 LONG_E_M Lagtitude Min Minutes (Float)
146 LONG_E_S Lagtitude Sec Minutes (Float)
12 SITE_NAME Site Name A-Z a-z (String)
13 SITE_DISTRICT Site District A-Z a-z (String)
14 SITE_STATE Site State A-Z a-z (String)
15 GSM_NO GSM Nomber +60121234567
16 GSM_SIG GSM Signal Strength (Int)
SMS Configuration
156 SMS_NO1 SMS Contact Nomber 1 +60121234567
157 SMS_NO2 SMS Contact Nomber 2 +60121234567
158 SMS_NO3 SMS Contact Nomber 3 +60121234567
158 SMS_NO4 SMS Contact Nomber 4 +60121234567
160 SMS_NO5 SMS Contact Nomber 5 +60121234567
Power
53 CURRENT_IN Current In Amp (Float)
54 CURRENT_OUT Current Out Amp (Float)
Sensor Reading
350 TEMPERATURE TEMPERATURE C (Float)
351 PH PH (Float)
353 SPCOND_1 SPCOND 1 mS/cm (Float)
354 SPCOND_2 SPCOND 2 uS/cm (Float)
355 RES RES kO-cm (Float)
356 SAL SAL Ppt (Float)
357 TDS TDS g/l (Float)
358 NH4+_1 NH4+ 1 Mg/l-n (Float)
ROL & INFOMECH Communication Protocol
[Type the company name]
360 NH4TOT NH4TOT Mg/l-N (Float)
361 N03-_1 N03- 1 Mg/l-N (Float)
362 N03-_2 N03- 2 mV (Float)
363 CL-_1 CL- 1 Mg/l (Float)
364 CL-_2 CL- 2 mV (Float)
365 LDO% LDO% Sat (Float)
366 LDO LDO Mg/l (Float)
367 LDO_BP LDO BP mmHg (Float)
368 INTERNAL_BATTERY INTERNAL BATTERY Volts (Float)
369 EXTERNAL_BATTERY EXTERNAL BATTERY Volts (Float)
370 INTERNAL_BATTERY_LEF T
ROL & INFOMECH Communication Protocol
[Type the company name]
20 local1 Gate 1 Local Mode
21 manual1 Gate 1 Manual Mode
22 remote1 Gate 1 Remote Mode
23 auto1 Gate 1 Auto Mode
24 stdby1 Gate 1 Standby Mode
25 local2 Gate 2 Local Mode
26 manual2 Gate 2 Manual Mode
27 remote2 Gate 2 Remote Mode
28 auto2 Gate 2 Auto Mode
29 stdby2 Gate 2 Standby Mode
30 local3 Gate 3 Local Mode
31 manual3 Gate 3 Manual Mode
32 remote3 Gate 3 Remote Mode
33 auto3 Gate 3 Auto Mode
34 stdby3 Gate 3 Standby Mode
35 local4 Gate 4 Local Mode
36 manual4 Gate 4 Manual Mode
37 remote4 Gate 4 Remote Mode
38 auto4 Gate 4 Auto Mode
39 stdby4 Gate 4 Standby Mode
40 local5 Gate 5 Local Mode
41 manual5 Gate 5 Manual Mode
42 remote5 Gate 5 Remote Mode
43 auto5 Gate 5 Auto Mode
44 stdby5 Gate 5 Standby Mode
60 local6 Gate 6 Local Mode
61 manual6 Gate 6 Manual Mode
62 remote6 Gate 6 Remote Mode
63 auto6 Gate 6 Auto Mode
64 stdby6 Gate 6 Standby Mode
101 trip1 Gate 1 Power Trip
102 fullopen1 Gate 1 Fully Open
103 fullclose1 Gate 1 Fully Close
104 opening1 Gate 1 Opening
105 closing1 Gate 1 Closing
106 opened1 Gate 1 Opened
107 nopower1 Gate 1 No Power
210 opnlimit1 Gate 1 Open Limit
211 clslimit1 Gate 1 Close Limit
111 trip2 Gate 2 Power Trip
112 fullopen2 Gate 2 Fully Open
113 fullclose2 Gate 2 Fully Close
114 opening2 Gate 2 Opening
115 closing2 Gate 2 Closing
116 opened2 Gate 2 Opened
117 nopower2 Gate 2 No Power
ROL & INFOMECH Communication Protocol
[Type the company name]
221 clslimit2 Gate 2 Close Limit
121 trip3 Gate 3 Power Trip
122 fullopen3 Gate 3 Fully Open
123 fullclose3 Gate 3 Fully Close
124 opening3 Gate 3 Opening
125 closing3 Gate 3 Closing
126 opened3 Gate 3 Opened
127 nopower3 Gate 3 No Power
230 opnlimit3 Gate 3 Open Limit
231 clslimit3 Gate 3 Close Limit
131 trip4 Gate 4 Power Trip
132 fullopen4 Gate 4 Fully Open
133 fullclose4 Gate 4 Fully Close
134 opening4 Gate 4 Opening
135 closing4 Gate 4 Closing
136 opened4 Gate 4 Opened
137 nopower4 Gate 4 No Power
240 opnlimit4 Gate 4 Open Limit
241 clslimit4 Gate 4 Close Limit
141 trip5 Gate 5 Power Trip
142 fullopen5 Gate 5 Fully Open
143 fullclose5 Gate 5 Fully Close
144 opening5 Gate 5 Opening
145 closing5 Gate 5 Closing
146 opened5 Gate 5 Opened
147 nopower5 Gate 5 No Power
250 opnlimit5 Gate 5 Open Limit
251 clslimit5 Gate 5 Close Limit
161 trip6 Gate 6 Power Trip
162 fullopen6 Gate 6 Fully Open
163 fullclose6 Gate 6 Fully Close
164 opening6 Gate 6 Opening
165 closing6 Gate 6 Closing
166 opened6 Gate 6 Opened
167 nopower6 Gate 6 No Power
260 opnlimit6 Gate 6 Open Limit
261 clslimit6 Gate 6 Close Limit
91 sys_shutdown System Shutdown
92 maintenance System Maintenance
100 emergency Emergency Stop
172 up&downstrm_fail Upstream and Downstream Sensor Fail
173 levelsensors_fail Water Level Sensor Fail
180 alert_level Water Level Alert
181 danger_level Water Level Danger
182 redphase_fail Red Phase Fail
183 yellowphase_fail Yellow Phase Fail
184 bluephase_fail Blue Phase Fail
185 sys_powerby_ac SCADA Panel Power By AC
ROL & INFOMECH Communication Protocol
[Type the company name]
187 sys_battery_charging SCADA Panel Battery Charging
4.2 Pump Index Tag Name Description Remark
1 sys_startup System Startup
2 sys_shutdown System Shutdown
3 sys_maint System Maintenance
12 overloadtrip1 Pump 1 Overload Trip
13 mcu_err1 Pump 1 MCU Trip
14 pump_fault1 Pump1 Fault
21 shutdown2 Pump 2 Shutdown
22 overloadtrip2 Pump 2 Overload Trip
23 mcu_err2 Pump 2 MCU Trip
24 pump_fault2 Pump 2 Fault
29 em2 Pump 2 Emergency Stop
31 shutdown3 Pump 3 Shutdown
32 overloadtrip3 Pump 3 Overload Trip
33 mcu_err3 Pump 3 MCU Trip
34 pump_fault3 Pump 3 Fault
39 em3 Pump 3 Emergency Stop
41 shutdown4 Pump 4 Shutdown
42 overloadtrip4 Pump 4 Overload Trip
43 mcu_err4 Pump 4 MCU Trip
44 pump_fault4 Pump 4 Fault
49 em4 Pump 4 Emergency Stop
51 shutdown5 Pump 5 Shutdown
52 overloadtrip5 Pump 5 Overload Trip
53 mcu_err5 Pump 5 MCU Trip
54 pump_fault5 Pump 5 Fault
59 em5 Pump 5 Emergency Stop
61 shutdown6 Pump 6 Shutdown
62 overloadtrip6 Pump 6 Overload Trip
63 mcu_err6 Pump 6 MCU Trip
64 pump_fault6 Pump 6 Fault
69 em6 Pump 6 Emergency Stop
101 engage_pwr1to2 Engage Power Supply 1 to Power Supply 2
102 pwr2_acb_trip Power 2 ACB Trip
103 engage_pwr2to1 Engage Power Supply 2 to Power Supply 1
104 pwr1_acb_trip Power 1 ACB Trip
105 nopwr No Power
112 redfail1 Power 1 Red Fail
113 yellowfail1 Power 1 Yellow Fail
114 bluefail1 Power 1 Blue Fail
115 ryfail1 Power 1 Red Yellow Fail
116 rbfail1 Power 1 Red Blue Fail
ROL & INFOMECH Communication Protocol
[Type the company name]
121 rybfail2 Power 2 Red Yellow Fail
122 redfail2 Power 2 Red Fail
123 yellowfail2 Power 2 Yellow Fail
124 bluefail2 Power 2 Blue Fail
125 ryfail2 Power 2 Red Yellow Fail
126 rbfail2 Power 2 Red Blue Fail
127 ybfail2 Power 2 Yellow Blue Fail
130 lv_upsensor_fault Upstream Sensor Fault
131 lv_upstrm_err Upstream Sensor Error
132 lv_dnsensor_fault Downstream Sensor Fault
133 lv_dnstrm_err Downstream Sensor Error
134 lv_lolo Water Level Low Alert
135 lv_hihi Water Level High Alert
200 powerby_ac SCADA Panel Power by AC
201 powerby_battery SCADA Panel Power by Battery
202 battery_charging SCADA Panel Battery Charging
203 genset1_run Genset 1 Run
204 genset2_run Genset 2 Run
210 run1 Pump 1 Run
211 manual1 Pump 1 Manual Mode
212 remote1 Pump 1 Remote Mode
213 auto1 Pump 1 Auto Mode
220 run2 Pump 2 Run
221 manual2 Pump 2 Manual Mode
222 remote2 Pump 2 Remote Mode
223 auto2 Pump 2 Auto Mode
230 run3 Pump 3 Run
231 manual3 Pump 3 Manual Mode
232 remote3 Pump 3 Remote Mode
233 auto3 Pump 3 Auto Mode
240 run4 Pump 4 Run
241 manual4 Pump 4 Manual Mode
242 remote4 Pump 4 Remote Mode
243 auto4 Pump 4 Auto Mode
250 run5 Pump 5 Run
251 manual5 Pump 5 Manual Mode
252 remote5 Pump 5 Remote Mode
253 auto5 Pump 5 Auto Mode
260 run6 Pump 6 Run
261 manual6 Pump 6 Manual Mode
262 remote6 Pump 6 Remote Mode
263 auto6 Pump 6 Auto Mode
4.3 River Water Treatment Plant Index Tag Name Description Remark
1 sys_startup System Startup
2 sys_shutdown System Shutdown
ROL & INFOMECH Communication Protocol
[Type the company name]
22 b2_trip Blower 2 Trip
29 b2_em Blower 2 Emergency Stop
31 b3_nopwr Blower 3 No Power
32 b3_trip Blower 3 Trip
39 b3_em Blower 3 Emergency Stop
41 b4_nopwr Blower 4 No Power
42 b4_trip Blower 4 Trip
49 b4_em Blower 4 Emergency Stop
51 g_in1_nopwr Inlet Gate 1 No Power
52 g_in1_trip Inlet Gate 1 Trip
59 g_in1_em Inlet Gate 1 Emergency Stop
61 g_in2_nopwr Inlet Gate 2 No Power
62 g_in2_trip Inlet Gate 2 Trip
69 g_in2_em Inlet Gate 2 Emergency Stop
71 g_out1_nopwr Outlet Gate 1 No Power
72 g_out1_trip Outlet Gate 1 Trip
79 g_out1_em Outlet Gate 1 Emergency Stop
81 g_out2_nopwr Outlet Gate 2 No Power
82 g_out2_trip Outlet Gate 2 Trip
89 g_out2_em Outlet Gate 2 Emergency Stop
91 sp1_nopwr Sludge Pump 1 No Power
92 sp1_trip Sludge Pump 1 Trip
99 sp1_em Sludge Pump 1 Emergency Stop
101 sp2_nopwr Sludge Pump 2 No Power
102 sp2_trip Sludge Pump 2 Trip
109 sp2_em Sludge Pump 2 Emergency Stop
111 p1_nopwr Pump 1 No Power
112 p1_trip Pump 1 Trip
119 p1_em Pump 1 Emergency Stop
121 p2_nopwr Pump 2 No Power
122 p2_trip Pump 2 Trip
129 p2_em Pump 2 Emergency Stop
131 sv1_nopwr Sludge Valve 1 No Power
132 Sv1_trip Sludge Valve 1 Trip
139 sv1_em Sludge Valve 1 Emergency Stop
141 sv2_nopwr Sludge Valve 2 No Power
142 sv2_trip Sludge Valve 2 Trip
149 sv2_em Sludge Valve 2 Emergency Stop
150 lv_sen_fault Water Level Sensor Fault
151 flow_sen_fault Flow Sensor Fault
152 cod_sen_fault COD Sensor Fault
153 do_noctrl_sen_fault DO No Control Sensor Fault (Output DO Sensor)
154 do_ctrl1_sen_fault DO Sensor 1 Fault
155 do_ctrl2_sen_fault DO Sensor 2 Fault
156 do_ctrl3_sen_fault DO Sensor 3 Fault
157 do_ctrl4_sen_fault DO Sensor 4 Fault
158 do_ctrl5_sen_fault DO Sensor 5 Fault
159 do_ctrl6_sen_fault DO Sensor 6 Fault
ROL & INFOMECH Communication Protocol
[Type the company name]
161 water_level_low Low Level
180 powerby_battery SCADA Panel Power By Battery
191 ryb_fail RYB Phase Fail
192 red_fail Red Phase Fail
193 yellow_fail Yellow Phase Fail
194 blue_fail Blue Phase Fail
195 ry_fail Red Yellow Phase Fail
196 rb_fail Red Blue Phase Fail
197 yb_fail Yellow Blue Phase Fail
200 powerby_ac SCADA Panel Power By AC
202 battery_charging SCADA Panel Battery Charging
210 b1_local Blower 1 Local Mode
211 b1_man Blower 1 Manual Mode
212 b1_rem Blower 1 Remote Mode
213 b1_auto Blower 1 Auto Mode
214 b1_run Blower 1 Run
220 b2_local Blower 2 Local Mode
221 b2_man Blower 2 Manual Mode
222 b2_rem Blower 2 Remote Mode
223 b2_auto Blower 2 Auto Mode
224 b2_run Blower 2 Run
230 b3_local Blower 3 Local Mode
231 b3_man Blower 3 Manual Mode
232 b3_rem Blower 3 Remote Mode
233 b3_auto Blower 3 Auto Mode
234 b3_run Blower 3 Run
240 b4_local Blower 4 Local Mode
241 b4_man Blower 4 Manual Mode
242 b4_rem Blower 4 Remote Mode
243 b4_auto Blower 4 Auto Mode
244 b4_run Blower 4 Run
250 g_in1_local Inlet Gate 1 Local Mode
251 g_in1_man Inlet Gate 1 Manual Mode
252 g_in1_rem Inlet Gate 1 Remote Mode
253 g_in1_auto Inlet Gate 1 Auto Mode
255 g_in1_fopn Inlet Gate 1 Fully Open
256 g_in1_fcls Inlet Gate 1 Fully Close
257 g_in1_up Inlet Gate 1 Up Position
258 g_in1_dn Inlet Gate 1 Down Position
259 g_in1_opn Inlet Gate 1 Opening
260 g_in2_local Inlet Gate 2 Local Mode
261 g_in2_man Inlet Gate 2 Manual Mode
262 g_in2_rem Inlet Gate 2 Remote Mode
263 g_in2_auto Inlet Gate 2 Auto Mode
265 g_in2_fopn Inlet Gate 2 Fully Open
266 g_in2_fcls Inlet Gate 2 Fully Close
267 g_in2_up Inlet Gate 2 Up Position
268 g_in2_dn Inlet Gate 2 Down Position
269 g_in2_opn Inlet Gate 2 Opening
ROL & INFOMECH Communication Protocol
[Type the company name]
271 g_out1_man Outlet Gate 1 Manual Mode
272 g_out1_rem Outlet Gate 1 Remote Mode
273 g_out1_auto Outlet Gate 1 Auto Mode
275 g_out1_fopn Outlet Gate 1 Fully Open
276 g_out1_fcls Outlet Gate 1 Fully Close
277 g_out1_up Outlet Gate 1 Up Position
278 g_out1_dn Outlet Gate 1 Down Position
279 g_out1_opn Outlet Gate 1 Opening
280 g_out2_local Outlet Gate 2 Local Mode
281 g_out2_man Outlet Gate 2 Manual Mode
282 g_out2_rem Outlet Gate 2 Remote Mode
283 g_out2_auto Outlet Gate 2 Auto Mode
285 g_out2_fopn Outlet Gate 2 Fully Open
286 g_out2_fcls Outlet Gate 2 Fully Close
287 g_out2_up Outlet Gate 2 Up Position
288 g_out2_dn Outlet Gate 2 Down Position
289 g_out2_opn Outlet Gate 2 Opening
290 sp1_local Sludge Pump 1 Local Mode
291 sp1_man Sludge Pump 1 Manual Mode
292 sp1_rem Sludge Pump 1 Remote Mode
293 sp1_auto Sludge Pump 1 Auto Mode
294 sp1_run Sludge Pump 1 Run
300 sp2_local Sludge Pump 2 Local Mode
301 sp2_man Sludge Pump 2 Manual Mode
302 sp2_rem Sludge Pump 2 Remote Mode
303 sp2_auto Sludge Pump 2 Auto Mode
304 sp2_run Sludge Pump 2 Run
310 p1_local Pump 1 Local Mode
311 p1_man Pump 1 Manual Mode
312 p1_rem Pump 1 Remote Mode
313 p1_auto Pump 1 Auto Mode
314 p1_run Pump 1 Run
320 p2_local Pump 2 Local Mode
321 p2_man Pump 2 Manual Mode
322 p2_rem Pump 2 Remote Mode
323 p2_auto Pump 2 Auto Mode
324 p2_run Pump 2 Run
330 sv1_local Sludge Valve 1 Local Mode
331 sv1_man Sludge Valve 1 Manual Mode
332 sv1_rem Sludge Valve 1 Remote Mode
333 sv1_auto Sludge Valve 1 Auto Mode
335 sv1_fopn Sludge Valve 1 Fully Open
336 sv1_fcls Sludge Valve 1 Fully Close
340 sv2_local Sludge Valve 2 Local Mode
341 sv2_man Sludge Valve 2 Manual Mode
342 sv2_rem Sludge Valve 2 Remote Mode
343 sv2_auto Sludge Valve 2 Auto Mode
345 sv2_fopn Sludge Valve 2 Fully Open
346 sv2_fcls Sludge Valve 2 Fully Close
ROL & INFOMECH Communication Protocol
[Type the company name]
1 sys_startup System Startup
2 sys_shutdown System Startdown
3 sys_maint System Maintenance
51 blower1_nopwr Blower 1 No Power
52 blower1_trip Blower 1 Trip
59 blower1_em Blower 1 Emergency Stop
61 blower2_nopwr Blower 2 No Power
62 blower2_trip Blower 2 Trip
69 blower2_em Blower 2 Emergency Stop
71 inflate_actuator_nopwr Inflate Actuator No Power
72 inflate_actuator_trip Inflate Actuator Trip
79 inflate_actuator_em Inflate Actuator Emergency Stop
81 deflate_actuator_nopwr Deflate Actuator No Power
82 deflate_actuator_trip Deflate Actuator Trip
89 deflate_actuator_em Deflate Actuator Emergency Stop
91 se_blower1_nopwr SE Blower 1 No Power
92 se_blower1_trip SE Blower 1 Trip
99 se_blower1_em SE Blower 1 Emergency Stop
101 se_inflate_actuator_nopwr SE Inflate Actuator No Power
102 se_inflate_actuator_trip SE Inflate actuator Trip
109 se_inflate_actuator_em SE Inflate Actuator Emergency Stop
111 se_deflate_actuator_nopwr SE Deflate Actuator No Power
112 se_deflate_actuator_trip SE Deflate Actuator Trip
119 se_deflate_actuator_em SE Deflate Actuator Emergency Stop
130 lv_upsensor_fault Upstream Sensor Fault
131 lv_upstrm_err Upstream Sensor Error
132 lv_dnsensor_fault Downstream Sensor Fault
133 lv_dnstrm_err Downstream Sensor Error
134 pres_sen_fault Pressure Sensor Fault
135 pre_read_error Pressure Reading Error
180 powerbybattery SCADA Panel Power By Battery
191 ryb_fail RYB Phase Fail
192 red_fail Red Phase Fail
193 yellow_fail Yellow Phase Fail
194 blue_fail Blue Phase Fail
195 ry_fail Red Yellow Phase Fail
196 rb_fail Red Blue Phase Fail
197 yb_fail Yellow Blue Phase Fail
200 powerby_ac SCADA Panel Power By AC
202 battery_charging SCADA Panel Battery Charging
230 blower1_local Blower 1 Local Mode
231 blower1_man Blower 1 Manual Mode
232 blower1_rem Blower 1 Remote Mode
233 blower1_auto Blower 1 Auto Mode
234 blower1_run Blower 1 Run
240 blower2_local Blower 2 Local Mode
241 blower2_man Blower 2 Manual Mode
ROL & INFOMECH Communication Protocol
[Type the company name]
243 blower2_auto Blower 2 Auto Mode
244 blower2_run Blower 2 Run
250 inflate_act_local Inflate Actuator Local Mode
251 inflate_act_man Inflate Actuator Manual Mode
252 inflate_act_rem Inflate Actuator Remote Mode
253 inflate_act_auto Inflate Actuator Auto Mode
255 inflate_act_fopn Inflate Actuator Fully Open
256 inflate_act_fcls Inflate Actuator Fully Close
260 deflate_act_local Deflate Actuator Local Mode
261 deflate_act_man Deflate Actuator Manual Mode
262 deflate_act_rem Deflate Actuator Remote Mode
263 deflate_act_auto Deflate Actuator Auto Mode
265 deflate_act_fopn Deflate Actuator Fully Open
266 deflate_act_fcls Deflate Actuator Fully Close
277 sol_val_on Solenoid Valve On
280 se_blower1_local SE Blower 1 Local Mode
281 se_blower1_man SE Blower 1 Manual Mode
282 se_blower1_rem SE Blower 1 Remote Mode
283 se_blower1_auto SE Blower 1 Auto Mode
284 blower1_run SE Blower 1 Run
290 se_inflate_act_local SE Inflate Actuator Local Mode
291 se_inflate_act_man SE Inflate Actuator Manual Mode
292 se_inflate_act_rem SE Inflate Actuator Remote Mode
293 se_inflate_act_auto SE Inflate Actuator Auto Mode
295 se_inflate_act_fopn SE Inflate Actuator Fully Open
296 se_inflate_act_fcls SE Inflate Actuator Fully Close
300 se_deflate_act_local SE Deflate Actuator Local Mode
301 se_deflate_act_man SE Deflate Actuator Manual Mode
302 se_deflate_act_rem SE Deflate Actuator Remote Mode
303 se_deflate_act_auto SE Deflate Actuator Auto Mode
305 se_deflate_act_fopn SE Deflate Actuator Fully Open
306 se_deflate_act_fcls SE Deflate Actuator Fully Close
317 se_target_pressure_on SE Target Pressure On
4.5 Solar Aerator Index Tag Name Description Remark
1 sys_startup System Startup
2 sys_shutdown System Startdown
3 sys_maint System Maintenance
ROL & INFOMECH Communication Protocol
[Type the company name]
61 shutdown6 Pump 6 Shutdown
64 pump_fault6 Pump 6 Fault
71 shutdown7 Pump 7 Shutdown
74 pump_fault7 Pump 7 Fault
81 shutdown8 Pump 8 Shutdown
84 pump_fault8 Pump 8 Fault
91 shutdown9 Pump 9 Shutdown
94 pump_fault9 Pump 9 Fault
101 powerby_battery SCADA Panel Power By Battery
102 solarPanel_LowPow Solar Panel Low Power
200 powerby_ac SCADA Panel Power By AC
202 battery_charging SCADA Panel Battery Charging
210 run1 Pump 1 Run
211 manual1 Pump 1 Manual Mode
212 remote1 Pump 1 Remote Mode
213 auto1 Pump 1 Auto Mode
220 run2 Pump 2 Run
221 manual2 Pump 2 Manual Mode
222 remote2 Pump 2 Remote Mode
223 auto2 Pump 2 Auto Mode
230 run3 Pump 3 Run
231 manual3 Pump 3 Manual Mode
232 remote3 Pump 3 Remote Mode
233 auto3 Pump 3 Auto Mode
240 run4 Pump 4 Run
241 manual4 Pump 4 Manual Mode
242 remote4 Pump 4 Remote Mode
243 auto4 Pump 4 Auto Mode
250 run5 Pump 5 Run
251 manual5 Pump 5 Manual Mode
252 remote5 Pump 5 Remote Mode
253 auto5 Pump 5 Auto Mode
260 run6 Pump 6 Run
261 manual6 Pump 6 Manual Mode
262 remote6 Pump 6 Remote Mode
263 auto6 Pump 6 Auto Mode
270 run7 Pump 7 Run
271 manual7 Pump 7 Manual Mode
272 remote7 Pump 7 Remote Mode
273 auto7 Pump 7 Auto Mode
280 run8 Pump 8 Run
281 manual8 Pump 8 Manual Mode
282 remote8 Pump 8 Remote Mode
283 auto8 Pump 8 Auto Mode
290 run9 Pump 9 Run
291 manual9 Pump 9 Manual Mode
292 remote9 Pump 9 Remote Mode
293 auto9 Pump 9 Auto Mode
ROL & INFOMECH Communication Protocol
[Type the company name]
1 sys_startup System Startup
2 sys_shutdown System Startdown
3 sys_maint System Maintenance
112 red_fail1 Red Phase Fail
113 yellow_fail1 Yellow Phase Fail
114 blue_fail1 Blue Phase Fail
115 ry_fail1 Red Yellow Phase Fail
116 rb_fail1 Red Blue Phase Fail
117 yb_fail1 Yellow Blue Phase Fail
130 lv_upsensor_fault Upstream Sensor Fault
131 lv_upstrm_err Upstream Sensor Error
132 lv_dnsensor_fault Downstream Sensor Fault
133 lv_dnstrm_err Downstream Sensor Error
134 lv_lolo Low Danger Alarm
135 lv_hihi High Danger Alarm
151 shutdown1 Trash Rake 1 Shutdown
152 overloadtrip1 Trash Rake 1 Overload Trip
153 mcu_err1 Trash Rake 1 MCU Error
154 fault1 Trash Rake 1 Fault
159 em1 Trash Rake 1 Emergency Stop
161 shutdown2 Trash Rake 2 Shutdown
162 overloadtrip2 Trash Rake 2 Overload Trip
163 mcu_err2 Trash Rake 2 MCU Error
164 fault2 Trash Rake 2 Fault
169 em2 Trash Rake 2 Emergency Stop
171 shutdown3 Trash Rake 3 Shutdown
172 overloadtrip3 Trash Rake 3 Overload Trip
173 mcu_err3 Trash Rake 3 MCU Error
174 fault3 Trash Rake 3 Fault
179 em3 Trash Rake 3 Emergency Stop
181 shutdown4 Trash Rake 4 Shutdown
182 overloadtrip4 Trash Rake 4 Overload Trip
183 mcu_err4 Trash Rake 4 MCU Error
184 fault4 Trash Rake 4 Fault
189 em4 Trash Rake 4 Emergency Stop
191 shutdown5 Trash Rake 5 Shutdown
192 overloadtrip5 Trash Rake 5 Overload Trip
193 mcu_err5 Trash Rake 5 MCU Error
194 fault5 Trash Rake 5 Fault
199 em5 Trash Rake 5 Emergency Stop
200 powerby_ac SCADA Panel Power By AC
201 powerby_battery SCADA Panel Power By Battery
202 battery_charging SCADA Panel Battery Charging
300 run1 Trash Rake 1 Run
301 manual1 Trash Rake 1 Manual Mode
302 remote1 Trash Rake 1 Remote Mode
303 auto1 Trash Rake 1 Auto Mode
ROL & INFOMECH Communication Protocol
[Type the company name]
320 run3 Trash Rake 3 Run
321 manual3 Trash Rake 3 Manual Mode
322 remote3 Trash Rake 3 Remote Mode
323 auto3 Trash Rake 3 Auto Mode
330 run4 Trash Rake 4 Run
331 manual4 Trash Rake 4 Manual Mode
332 remote4 Trash Rake 4 Remote Mode
333 auto4 Trash Rake 4 Auto Mode
340 run5 Trash Rake 5 Run
341 manual5 Trash Rake 5 Manual Mode
342 remote5 Trash Rake 5 Remote Mode
343 auto5 Trash Rake 5 Auto Mode
ROL & INFOMECH Communication Protocol
[Type the company name]
3 Control Level Set Point Meter (Float)
4 Environment Set Point Meter (Float)
5 Alert Set Point Meter (Float)
6 Downstream Tidal Meter (Float)
7 Danger Set Point Meter (Float)
8 Upstream Tidal Meter (Float)
9 Gate 1 Position 1 Meter (Float)
10 Gate 1 Position 2 Meter (Float)
11 Gate 1 Position 3 Meter (Float)
12 Gate 1 Position 4 Meter (Float)
13 Gate 1 Position 5 Meter (Float)
14 Gate 1 Position 6 Meter (Float)
5.2 Pump Value Description Format Remark
1 Upstream Water Level Meter (Float)
2 Downstream Water Level Meter (Float)
3 Control Level Set Point 0 Meter (Float)
4 Control Level Set Point 1 Meter (Float)
5 Control Level Set Point 2 Meter (Float)
6 Control Level Set Point 3 Meter (Float)
7 Control Level Set Point 4 Meter (Float)
8 Control Level Set Point 5 Meter (Float)
9 Pump Status 1 – 4
*Pump Status Is Representated In Digit Format *digit value 1=man stop 2=man run 3=rem stop 4=rem run 5=auto stop 6=auto run
4 digits (Int)
11 Pump Condition 1 – 4
*pump_cond is representated in digit format *digit value 0: healthy 1=shutdown 2=overloadtrip 3=mcuerr 4=pumpfault 9=em
4 digits (Int)
ROL & INFOMECH Communication Protocol
[Type the company name]
14 Pump 2 Amp Amp (Float)
15 Pump 3 Amp Amp (Float)
16 Pump 4 Amp Amp (Float)
17 Pump 5 Amp Amp (Float)
18 Pump 6 Amp Amp (Float)
19 Pump 7 Amp Amp (Float)
20 Pump 8 Amp Amp (Float)
21 - -
22 - -
23 - -
24 - -
25 - -
26 - -
27 - -
28 - -
5.3 Water Purification Treatment Plant Value Description Format Remark
1 Water Level Meter (Float)
2 Flow m3/h (Float)
3 COD mg/L (Float)
4 DO No Control Sensor (Output DO Sensor) mg/L (Float)
5 DO Control Sensor 1 mg/L (Float)
6 DO Control Sensor 2 mg/L (Float)
7 DO Control Sensor 3 mg/L (Float)
8 DO Control Sensor 4 mg/L (Float)
9 DO Control Sensor 5 mg/L (Float)
10 DO Control Sensor 6 mg/L (Float)
11 Blower 1 Status 0=Stop 1=Run 2=FOpen 3=FClose 4=Openning 5=Closing 6=Opened
0 – 6 (Int)
ROL & INFOMECH Communication Protocol
[Type the company name]
21 Pump 1 Status
22 Pump 2 Status
25 DO Average Value mg/L (Float)
26 DO Minimum Value mg/L (Float)
27 DO Position 0 mg/L (Float)
28 DO Position 1 mg/L (Float)
29 DO Position 2 mg/L (Float)
30 DO Position 3 mg/L (Float)
31 DO Position 4 mg/L (Float)
32 DO Position 5 mg/L (Float)
5.4 Crest Gate Value Description Format Remark
1 Upstream Water Level Meter (Float)
2 Downstream Water Level Meter (Float)
3 Water Level Meter (Float)
4 Water Level Set Point Meter (Float)
5 Water Level Set Point Meter (Float)
6 Air Bladed Pressure kPa
7 In Air Pressure kPa
5.5 Solar Aerator Value Description Format Remark
1 Pump 1 Status 0=Stop 1=Run
0/1 (Int)
1 Upstream Water Level Meter (Float)
2 Downstream Water Level Meter (Float)
3 Trash Rake 1 Amp Amp (Float)
4 Trash Rake 2 Amp Amp (Float)
5 Trash Rake 3 Amp Amp (Float)
6 Trash Rake 4 / Conveyer Belt 1 Amp Amp (Float)
7 Trash Rake 5 / Conveyer Belt 2 Amp Amp (Float)
8 Trash Rake 1 Power Factor -1/1
ROL & INFOMECH Communication Protocol
[Type the company name]
10 Trash Rake 3 Power Factor -1/1
11 Trash Rake 4 / Conveyer Belt 1 Power Factor -1/1
12 Trash Rake 5 / Conveyer Belt 2 Power Factor -1/1
13 Power Group 1 Red Phase Volts (Float)
14 Power Group 1 Yellow Phase Volts (Float)
15 Power Group 1 Blue Phase Volts (Float)
16 Power Group 2 Red Phase Volts (Float)
17 Power Group 2 Yellow Phase Volts (Float)
18 Power Group 2 Blue Phase Volts (Float)
1.0 Introduction
2.2 Trend
2.3 Alarm
3.0 Real Data Index Reference Table
3.1 Gate
3.2 Pump
3.4 Crest Gate
3.5 Solar Aerator
3.6 Trash Rake
3.7 Water Quality
4.1 Gate
4.2 Pump
4.4 Crest Gate
4.5 Solar Aerator
4.6 Trash Rake
5.1 Gate
5.2 Pump
5.4 Crest Gate
5.5 Solar Aerator
5.6 Trash Rake