diff --git a/Controls/Mesnac.Controls.ChemicalWeighing/Mesnac.Controls.ChemicalWeighing.csproj b/Controls/Mesnac.Controls.ChemicalWeighing/Mesnac.Controls.ChemicalWeighing.csproj index a4fe048..e581090 100644 --- a/Controls/Mesnac.Controls.ChemicalWeighing/Mesnac.Controls.ChemicalWeighing.csproj +++ b/Controls/Mesnac.Controls.ChemicalWeighing/Mesnac.Controls.ChemicalWeighing.csproj @@ -373,6 +373,7 @@ BeiLiaoTong.cs + Designer DistributionBox.cs @@ -623,6 +624,8 @@ + + diff --git a/Controls/Mesnac.Controls.ChemicalWeighing/PControl.Designer.cs b/Controls/Mesnac.Controls.ChemicalWeighing/PControl.Designer.cs index c6c657e..150153e 100644 --- a/Controls/Mesnac.Controls.ChemicalWeighing/PControl.Designer.cs +++ b/Controls/Mesnac.Controls.ChemicalWeighing/PControl.Designer.cs @@ -28,7 +28,6 @@ /// private void InitializeComponent() { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PControl)); this.pictureBox1 = new System.Windows.Forms.PictureBox(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); @@ -36,7 +35,7 @@ // pictureBox1 // this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill; - this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); + this.pictureBox1.ErrorImage = null; this.pictureBox1.Location = new System.Drawing.Point(0, 0); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(26, 39); @@ -51,6 +50,7 @@ this.Controls.Add(this.pictureBox1); this.Name = "PControl"; this.Size = new System.Drawing.Size(26, 39); + this.Load += new System.EventHandler(this.PControl_Load); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); diff --git a/Controls/Mesnac.Controls.ChemicalWeighing/PControl.cs b/Controls/Mesnac.Controls.ChemicalWeighing/PControl.cs index f1a206c..f68937f 100644 --- a/Controls/Mesnac.Controls.ChemicalWeighing/PControl.cs +++ b/Controls/Mesnac.Controls.ChemicalWeighing/PControl.cs @@ -12,11 +12,131 @@ namespace Mesnac.Controls.ChemicalWeighing { [ToolboxBitmap(typeof(PControl), "Resources.p.png")] - public partial class PControl : UserControl + public partial class PControl : ChemicalWeighingControl { - public PControl() + public enum Statuses + { + TurnOff = 0, + TurnOn = 1 + } + private bool bNewPic = false; + private string _statusName; + //private object _textName = string.Empty; + private Statuses _status; + private string[] sImages; + + public PControl() : base() { InitializeComponent(); + + Init(); + + ReloadStream(); + this.Reload(); + } + + protected override void Init() + { + base.Init(); + _imageStream = null; + sImages = new string[2]; + sImages[0] = "Mesnac.Controls.ChemicalWeighing.Resources.p0.png";//zsTurnOff + sImages[1] = "Mesnac.Controls.ChemicalWeighing.Resources.p1.png";//zsTurnOn + _status = Statuses.TurnOff; + } + + private void ReloadStream() + { + int nIndex = (int)_status; + _imageStream = _assembly.GetManifestResourceStream(sImages[nIndex]); + } + + public string StatusName + { + get + { + return _statusName; + } + set + { + _statusName = value; + } } + + public Statuses Status + { + get + { + return _status; + } + set + { + if (bFirstCreated == true) + { + bFirstCreated = false; + } + bool flag = false; + //if (_status != value &&(this.Size.Width != 150 || this.Size.Height != 150) ) + if (_status != value) + { + flag = true; + if (this.DesignMode == true) + { + bNewPic = true; + } + } + + if ((int)value < 0) + { + _status = (Statuses)0; + } + else if ((int)value > 1) + { + _status = (Statuses)1; + } + else + { + _status = value; + } + if (flag) + { + ReloadStream(); + Reload(); + this.Refresh(); + } + } + } + + private void Reload() + { + if (_imageStream != null) + { + Image img = Image.FromStream(_imageStream); + Size size = new Size(); + size.Width = 29; + size.Height = 24; + this.Size = size; + if (bNewPic == true) + { + this.Size = size; + bNewPic = false; + } + pictureBox1.Image = img; + pictureBox1.Refresh(); + } + } + + private void PControl_Load(object sender, EventArgs e) + { + if (bFirstCreated == true && this.DesignMode == true) + { + bNewPic = true; + bFirstCreated = false; + Reload(); + } + } + + + } } diff --git a/Controls/Mesnac.Controls.ChemicalWeighing/PControl.resx b/Controls/Mesnac.Controls.ChemicalWeighing/PControl.resx index 45b61e9..1af7de1 100644 --- a/Controls/Mesnac.Controls.ChemicalWeighing/PControl.resx +++ b/Controls/Mesnac.Controls.ChemicalWeighing/PControl.resx @@ -117,26 +117,4 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - iVBORw0KGgoAAAANSUhEUgAAACIAAABNCAYAAADD5bZNAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAN7SURBVGhD7Zi7ThtBFED5CkhK4B8iCI8ooac3VSCWEpCokaI8cCoUQKINTVzaNCjhUYEpkEAC - /iQ0SZoQEk3uWWas9eXaXq8NaaY40npm7r2H3Xns0nd2dpaZRyOj/cJz4bNwLnwTrjxc00YfYx5YOTTO - uQSzUyNJJ4Qd4VpwGfkjEDNh5QxkEpEkQ8KukCQfHRt3cy+K7uPqqqtWt9zh4aE7OTlJ4Jo2+hjD2BDn - cwxZNdqKSGBB+E6iJ0+fuffLJVer1Zz0ZQIxYoglh881I30NdVqKSMA7H+xezs+7g4MDs1gWiCVHyEdu - aa/XaioiA18TMPJ4zK2tr5vJ80AucnqZN9LWXEQG8DiSgE+bm2bCbiBnSqYgbbdFpGNQ+MGg1bXe3QkN - ub0ItQYtkWR18DzTgXfBq/mFILPbICIN43Qww7uZmFlhRaVW00Ra5CuNy6WSGahZWVlxi4uLDdC2sbHh - tre3zRgNtbzIl0RELti2r9mAsu4TFJ6ammpKsVh0x8fHZmyAWn7TY7fuR4RzIdkNrQCLIJL+67nd5XLZ - FQqFpI8x6RgLalIbB0Q4pGQ2r5mDLSyRAELhzug+DTW9SBkRTkxXqVTMwRatRCCItJsvlWo1iJwjwvHd - 0TnSSoS5EUSyzBMvconIL36cnp6agy2aiVB4aWkp6csyR6jpRa4Q4aUmlwirg+tAuBPT09Nuf3/fjE2j - RS75kefRaFgx7CdMWCtOox/NzWSViWMNtggi7SZjO1KT9QKRMj96tXw7IXUAJsu3JxtaHlIb2iwiA0Ku - Lb4bEWqltviBcOjxtp350OuFyHLpQ7gbO+nTl8+F5GjOMuM5Uzhps64ODXHmawBIw/94MdpDQovwDXPf - r4pDt0RAOmYYdE8vz8k3jikCMuBtkLnDz4n6t01TEWCgD3CvFha6eo9lYpIj5CO3tNdrtRQBCeAx/SSY - Gc5yqx0dmcUsGEtManWQq7NPzoAEDguNH+Fy4nIcVLduPsI5QYFr2uhjjN+sAnvCsFUjk0hAkkwKbHr8 - qyFdoBV/BWImrZyBjkQCkpQ3/lmBg/JC4O3ut4dr2uibEx5aOTS5RCykYHIHrL4s1EXCRV6CiG7vFLOx - E6KIJopooogmimiiiCaKaKKIJopooogmimiiiCaKaKKIJopooogmimiiiCaKaKKIJopoeiPi+v4BcqDZ - eZrfye0AAAAASUVORK5CYII= - - \ No newline at end of file diff --git a/Controls/Mesnac.Controls.ChemicalWeighing/Resources/Thumbs.db b/Controls/Mesnac.Controls.ChemicalWeighing/Resources/Thumbs.db index f66ef14..1e2d738 100644 Binary files a/Controls/Mesnac.Controls.ChemicalWeighing/Resources/Thumbs.db and b/Controls/Mesnac.Controls.ChemicalWeighing/Resources/Thumbs.db differ diff --git a/Controls/Mesnac.Controls.ChemicalWeighing/Resources/p0.png b/Controls/Mesnac.Controls.ChemicalWeighing/Resources/p0.png new file mode 100644 index 0000000..092835f Binary files /dev/null and b/Controls/Mesnac.Controls.ChemicalWeighing/Resources/p0.png differ diff --git a/Controls/Mesnac.Controls.ChemicalWeighing/Resources/p1.png b/Controls/Mesnac.Controls.ChemicalWeighing/Resources/p1.png new file mode 100644 index 0000000..959cd34 Binary files /dev/null and b/Controls/Mesnac.Controls.ChemicalWeighing/Resources/p1.png differ diff --git a/Main/MCEdit/Data/ComponentAction 2.xml b/Main/MCEdit/Data/ComponentAction 2.xml new file mode 100644 index 0000000..3714948 --- /dev/null +++ b/Main/MCEdit/Data/ComponentAction 2.xml @@ -0,0 +1,444 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Main/MCEdit/Data/ComponentAction.en-US.xml b/Main/MCEdit/Data/ComponentAction.en-US.xml index 5cc4347..f1d5809 100644 --- a/Main/MCEdit/Data/ComponentAction.en-US.xml +++ b/Main/MCEdit/Data/ComponentAction.en-US.xml @@ -402,4 +402,11 @@ + + + + + + + diff --git a/Main/MCEdit/Data/ComponentAction.xml b/Main/MCEdit/Data/ComponentAction.xml index 3714948..f43b3d2 100644 --- a/Main/MCEdit/Data/ComponentAction.xml +++ b/Main/MCEdit/Data/ComponentAction.xml @@ -402,6 +402,12 @@ + + + + + + diff --git a/Main/MCEdit/Data/MCProject/nodeForm/FormDeviceDetail2.xml b/Main/MCEdit/Data/MCProject/nodeForm/FormDeviceDetail2.xml index 495abb8..01ff7e6 100644 --- a/Main/MCEdit/Data/MCProject/nodeForm/FormDeviceDetail2.xml +++ b/Main/MCEdit/Data/MCProject/nodeForm/FormDeviceDetail2.xml @@ -1,6 +1,124 @@ + + ParametersWithPc.DB2102-valveInitDB.DV2PCP07_SetRight + ParametersWithPc.DB2102-valveInitDB.DV2PCP07_SetLeft + ParametersWithPc.DB2102-valveInitDB.DV2PCP07_AlarmRightPosition + ParametersWithPc.DB2102-valveInitDB.DV2PCP07_AlarmLeftPosition + 901, 150 + ThreeWayValve12 + 22, 12 + + + ParametersWithPc.DB2102-valveInitDB.DV2PCP05_SetRight + ParametersWithPc.DB2102-valveInitDB.DV2PCP05_SetLeft + ParametersWithPc.DB2102-valveInitDB.DV2PCP05_AlarmRightPosition + ParametersWithPc.DB2102-valveInitDB.DV2PCP05_AlarmLeftPosition + 914, 97 + ThreeWayValve11 + 22, 12 + + + ParametersWithPc.DB2102-valveInitDB.DV2PCP03_SetRight + ParametersWithPc.DB2102-valveInitDB.DV2PCP03_SetLeft + ParametersWithPc.DB2102-valveInitDB.DV2PCP03_AlarmRightPosition + ParametersWithPc.DB2102-valveInitDB.DV2PCP03_AlarmLeftPosition + 802, 205 + ThreeWayValve10 + 22, 12 + + + + TurnOff + 608, 286 + PControl4 + 16, 22 + + + + TurnOff + 385, 285 + PControl3 + 16, 22 + + + + TurnOff + 157, 285 + PControl2 + 16, 22 + + + + TurnOff + 0, 371 + PControl1 + 16, 22 + + + ParametersWithPc.DB2102-valveInitDB.BU3BLT05_Alarm + ParametersWithPc.DB2102-valveInitDB.BU3BLT05_Set + 647, 306 + LjSwith289 + 14, 13 + + + ParametersWithPc.DB2102-valveInitDB.BU2BLT03_Alarm + ParametersWithPc.DB2102-valveInitDB.BU2BLT03_Set + 423, 306 + LjSwith290 + 14, 13 + + + ParametersWithPc.DB2102-valveInitDB.BU1BLT05_Alarm + ParametersWithPc.DB2102-valveInitDB.BU1BLT05_Set + 193, 306 + LjSwith291 + 14, 13 + + + ParametersWithPc.B1.AS3BLT05 + TurnOff + 647, 417 + Jzf44 + 18, 15 + + + ParametersWithPc.B1.AS2BLT05 + TurnOff + 421, 417 + Jzf43 + 18, 15 + + + ParametersWithPc.B1.AS1BLT05 + TurnOff + 181, 419 + Jzf42 + 18, 15 + + + ParametersWithPc.B1.AS3BLT02 + TurnOff + 542, 368 + Jzf41 + 18, 15 + + + ParametersWithPc.B1.AS2BLT02 + TurnOff + 314, 366 + Jzf40 + 18, 15 + + + ParametersWithPc.B1.AS1BLT02 + TurnOff + 84, 367 + Jzf39 + 18, 15 + 1529, 417 FeedingPortRight3 @@ -281,8 +399,8 @@ 97, 192 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU1BLT07_Alarm + ParametersWithPc.FC4_Valve.BU1DBT07_Set 225, 393 LjSwith294 14, 13 @@ -306,8 +424,8 @@ 3, 32 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU2BLT05_Alarm + ParametersWithPc.DB2102-valveInitDB.BU2BLT05_Set 455, 394 LjSwith295 14, 13 @@ -331,8 +449,8 @@ 3, 32 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU3BLT07_Alarm + ParametersWithPc.DB2102-valveInitDB.BU3BLT07_Set 684, 390 LjSwith296 14, 13 @@ -405,13 +523,6 @@ SpecialLabelBlue442 96, 3 - - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set - 65, 369 - LjSwith298 - 14, 13 - @@ -430,13 +541,6 @@ SpecialLabelBlue441 3, 32 - - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set - 88, 366 - LjSwith297 - 14, 13 - @@ -456,7 +560,7 @@ 3, 32 - + ParametersWithPc.B1.AS1BLT03 TurnOff 111, 346 Jzf38 @@ -530,13 +634,6 @@ SpecialLabelBlue447 96, 3 - - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set - 296, 366 - LjSwith300 - 14, 13 - @@ -555,13 +652,6 @@ SpecialLabelBlue446 3, 32 - - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set - 319, 363 - LjSwith299 - 14, 13 - @@ -581,7 +671,7 @@ 3, 32 - + ParametersWithPc.B1.AS2BLT03 TurnOff 342, 343 Jzf35 @@ -655,13 +745,6 @@ SpecialLabelBlue455 96, 3 - - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set - 524, 367 - LjSwith303 - 14, 13 - @@ -680,13 +763,6 @@ SpecialLabelBlue456 3, 32 - - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set - 547, 364 - LjSwith304 - 14, 13 - @@ -706,7 +782,7 @@ 3, 32 - + ParametersWithPc.B1.AS3BLT03 TurnOff 570, 344 Jzf7 @@ -731,8 +807,8 @@ 73, 3 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + + ParametersWithPc.B1.AS3BLT01 563, 329 LjSwith305 14, 13 @@ -756,8 +832,8 @@ 3, 98 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + + ParametersWithPc.B1.AS2BLT01 335, 329 LjSwith306 14, 13 @@ -781,8 +857,8 @@ 3, 98 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + + ParametersWithPc.B1.AS1BLT01 103, 329 LjSwith307 14, 13 @@ -806,7 +882,7 @@ 3, 98 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm + ParametersWithPc.DB2102-valveInitDB.BU1BLT06_Alarm ParametersWithPc.FC4_Valve.BU1DBT06_Set 157, 392 LjSwith309 @@ -831,8 +907,8 @@ 3, 32 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU2BLT04_Alarm + ParametersWithPc.DB2102-valveInitDB.BU2BLT04_Set 387, 392 LjSwith310 14, 13 @@ -856,8 +932,8 @@ 3, 32 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU3BLT06_Alarm + ParametersWithPc.DB2102-valveInitDB.BU3BLT06_Set 613, 389 LjSwith311 14, 13 @@ -1099,7 +1175,7 @@ TurnOff - 175, 415 + 43, 417 Jzf9 18, 15 @@ -1122,7 +1198,7 @@ 194, 3 - + ParametersWithPc.B1.AS1BLT04 TurnOff 124, 401 Jzf8 @@ -1149,7 +1225,7 @@ TurnOff - 407, 414 + 277, 415 Jzf32 18, 15 @@ -1172,7 +1248,7 @@ 198, 3 - + ParametersWithPc.B1.AS2BLT04 TurnOff 356, 401 Jzf33 @@ -1199,7 +1275,7 @@ TurnOff - 636, 414 + 505, 417 Jzf31 18, 15 @@ -1222,7 +1298,7 @@ 192, 3 - + ParametersWithPc.B1.AS3BLT04 TurnOff 585, 401 Jzf30 @@ -1373,8 +1449,8 @@ 5, 89 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU3BLT04_Alarm + ParametersWithPc.DB2102-valveInitDB.BU3BLT04_Set 633, 285 LjSwith315 14, 13 @@ -1398,22 +1474,22 @@ 10, 5 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU3BLT03_Alarm + ParametersWithPc.DB2102-valveInitDB.BU3BLT03_Set 621, 280 LjSwith314 14, 13 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU3BLT02_Alarm + ParametersWithPc.DB2102-valveInitDB.BU3BLT02_Set 594, 280 LjSwith313 14, 13 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU3BLT01_Alarm + ParametersWithPc.DB2102-valveInitDB.BU3BLT01_Set 579, 283 LjSwith312 14, 13 @@ -1500,8 +1576,8 @@ 17, 5 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU2BLT02_Alarm + ParametersWithPc.DB2102-valveInitDB.BU2BLT02_Set 412, 284 LjSwith319 14, 13 @@ -1524,45 +1600,13 @@ StraightTubeH38 10, 5 - - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set - 400, 279 - LjSwith318 - 14, 13 - - - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set - 373, 279 - LjSwith317 - 14, 13 - - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU2BLT01_Alarm + ParametersWithPc.DB2102-valveInitDB.BU2BLT01_Set 358, 282 LjSwith316 14, 13 - - - ptUpToDown - ptTurnOff - - 401, 262 - StraightTubeV34 - 5, 43 - - - - ptLeftToRight - ptTurnOff - - 404, 262 - StraightTubeH37 - 10, 5 - ptUpToDown @@ -1572,24 +1616,6 @@ StraightTubeV33 5, 88 - - - ptUpToDown - ptTurnOff - - 384, 176 - StraightTubeV32 - 5, 91 - - - - ptUpToDown - ptTurnOff - - 408, 176 - StraightTubeV31 - 5, 89 - ptUpToDown @@ -1599,24 +1625,6 @@ StraightTubeV30 5, 57 - - - ptUpToDown - ptTurnOff - - 376, 261 - StraightTubeV29 - 5, 46 - - - - ptLeftToRight - ptTurnOff - - 379, 261 - StraightTubeH36 - 10, 5 - ptLeftToRight @@ -1627,8 +1635,8 @@ 17, 5 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU1BLT04_Alarm + ParametersWithPc.DB2102-valveInitDB.BU1BLT04_Set 182, 289 LjSwith320 14, 13 @@ -2139,7 +2147,7 @@ TurnOff - 928, 64 + 925, 83 Jzf29 18, 15 @@ -2219,10 +2227,10 @@ 3, 185 - - - - + ParametersWithPc.DB2102-valveInitDB.DV2PCP04_SetRight + ParametersWithPc.DB2102-valveInitDB.DV2PCP04_SetLeft + ParametersWithPc.DB2102-valveInitDB.DV2PCP04_AlarmRightPosition + ParametersWithPc.DB2102-valveInitDB.DV2PCP04_AlarmLeftPosition 901, 73 ThreeWayValve5 22, 12 @@ -2296,10 +2304,10 @@ 3, 130 - - - - + ParametersWithPc.DB2102-valveInitDB.DV2PCP06_SetRight + ParametersWithPc.DB2102-valveInitDB.DV2PCP06_SetLeft + ParametersWithPc.DB2102-valveInitDB.DV2PCP06_AlarmRightPosition + ParametersWithPc.DB2102-valveInitDB.DV2PCP06_AlarmLeftPosition 886, 125 ThreeWayValve4 22, 12 @@ -2341,10 +2349,10 @@ 3, 90 - - - - + ParametersWithPc.DB2102-valveInitDB.DV2PCP09_SetRight + ParametersWithPc.DB2102-valveInitDB.DV2PCP09_SetLeft + ParametersWithPc.DB2102-valveInitDB.DV2PCP09_AlarmRightPosition + ParametersWithPc.DB2102-valveInitDB.DV2PCP09_AlarmLeftPosition 1106, 207 ThreeWayValve3 22, 12 @@ -2375,10 +2383,10 @@ 3, 90 - - - - + ParametersWithPc.DB2102-valveInitDB.DV2PCP08_SetRight + ParametersWithPc.DB2102-valveInitDB.DV2PCP08_SetLeft + ParametersWithPc.DB2102-valveInitDB.DV2PCP08_AlarmRightPosition + ParametersWithPc.DB2102-valveInitDB.DV2PCP08_AlarmLeftPosition 987, 207 ThreeWayValve2 22, 12 @@ -2470,10 +2478,10 @@ 3, 115 - - - - + ParametersWithPc.DB2102-valveInitDB.DV2PCP02_SetRight + ParametersWithPc.DB2102-valveInitDB.DV2PCP02_SetLeft + ParametersWithPc.DB2102-valveInitDB.DV2PCP02_AlarmRightPosition + ParametersWithPc.DB2102-valveInitDB.DV2PCP02_AlarmLeftPosition 790, 177 ThreeWayValve1 22, 12 @@ -3200,15 +3208,15 @@ 68, 81 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU1BLT03_Alarm + ParametersWithPc.DB2102-valveInitDB.BU1BLT03_Set 170, 284 LjSwith357 14, 13 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU1BLT02_Alarm + ParametersWithPc.DB2102-valveInitDB.BU1BLT02_Set 143, 284 LjSwith358 14, 13 @@ -3243,8 +3251,8 @@ 39, 65 - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + ParametersWithPc.DB2102-valveInitDB.BU1BLT01_Alarm + ParametersWithPc.DB2102-valveInitDB.BU1BLT01_Set 128, 287 LjSwith395 14, 13