Ignition Switch Current Protection
HalcyonDaze
Posts: 17
I need some circuit help. I've built a module to start a motorcycle via rfid tags using a bs2 stamp and the parallax RFID receiver, to be powered by the on-board lead cell battery. But my circuit skills are still pretty basic, and before I wire the thing up I want to make sure Im not going to fry anything.
So what steps do I need to take to protect my system from the massive currents involved?
I have a 5v regulator between the stamp and the battery, but should I be thinking fuses or something too considering the instability of a cranking car battery?
For the Start output can I get away with a transistor to get me up to the currents we're talking, or do I need a relay? Will a relay in close proximity cause interference or damage to the RFID antenna?
I also need an input to confirm the Running state of the bike. Do I need anything more than a big resistor to hold the current down, or should I be thinking relays, fuses etc on that end too?
EDIT:
Im not really concerned with security for this. All I need is start it without having to physically touch the bike in any way; the only reason I didn't just go with a mag switch and a big permanent magnet was that I was afraid of other stray magnetic fields flicking it while the thing was already running. And I mentioned the RFID portion of the project because any relays will be basically right up against the antenna and the stamp, and I didn't want the relay coils to damage or interfere with them.
My current design was using the bs2 and switching transistors to power on the bike and send the starter a signal, but those things have a max current rating of 800 mA, so I'm trying to find a small footprint way to safely switch (and isolate) a higher current line to act as the ignition switch. I don't expect the LDO to actually source that signal, just to power the RFID, the bs2, and as little of the transistor/relay branch of the system as possible.
So what steps do I need to take to protect my system from the massive currents involved?
I have a 5v regulator between the stamp and the battery, but should I be thinking fuses or something too considering the instability of a cranking car battery?
For the Start output can I get away with a transistor to get me up to the currents we're talking, or do I need a relay? Will a relay in close proximity cause interference or damage to the RFID antenna?
I also need an input to confirm the Running state of the bike. Do I need anything more than a big resistor to hold the current down, or should I be thinking relays, fuses etc on that end too?
EDIT:
Im not really concerned with security for this. All I need is start it without having to physically touch the bike in any way; the only reason I didn't just go with a mag switch and a big permanent magnet was that I was afraid of other stray magnetic fields flicking it while the thing was already running. And I mentioned the RFID portion of the project because any relays will be basically right up against the antenna and the stamp, and I didn't want the relay coils to damage or interfere with them.
My current design was using the bs2 and switching transistors to power on the bike and send the starter a signal, but those things have a max current rating of 800 mA, so I'm trying to find a small footprint way to safely switch (and isolate) a higher current line to act as the ignition switch. I don't expect the LDO to actually source that signal, just to power the RFID, the bs2, and as little of the transistor/relay branch of the system as possible.
Comments
http://www.futurlec.com/Mini_Power.shtml
then as far as the Hardware . Sam has a point ..SMPS is way more eff and Beacause you are rinnung off a Shoe size Lead acid Batt you need to suck every mA you can !
the losses in a LDO is still IMHO to high for a app like yours .
IF I was doing this I would set it up so that You get on the bike and press ( go ) to read the tag . at the same time that Button is ignition that is enabled by the ( OK ) bit set by the reader .
then as soon as the reader looses the card it will stop the bike .
this way the reader is not on till you ask it to . do the chance of a dead batt is MUCH less . then as soon as the bike is running the reader wil be on all the time ..
this is not BS2 code but a idea on how to knda flow the code in a way
First check to see if the bike is runing If so then check the tag . if tag OK then check to see if the bike is running If not then check the ON button. if on button is good then check tag .
if tag is good then GOSUB start bike .If on button is bad then go to the top of the program
this is start .. I may not work as shown but it may help
Peter ..
i hope i helped
My current design was using the bs2 and switching transistors to power on the bike and send the starter a signal, but those things have a max current rating of 800 mA, so I'm trying to find a small footprint way to safely switch (and isolate) a higher current line to act as the ignition switch. I don't expect the LDO to actually source that signal, just to power the RFID, the bs2, and as little of the transistor/relay branch of the system as possible.
Interesting. Ive been using them for a while and never actually had to use the heat sink features yet. What current was it running? Was it actuating a lock, or a full swing arm motor?
Here is a pressing issue . Your batt in a bike is around 17 Ah or less . That Batt is not going to last well with 100+ mA loads of the reader and the stamp ....... you may run in to starting issues in the cold if you did not use ( charge ) the bike in a week .
.
So you may need a switch to enable the whole RFID system . so that its not doing a constant drain . a seat switch my do the job in a simple hidden way .
use a 555 as a pulse strecher . so that if you hit a bump it will not kill the bike , ill say a 2 second delay for now.
Use Logic input MOSFETs to drive the relays . IR has a TON of them and are way better suited for this kind of work .
Peter ..
is not goig to be happy with a 200mA or so load . what is a Bike batt 17 AH . its not much and after a few days It wil be dead enough where it may not start the bike .
A comment from Peanut gallery.
Ever heard about "Bendix"? Unless bikes use different technology - the starter (Bendix) is connected to battery via a relay that carries the actuall starting current around 100 or more Amperes.
This relay is activated with much less current, but still not directly driveable by processor output.
Also the mechanics of the starter prevents the starter to engage the flywheel when the motor is running,
ableit with some unplesant noises! So if accidental "bumping" of the starter is a concern - introducing some reasonable delay in activation ( similar to button debounce ) would do the trick.