Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Dean

Pages: [1]
1
Support Questions / Read ControlLogix Serial Number
« on: April 02, 2017, 10:58:33 AM »
Hi Archie,
Is it possible to read the serial number of ControlLogix plc with AdvancedHMI driver ?
I found this article on Internet where the CIP messages for that are described. - http://www.plctalk.net/qanda/archive/index.php/t-39940.html 
So can I somehow send these CIP messages through the AHMI driver ?

2
Support Questions / Two driver objects with equal IP - Error
« on: December 01, 2015, 08:04:15 AM »
Hello,

I'm using two objects of EthernetIPforCLXCom. The two object have the same IP but different ports/slots. Obviously one of them has wrong port number. When I try to use the correct one it returns error.
Is that a bug or this is expected ?
Here is the code:

           _clxDriver = new EthernetIPforCLXCom();
            _clxDriver2 = new EthernetIPforCLXCom();

            _clxDriver.IPAddress = "192.168.1.102";
            _clxDriver.Port = 44818;
            _clxDriver.ProcessorSlot = 0;

            _clxDriver2.IPAddress = "192.168.1.102";
            _clxDriver2.Port = 44819;      //wrong port number
            _clxDriver2.ProcessorSlot = 0;
           
          _clxDriver.ComError += _clxDriver_ComError;
----
          _clxDriver.Subscribe(tagName, 1, 1000, _clxDriver_CallBack);   //this should be working but _clxDriver_ComError returns Error

Thanks!

3
Support Questions / Reading a list of Tags
« on: October 15, 2015, 08:13:42 AM »
Hello,

Does AdvancedHMI support reading a list of all the tags from the PLC ? I need to know what tags are already there in the PLC.

Thanks

Pages: [1]