Hi,
I have Allen-Bradley MicroLogix 1000 PLC, connected to my notebook with serial usb cabl on COM3. I downloaded AdvancedHMI, I created new project and add dlls from Advanced HMI.
I tried to use SerialDF1forSLCMicroCom driver and I tried to execute following code through my application
plc.ComPort = "COM3";
plc.PollRateOverride = 100;
string plcRead = plc.Read("N7:0") // Value is 500
txt.Text = plcRead;
but when I start application I am not getting any results, any ideas what I am doing wrong ? In PLC value is 500.
Thanks.