AdvancedHMI Software

General Category => Open Discussion => Topic started by: Jaguar on July 16, 2020, 06:54:52 PM

Title: Communicating with AB MicroLogix1000
Post by: Jaguar on July 16, 2020, 06:54:52 PM
This topics is a common topics might have discussed hundreds of time in the forum. However, I could  not find any discussion here. I apologize, if I am raising this again.

Anyway, I am having issue communicating with PLC. Getting this message,"Failed to write value. No response from PLC". Here are my steps:
I downloaded the program successfully on PLC ("Do you go to Online". I clicked "No")
Closed the RSLinx
Went to bin folder of the Advanced HMI and open the AdvancedHMI.exe.
As I try to enter value, I get that message.
The PLC is connected in Com4. Below is the code setup,

 'SerialDF1forSLCMicroCom1
        '
        Me.SerialDF1forSLCMicroCom1.BaudRate = "Auto"
        Me.SerialDF1forSLCMicroCom1.CheckSumType = MfgControl.AdvancedHMI.Drivers.DF1Transport.ChecksumOption.Crc
        Me.SerialDF1forSLCMicroCom1.ComPort = "COM4"
        Me.SerialDF1forSLCMicroCom1.DisableSubscriptions = False
        Me.SerialDF1forSLCMicroCom1.EnableLogging = False
        Me.SerialDF1forSLCMicroCom1.IniFileName = ""
        Me.SerialDF1forSLCMicroCom1.IniFileSection = Nothing
        Me.SerialDF1forSLCMicroCom1.IsPLC5 = False
        Me.SerialDF1forSLCMicroCom1.MaxPCCCPacketSize = 236
        Me.SerialDF1forSLCMicroCom1.MyNode = 0
        Me.SerialDF1forSLCMicroCom1.Parity = System.IO.Ports.Parity.None
        Me.SerialDF1forSLCMicroCom1.PollRateOverride = 500
        Me.SerialDF1forSLCMicroCom1.TargetNode = 0

Am I missing any steps? Would appreciate your help.
Title: Re: Communicating with AB MicroLogix1000
Post by: Godra on July 16, 2020, 07:22:32 PM
Your target node is probably incorrect.

Make sure that Rslinx is completely shut down.
If you can see it's icon still in the system tray then right click it.
Title: Re: Communicating with AB MicroLogix1000
Post by: Archie on July 16, 2020, 07:34:02 PM
I don't remember for sure, but the MicroLogix 1000 may not support a packet size of 236. Try a lower number like 100
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 17, 2020, 08:00:42 PM
Hi Godra,

You are right. Rslinx was lurking on Sys Tray. I turned that off and AdvancedHMI has started communicating with PLC.

Thanks Godra and Archie both!

Regards,
Title: Communicating with AB MicroLogix1000
Post by: Jaguar on July 18, 2020, 12:09:30 PM
I have another issue. Could any of you help me to understand? The PLC codes are successfully downloaded to AB Micrologix1000. Made the HMI, and it started communicating with PLC (Thanks to @Godra as he advised to check SysTyay).
After that I want to change something on HMI. Opened AdvancedHMI35v.sln. From there, opened MainForm.Designer.vb. Did some changes about location of the buttons, and hit "Start" play button to see that changes are right. Closed AdvancedHMI35.sln. Opened AdvancedHNI.exe from bin folder of Debug folder. Now, I see that HMI does not communicate with PLC (getting failed to write value message).I also see that Tx/Rx Led ON USB-1761-CBL-PM02 blinks. That means it is connected to HMI.

Please help me
Title: Re: Communicating with AB MicroLogix1000
Post by: Archie on July 18, 2020, 01:03:09 PM
Why did you make changes in the designer code as opposed to using the designer? That is a risky file to edit because it can break your solution.

Are you saying it works when you run within Visual Studion, but not when you run from the exe in the debug folder?
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 18, 2020, 05:08:48 PM
Hi Archie, before making any changes, as I opened the AdvancedHMI.exe file, everything was working fine, properly communicating with PLC.
I wanted to change the name of one of the Panel Meter. I closed everything and opened the Opened AdvancedHMI35v.sln. From there, opened MainForm.Designer.vb. Just changed the name of the Digital Panel meter (no other changes), and hit "Start" play button to see that name change was right. Closed AdvancedHMI35.sln.

Again, Opened AdvancedHNI.exe from bin folder, as I did originally. Now, I see that HMI does not communicate with PLC (getting failed to write value message).I also see that Tx/Rx Led ON USB-1761-CBL-PM02 blinks. That means it is connected to HMI. Normally, when HMI communicates with PLC, the Red Led blinks rapidly.
Title: Re: Communicating with AB MicroLogix1000
Post by: Archie on July 18, 2020, 05:38:14 PM
Running the project using the play button within VS should give the same results as running outside of VS. The only difference is VS puts debugging hooks in the file.

