News:

  • April 30, 2026, 11:54:52 PM

Login with username, password and session length

Author Topic: Remote IO Help  (Read 27011 times)

BobO

  • Host Moderator
  • Hero Member
  • *****
  • Posts: 6154
  • Yes Pinky, Do-more will control the world!
Re: Remote IO Help
« Reply #15 on: March 17, 2018, 01:13:54 PM »
No. EDRV100 only talks to a single drive.
"It has recently come to our attention that users spend 95% of their time using 5% of the available features. That might be relevant." -BobO

ATU

  • Internal Dev
  • Hero Member
  • ****
  • Posts: 2126
  • YKPAIHA
    • ATU, Inc.
Re: Remote IO Help
« Reply #16 on: March 17, 2018, 01:55:05 PM »
Why arn't the multi-drop communications implemented?  Seems like a natural configuration.


BobO

  • Host Moderator
  • Hero Member
  • *****
  • Posts: 6154
  • Yes Pinky, Do-more will control the world!
Re: Remote IO Help
« Reply #17 on: March 17, 2018, 02:07:29 PM »
As a simple Modbus device, sure, and the gateway does exactly that. As the drive adapter, it reports as an EBC, and although it could support multiple devices, it isn't nearly as easy to implement, and 485 network congestion becomes a real problem at the slow baud rates used.

But compared to the price of the motor and drive, is it really that big a deal?
"It has recently come to our attention that users spend 95% of their time using 5% of the available features. That might be relevant." -BobO

ATU

  • Internal Dev
  • Hero Member
  • ****
  • Posts: 2126
  • YKPAIHA
    • ATU, Inc.
Re: Remote IO Help
« Reply #18 on: March 17, 2018, 02:29:43 PM »
Depends on the application, it could be. The GS4 drives have the Modbus $80 option card. Compared to the GS-EDRV100 $200 solution. Most of the machines of any size that I have worked on in the last 10 years have all been some form of Ethernet I/O, If I had a slew of motor drives scattered all over a warehouse or assembly line, more than likely there is going to be Ethernet all over the place. That's why I chose the GS4 drives, because it had that option. If I was trying to reduce cost (like most OEM's)  and save the $80 and more if I went to a less capable drive, especially on large installations, I would use the 485 multi-drop if I was only changing speeds occasionally, simple start stops and monitoring.
s

BobO

  • Host Moderator
  • Hero Member
  • *****
  • Posts: 6154
  • Yes Pinky, Do-more will control the world!
Re: Remote IO Help
« Reply #19 on: March 17, 2018, 06:19:06 PM »
We've talked about both multi-drop and/or cost reducing, it just hasn't been a super high priority. Significantly simpler programming with the EDRV100, but it isn't difficult with Modbus.
"It has recently come to our attention that users spend 95% of their time using 5% of the available features. That might be relevant." -BobO

Garyhlucas

  • Hero Member
  • *****
  • Posts: 421
Re: Remote IO Help
« Reply #20 on: March 18, 2018, 01:37:28 PM »
In our industry spares have to be factored into the cost analysis.  So that is why I try to stay with a single architecture so that spare parts are common everywhere.  Even did this with AB. PLC with no I/O and Point Block I/O both local and remote.

With our product we probably won't go to actual remote I/O because we are trying to keep our master code base completely common to all projects.  So anything custom to a particular job that must be added goes in its own PLC.  We use the same PLC for that even if it costs more, because we get to reduce our spare budget.

franji1

  • Bit Weenie
  • Host Moderator
  • Hero Member
  • *****
  • Posts: 3806
    • Host Engineering
Re: Remote IO Help
« Reply #21 on: March 18, 2018, 10:16:47 PM »
Why arn't the multi-drop communications implemented?  Seems like a natural configuration.

The MB-GATEWAY does exactly that.  However, it's just Modbus/TCP, NOT Do-more's native "Ethernet I/O".  You have to do all the polling via your own MRX/MWX of the relevant drive parameters, along with handling of drives going "offline".

GSEDRV100 takes care of all of that (but only one per drive).  That is the trade-off.

Controls Guy

  • Internal Dev
  • Hero Member
  • ****
  • Posts: 3607
  • Darth Ladder
Re: Remote IO Help
« Reply #22 on: March 19, 2018, 02:56:32 PM »
Cheaper, but basically no benefit other than performance. You'll be using MRX/MWX just like you would through the 485 port. With the EDRV100, it's supported through the Ethernet I/O master. All of the relevant make-it-go registers are mapped to a structure, and the GSREGRD/WR instructions make register access painless.

And now that we've got UDT's (user types, not date/time), you should be able to create one for the drive data map and overlay it over the Modbus registers, so it's just about as cool as using the EDRV.
I retract my earlier statement that half of all politicians are crooks.  Half of all politicians are NOT crooks.  There.

ATU

  • Internal Dev
  • Hero Member
  • ****
  • Posts: 2126
  • YKPAIHA
    • ATU, Inc.
Re: Remote IO Help
« Reply #23 on: March 19, 2018, 09:06:16 PM »
And now that we've got UDT's (user types, not date/time), you should be able to create one for the drive data map and overlay it over the Modbus registers, so it's just about as cool as using the EDRV.

Great Idea!