Jump to content

What's the easiest way to interchange a datatable with several PLC's


pascal

Recommended Posts

I have several PLC's running to control a building (because I can only use 8 URB adapters on 1 PLC ๐Ÿ˜’๐Ÿ˜’๐Ÿ˜’)

On 1 PLC, I communicate with my lighting system (HELVARNET - DALI) to ask the status of my lights.

Because it's a huge building,ย  it takes a while for scanning all lightsgroups.

For every group, I have the status in a data table. But now I want to make this data table is also available for my other PLC's (so they don't have to ask my lighting system what's the state of the lights)

I've tried to update the status with MQTT, publishing and subscribing all status of all lightgroups, but this is to slowly for me.....

What's the easiest way to "send" my data table to the different PLC's ? any suggestions ?

my data table is built with a structure of+- 15 elements (integers, bit arrays, string,...) -> size is 13200 bytes

I need something that can be run in the background, because my scantime is already high.... -> +-50000 ยตs (so I could have problems with my 100ms timer....)

ย 

Link to comment
Share on other sites

Since you want to share datatables between different PLCs, the easiest (easy in terms of a few lines of code) way I see, is to write DT from the source PLC to a SQL database, then any other PLC can retrieve data in any time asyncronously. For reference, my PLC program toom about 330 scan cycles to INSERT 50 rows.ย 

If you want to go faster, you would use Ethernet/IP, sending the entire data table (row by row) to each destination PLC.

ย 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

ร—
ร—
  • Create New...