You say you are getting a write error, so there must be something trying to write a value. Do you have code that writes to the PLC or does this happen after you click on something?
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 18, 2020, 05:48:50 PM
Before making any changes, I was able to write from HMI, no issue.

I made the changes as I explained before, now as I opened the AdvancedHMI.exe file and I noticed that it does not communicate (unable to write ). I did only change the name of one panel meter and nothing else.
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 18, 2020, 05:53:49 PM
I am just entering how many cycles from HMI on Panel Meter. Before I was able to write that.

Now as I open the AdvancedHMI.exe, I see that Red led blinks. But earlier as I was writing the number on the panel meter, the Red led on USB-1761-CBL-PM02 was blinking rapidly (data are been transmitted and receiving back)
Title: Re: Communicating with AB MicroLogix1000
Post by: Archie on July 18, 2020, 06:09:15 PM
Go to your driver properties and see if you have the property EnableLogging. If so set that to True, then run the application again to get the error.

That will create a log file in the driectory with the exe. Post that file here and I will see if I can decipher why you get the error.
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 18, 2020, 07:02:25 PM
Hi Archie,

Where do I find the driver property. I opened AdvancedHMI drivers and opened AllenBradley, right clicked SerialDF1forSLDMicroCom.vb. Could not fine EnableLogging. Here what I see when I hit the Start, the form opens up and close the form.

'AdvancedHMI.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'AdvancedHMI.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\Users\jgupta\OneDrive - Weber-Stephen Products LLC\Desktop\Start-Reset buttons - Copy\AdvancedHMIv399x\AdvancedHMI\bin\Debug\AdvancedHMI.exe'. Symbols loaded.
'AdvancedHMI.exe' (CLR v4.0.30319: AdvancedHMI.exe): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'AdvancedHMI.exe' (CLR v4.0.30319: AdvancedHMI.exe): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'AdvancedHMI.exe' (CLR v4.0.30319: AdvancedHMI.exe): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'AdvancedHMI.exe' (CLR v4.0.30319: AdvancedHMI.exe): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'AdvancedHMI.exe' (CLR v4.0.30319: AdvancedHMI.exe): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'AdvancedHMI.exe' (CLR v4.0.30319: AdvancedHMI.exe): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'AdvancedHMI.exe' (CLR v4.0.30319: AdvancedHMI.exe): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'AdvancedHMI.exe' (CLR v4.0.30319: AdvancedHMI.exe): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
and so on....
The program '[936] AdvancedHMI.exe' has exited with code 0 (0x0).

Thank you VERY much for your willingness to help me.
Title: Re: Communicating with AB MicroLogix1000
Post by: Archie on July 18, 2020, 07:17:21 PM
On the MainForm, the driver will be at the bottom in the component tray. It should be named SerialDF1ForSLCMicroCom1 Click on it to select the driver, then go to the Properties Window
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 18, 2020, 08:03:38 PM
Hi Archie, I don't see any component tray at the bottom, as I click MainForm.vb. I see only codes. I attached the screen shot.


   
 
   
Title: Re: Communicating with AB MicroLogix1000
Post by: Archie on July 18, 2020, 08:12:21 PM
Did you double Click MainForm ?

How did you add your original driver and panel meter?
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 18, 2020, 08:37:05 PM
Hi Archie, as I double click the MainForm.vb. It opens up in vb codes, not in form. When I click the Start, the form  opens. But it is form only without any component.

Regarding, how I added panel meter etc. It was an old project, I developed it may be two years ago. I think when I initially developed the project, I added component to the MainForm from component box. Now as I open the old project, and click the MainForm.vb, it opens now only in vb codes. Otherwise, that old project works fine, without any change. I mean through HMI no issue, no issue in entering the cycle number etc.

Now I want to use the same project modifying little bit on the form side. That's all I intend to do.
Title: Re: Communicating with AB MicroLogix1000
Post by: Archie on July 18, 2020, 08:54:33 PM
Can you right click MainForm.vb in Solution Explorer and select View Designer?
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 18, 2020, 10:11:34 PM
Hi Archie, I did that and the MainForm is now opened in Design value.  How do I access DF1 driver property from there? I right clicked Digital Panel meter and could see its property
Title: Re: Communicating with AB MicroLogix1000
Post by: Archie on July 18, 2020, 11:25:25 PM
On the design view of the MainForm there will be a component tray at the bottom. Click once on the driver, then go to Properties Window
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 19, 2020, 11:01:26 AM
Good Morning Archie! Thanks once again!

