Author Topic: Any plan for more than 8 sequencers?  (Read 6506 times)

cch1955

  • Full Member
  • Posts: 198
  • Automated Machine Systems Designer
    • View Profile
Any plan for more than 8 sequencers?
« on: September 20, 2007, 03:49:19 PM »
Great one:
Any plan for more than 8 sequencers?

Thanks

support

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 3170
    • View Profile
    • Internet Programmable PLCs
Re:Any plan for more than 8 sequencers?
« Reply #1 on: September 20, 2007, 10:14:17 PM »
So far we never receive any request for more than 8 sequencers. Most users would use only 1 or 2 sequencers. It is interesting to know how are you going to use so many sequencers. Of course if you are using M-series PLC you could implement more sequencer using TBASIC. i.e. A TBASIC custom function can be programmed to set some relays to ON based on the PV of a counter.

Some PLCs that do not have sequencers actually use a "Shift Register" to perform job similar to a sequencer. You could put in a bit and then apply LEFTSHIFT or RIGHTSHIFT to shift the bit along one or more internal relay variable RELAY[n] . The relay bit that is turned ON will indicate the step position. You can implement as many of these as the memory and relay space permits. Since you can cascade multiple RELAY[] you could have sequence that are larger than 32 steps since each RELAY[] variable cover 16-bits.
« Last Edit: September 26, 2007, 09:33:43 AM by support »
Email: support@triplc.com
Tel: 1-877-TRI-PLCS

FQ-ONG

  • Jr. Member
  • Posts: 61
    • View Profile
Re:Any plan for more than 8 sequencers?
« Reply #2 on: September 26, 2007, 03:06:53 AM »
Great! I never know still have this two method to implement the sequencers:
1)  A TBASIC custom function can be programmed to set some relays to ON based on the PV of a counter.
2)   You could put in a bit and then apply LEFTSHIFT or RIGHTSHIFT to shift the bit along an internal relay. The relay bit that is turned ON will indicate the step position.

Previously, I used large number of counters to implement the sequencers after full used of 8 sequencers.