3

I have a control unit that produces two 12v 1amp dc pulses lasting about 200ms. There is a gap of about 100ms between the pulses

I need to automatically switch these pulses between 2 outputs alternatly.

Any help would greatly appreciated

  • 1
    what is your device for controlling? are you use micro controller? Are you use TTL palse for selecting? Please explain your needs for selecting two outputs. – mehdi Sep 24 '12 at 05:21
  • one output goes to one solonoid next output to go to another solonoid – Joseph Dyer Sep 24 '12 at 14:20

2 Answers2

3

Use a D-flipflop like the HEF4013 to switch between channels.

enter image description here

With each pulse the high level switches between \$Q\$ and \$\overline{Q}\$ and back. AND each output with the input pulse signal. Use the AND gates' outputs to drive MOSFETs like the FDC855.

The HEF4013 is from the older CD4000 series, and normally I would suggest the 74HC74, but that one can't operate at 12 V. The HEF4013 can operate at a power supply voltage up to 15 V.

Don't forget the protection diodes across the solenoids.

stevenvh
  • 145,145
  • 21
  • 455
  • 667
-2

One solution for this is using multiplexers. A multiplexer is a device that selects one of several analog or digital input signals and forwards the selected input into a single line. enter image description here

For this i recommend use 74ls157. This is Quad 2-to-1 Multiplexer. enter image description here

The operation of the 74LS157, Quad 2 line to 1 line multiplexer is quite simple. It simply acts as four switches. When the A/B input is low, the A inputs are selected. E.g. 1A passes through to 1Y, 2A passes through to 2Y etc. When the A/B is high, the B inputs are selected.

mehdi
  • 405
  • 4
  • 9
  • "Paper out"???? This is multiplexer, but he needs a demultiplexer. This can't switch 12 V, and neither can output 1A. This is not a good answer. – Federico Russo Sep 24 '12 at 14:52