Here I attached the screenshot(property) for the driver from component tray of the form in design view. Do you see anything not right on the property?
Title: Re: Communicating with AB MicroLogix1000
Post by: Archie on July 19, 2020, 12:25:14 PM
Change EnableLogging to True, then run the application to get the error. Then look in the debug directory and post the log file that was generated
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 19, 2020, 01:24:51 PM
Hi Archie,

Here it is, I think you are looking for,

Exception thrown: 'MfgControl.AdvancedHMI.Drivers.Common.PLCDriverException' in MfgControl.AdvancedHMI.Drivers.dll
Exception thrown: 'MfgControl.AdvancedHMI.Drivers.Common.PLCDriverException' in MfgControl.AdvancedHMI.Drivers.dll
Title: Re: Communicating with AB MicroLogix1000
Post by: Archie on July 19, 2020, 01:53:53 PM
There will be a log file in the \debug directory
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 19, 2020, 02:08:48 PM
You meant this Archie? Sorry if I am not getting it right:
12:22:59.2882005 Opening COM4: 20
12:22:59.3012005 Send   : 10 02 00 00 0F 00 60 40 A2 04 03 85 00 00 10 03 33 65
12:23:01.3112005 Send   : 10 02 00 00 0F 00 60 40 A2 04 03 85 00 00 10 03 33 65
12:23:04.3132005 Send   : 10 02 00 00 0F 00 60 40 A2 04 03 85 00 00 10 03 33 65
12:23:06.3182005 Send   : 10 02 00 00 0F 00 60 40 A2 04 03 85 00 00 10 03 33 65
12:23:09.5352005 Send   : 10 02 00 00 0F 00 61 40 A2 18 04 86 01 00 10 03 D8 ED
12:23:11.5432005 Send   : 10 02 00 00 0F 00 61 40 A2 18 04 86 01 00 10 03 D8 ED
12:23:14.5602005 Send   : 10 02 00 00 0F 00 61 40 A2 18 04 86 01 00 10 03 D8 ED
12:23:16.5642005 Send   : 10 02 00 00 0F 00 61 40 A2 18 04 86 01 00 10 03 D8 ED
12:23:19.7722005 Send   : 10 02 00 00 0F 00 62 40 A2 06 05 87 00 00 10 03 A2 5F
12:23:21.7782005 Send   : 10 02 00 00 0F 00 62 40 A2 06 05 87 00 00 10 03 A2 5F
12:23:24.7922005 Send   : 10 02 00 00 0F 00 62 40 A2 06 05 87 00 00 10 03 A2 5F
13:06:15.0471620 Opening COM4: 20
13:06:15.0571620 Send   : 10 02 00 00 0F 00 4D 40 A2 04 03 85 00 00 10 03 F2 34
13:06:17.0701620 Send   : 10 02 00 00 0F 00 4D 40 A2 04 03 85 00 00 10 03 F2 34
13:06:20.0821620 Send   : 10 02 00 00 0F 00 4D 40 A2 04 03 85 00 00 10 03 F2 34
13:06:22.0831620 Send   : 10 02 00 00 0F 00 4D 40 A2 04 03 85 00 00 10 03 F2 34
13:06:25.2851620 Send   : 10 02 00 00 0F 00 4E 40 A2 18 04 86 01 00 10 03 00 DC
13:06:27.2861620 Send   : 10 02 00 00 0F 00 4E 40 A2 18 04 86 01 00 10 03 00 DC
13:06:30.2881620 Send   : 10 02 00 00 0F 00 4E 40 A2 18 04 86 01 00 10 03 00 DC
13:06:32.2971620 Send   : 10 02 00 00 0F 00 4E 40 A2 18 04 86 01 00 10 03 00 DC
13:06:35.5031620 Send   : 10 02 00 00 0F 00 4F 40 A2 06 05 87 00 00 10 03 63 0E
13:06:37.5121620 Send   : 10 02 00 00 0F 00 4F 40 A2 06 05 87 00 00 10 03 63 0E
13:06:40.5161620 Send   : 10 02 00 00 0F 00 4F 40 A2 06 05 87 00 00 10 03 63 0E
Title: Re: Communicating with AB MicroLogix1000
Post by: Archie on July 19, 2020, 02:30:45 PM
Yes, but I do not see any write command. All of them are A2 which means it did not attempt to write anything. The write is an AA value.
Title: Re: Communicating with AB MicroLogix1000
Post by: Godra on July 19, 2020, 03:06:04 PM
Jaguar, can you zip up your whole solution and share it on the dropbox?

Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 19, 2020, 05:34:29 PM
Hi Archie, here are log. I attempted to write and got "Failed to write value. No response from PLC during write." message. But don't see any A4 value.

