Author Topic: BasicDataLogger2 for 5 compactlogix PLCs  (Read 1001 times)

suparman

  • Newbie
  • *
  • Posts: 18
    • View Profile
BasicDataLogger2 for 5 compactlogix PLCs
« on: October 31, 2018, 10:07:26 PM »
Hello,
I have 5 compactlogix PLCs with IP address 192.168.1.10, 192.168.1.11, 192.168.1.12, 192.168.1.13 and 192.168.1.14 and I want to record the tag value for pressure and temperature from each plc into a file record.log (single file).
How to setting up my BasicDataLogger2 based on my requirement?

thank you in advance

Supar

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5322
    • View Profile
    • AdvancedHMI
Re: BasicDataLogger2 for 5 compactlogix PLCs
« Reply #1 on: October 31, 2018, 10:23:10 PM »
Add 5 EthernetIPforCLXCom drivers to the form
Set the IPAddress property of each one for a different PLC
Add 5 DataLoggers to the form
Set a unique filename for each
Set the ComComponent of each to point to a different driver instance

Godra

  • Hero Member
  • *****
  • Posts: 1447
    • View Profile
Re: BasicDataLogger2 for 5 compactlogix PLCs
« Reply #2 on: October 31, 2018, 10:36:07 PM »
If the single file is a requirement you can't change then maybe Google how to combine all the data from those unique files into a single Excel sheet or similar.

suparman

  • Newbie
  • *
  • Posts: 18
    • View Profile
Re: BasicDataLogger2 for 5 compactlogix PLCs
« Reply #3 on: October 31, 2018, 11:17:17 PM »
thank you very much