I want to use one of these for my switches
https://fbimini.com/assets/files/product_images/250497.jpg
but seeing as they are all momentary switches is there a way that i could use them to a relay and then keep the acc. on then hit the switch again to turn it off?
You can turn any momentary swtich in to a toggle switch by using a D series Flip Flop IC chip. You will have to create a debounce interface using an AND gate, but it will work perfectly. Do a google search for "D Flip Flop toggle circuit" and you can find some easy schematics to follow.
You can also set it up with three relays I believe to turn a momentary switch to a toggle switch.
Your final option is to use a microcontroller. You could eliminate all the external parts of the D series flip flow, including the debounce circuit, and be left with just an 8 pin IC chip and a voltage regulator. If you are at all interested in this setup let me know, I can give you more information.
-------------
Kevin Pierson
Why get so complicated just buy new switches.
Switches are cheep and you will have way less problems.
Flipflops, AND Circuits, Debounce Circuits, Buffers, power supplies, circuit boards, not to mention current handling capibilities., ECT ECT ECT
-------------
John DeRosa (Hotwaterwizard)
Stockton California
When in doubt, try it out !
hotwaterwizard wrote:
Why get so complicated just buy new switches.
Switches are cheep and you will have way less problems.
Flipflops, AND Circuits, Debounce Circuits, Buffers, power supplies, circuit boards, not to mention current handling capibilities., ECT ECT ECT
It's really not that complicated. Digital electronics are a MUCH better way to go then relay logic (check out industrial controls, for example). You can buy expensive latching relays and what not, or for $3 you can build a circuit that will work better in most cases then relays. The internet has made it possible for electronically experianced people (ie installers) who know nothing or very little about electronic circuits to reserach, design, and build simple circuits. With the low costs of the project you could build 5 and it wouldn't cost much.
Also, I for one, prefer momentary switches to toggle switchs for style and function. I would take a well made push button switch over a toggle switch any day of the week, espcially considering how easy it is to convert them to toggle switches!
-------------
Kevin Pierson
I have Installed and Repaired Stereos for years. Most need atleast 10 amps to operate. Show me a schematic diagram of one of your nifty Flipflop Circuits that will handle 10 amps continuous current that is not complicated.
Here is one I have

-------------
John DeRosa (Hotwaterwizard)
Stockton California
When in doubt, try it out !
You're name wouldn't happen to be Bill Bowden, would it? I only ask because I stubled across this page: https://ourworld.compuserve.com/homepages/Bill_Bowden/page9.htm. This guy has 'your' circuit posted there and claims the credit for it.
Any digital IC chip is going to need a dedicated driver circuit (transistor). The D series flip flop will use the same transistor output as 'your' JK flip flops in the circuit you posted.
My circuit below does not have a debounce component, because I don't have the time to add it. You could do it several different ways, but the easiest would be an RC setup and a buffer.
If it were me doing it, I would use an Atmel Tiny11 microcontroller. They cost $0.50. They only downside is that they operate on 5vdc, so a voltage regulator and a few caps will be necesarry. But, they have built in pull up resistors and you can software program the debounce. You will still need the transistor output.
Here is the D flip flop circuit that requires no code or programming. Please note that this is a 'simple' bare bones circuit. If I were building it I would include a few more resistors to control the current flow in the base of the transistor and out of the collector of the transistor.
-------------
Kevin Pierson