6:18:18.6747480 Send   : 10 02 00 00 0F 00 47 40 A2 04 03 85 00 00 10 03 8C 94
16:18:20.7108158 Send   : 10 02 00 00 0F 00 47 40 A2 04 03 85 00 00 10 03 8C 94
16:18:23.7009111 Send   : 10 02 00 00 0F 00 47 40 A2 04 03 85 00 00 10 03 8C 94
16:18:25.7029748 Send   : 10 02 00 00 0F 00 47 40 A2 04 03 85 00 00 10 03 8C 94
16:18:28.9250758 Send   : 10 02 00 00 0F 00 48 40 A2 18 04 86 01 00 10 03 2B 7C
16:18:30.9361383 Send   : 10 02 00 00 0F 00 48 40 A2 18 04 86 01 00 10 03 2B 7C
16:18:33.9392335 Send   : 10 02 00 00 0F 00 48 40 A2 18 04 86 01 00 10 03 2B 7C
16:18:35.9332978 Send   : 10 02 00 00 0F 00 48 40 A2 18 04 86 01 00 10 03 2B 7C
16:18:39.1583970 Send   : 10 02 00 00 0F 00 49 40 A2 06 05 87 00 00 10 03 48 AE
16:18:41.1594578 Send   : 10 02 00 00 0F 00 49 40 A2 06 05 87 00 00 10 03 48 AE
16:18:44.1675528 Send   : 10 02 00 00 0F 00 49 40 A2 06 05 87 00 00 10 03 48 AE
16:18:46.1716167 Send   : 10 02 00 00 0F 00 49 40 A2 06 05 87 00 00 10 03 48 AE
16:18:49.3787148 Send   : 10 02 00 00 0F 00 4A 40 A2 04 03 85 00 00 10 03 D4 04
16:18:51.3827787 Send   : 10 02 00 00 0F 00 4A 40 A2 04 03 85 00 00 10 03 D4 04
16:18:54.3918738 Send   : 10 02 00 00 0F 00 4A 40 A2 04 03 85 00 00 10 03 D4 04
16:18:56.3949376 Send   : 10 02 00 00 0F 00 4A 40 A2 04 03 85 00 00 10 03 D4 04
16:18:59.6030379 Send   : 10 02 00 00 0F 00 4B 40 A2 18 04 86 01 00 10 03 3F 8C
16:19:24.6547864 Opening COM4: 20
16:19:24.6647866 Send   : 10 02 00 00 0F 00 2E 40 A2 04 03 85 00 00 10 03 4E C6
16:19:26.6668308 Send   : 10 02 00 00 0F 00 2E 40 A2 04 03 85 00 00 10 03 4E C6
16:19:29.6798937 Send   : 10 02 00 00 0F 00 2E 40 A2 04 03 85 00 00 10 03 4E C6
16:19:31.6839381 Send   : 10 02 00 00 0F 00 2E 40 A2 04 03 85 00 00 10 03 4E C6
16:19:34.8760133 Send   : 10 02 00 00 0F 00 2F 40 A2 18 04 86 01 00 10 03 A5 4E
16:19:36.8890594 Send   : 10 02 00 00 0F 00 2F 40 A2 18 04 86 01 00 10 03 A5 4E
16:19:39.9151284 Send   : 10 02 00 00 0F 00 2F 40 A2 18 04 86 01 00 10 03 A5 4E
16:19:41.9151740 Send   : 10 02 00 00 0F 00 2F 40 A2 18 04 86 01 00 10 03 A5 4E
16:19:45.1182463 Send   : 10 02 00 00 0F 00 30 40 A2 06 05 87 00 00 10 03 47 3C
16:19:47.1212922 Send   : 10 02 00 00 0F 00 30 40 A2 06 05 87 00 00 10 03 47 3C
16:19:50.1253606 Send   : 10 02 00 00 0F 00 30 40 A2 06 05 87 00 00 10 03 47 3C
16:19:52.1284025 Send   : 10 02 00 00 0F 00 30 40 A2 06 05 87 00 00 10 03 47 3C
16:19:55.3444737 Send   : 10 02 00 00 0F 00 31 40 A2 04 03 85 00 00 10 03 C2 F6
16:19:57.3495150 Send   : 10 02 00 00 0F 00 31 40 A2 04 03 85 00 00 10 03 C2 F6
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 19, 2020, 05:35:30 PM
@Godra, you meant Google Share drive?
Title: Re: Communicating with AB MicroLogix1000
Post by: Godra on July 19, 2020, 09:34:00 PM
Google Share Drive should work as well.
Title: Re: Communicating with AB MicroLogix1000
Post by: Jaguar on July 20, 2020, 05:07:54 PM
Hi @Archie & @Godra, just to let you know, I built a new HMI project, which is working fine no issue. Discarded the old one (could not figure out what was the exact issue).

Anyway, thank you VERY MUCH to both of you! I know how busy you both are, but still took time to respond to my post, even on weekend!

Thanks one again!!