OK, try this site:
http://www.jason3712.zoomshare.com/
I might post some photos on there too if I have time, so that you get the
idea of my project. But for now, I have only included the schematic. Let
me know if it's successful or not =)
---
1. A 4059 is a programmable counter, not an inverter.
2. The reed switch should _not_ be used to supply power to the 555.
The 555 should be connected across the power rails and the reed
switch should only be used to do the triggering.
3. Your triggering polarity is wrong. It should be a short
negative-going spike. Here's how the 555 should be wired:
(View in Courier)
+12V-+---------+---+----+-------+------+
| | | | |8 |
[10K] [10K] +->[POT] +---+---+ |
| | | 2|_ Vcc _|4 |
+-[0.1µF]-+--------|--O|T R|O-+
| | 6| |3
| O +---|TH OUT|------
| O | 7|_ |5
SW1| +--O|D VC|----+
| +| | GND | |
| [10µF] +---+---+ [0.1µF]
| | |1 |
GND>-+------------------+-------+--------+
3. The motor drive logic is bad because when the 555 times out its
output will go low, driving U2-2 high. This will toggle the JK
and send power to the motor at the same time. Unfortunately,
power will be sent to the motor before the direction relay has a
chance to toggle, so the motor will be starting to spin up
when the relay opens, cutting off power to the motor and then,
when it closes on the other set of contacts, plugging the motor.
OUCH!
To keep that from happening, what you need to do is cut power to
the motor first, when the reed relay triggers the 555, then, when
the motor stops spinning, toggle the relay, and then reapply
power to the motor, like this:
|-->T1<--|
____ _______ _ _ ____ ________ _ _
U3-3 |________| |________|
_______ _ _ _____________
u3-1 _____________| |________ _ _
|<---T2--->|
__________ __________
U1-3 ____| |_____ _ _ ____| |______ _ _
____ _____ _ _ ____ ______ _ _
U2-2 |__________| |__________|
The trick here is to make sure that T1 doesn't go high until the
motor stops turning and to make sure T2 lasts long enough so that
RL1 changes state and all contact bouncing has ceased before U2-2
goes high and sends power to the motor.
Arguably the easiest way to do that with what you have so far is to
add another 555, like this:
+12V-+---------+---+----+-------+------+
| | | | U1 |8 |
[10K] [10K] +->[1MR] +---+---+ |
| | | 2|_ Vcc _|4 |
+-[0.1µF]-+-+------|--O|T R|O-+ U2
| | | 6| |3 1| \ 2
| O | +---|TH OUT|-----O| >---> TO U3-3
| O | | 7|_ |5 | /
SW1| | +--O|D VC|----+
| | +| | GND | |
| | [1.2µF] +---+---+ [0.1µF]
| | | |1 |
GND>-+-----------|------+-------+--------+
|
|
|
|
+12v>------------|------+-------+------+
| | U4 | |
| [1MR] +---+---+ |
| | |_ Vcc _|4 |
+------|--O|T R|O-+
| | |3 | \
+---|TH 0UT|-----O| >---> TO R2
| |_ | | /
+--O|D VC|----+
+| | GND | |
[1.5µF]+---+---+ [0.1µF]
| | |
GND>--------------------+-------+--------+
Also, to keep any kickback from the motor from hurting Q1, you could
connect two 15V Zener diodes in series opposition across the motor.
The timing for the monostable 555 is:
T = 1.4RC,
so for U1, which controls the changeover relay, you'd want a timeout
longer than the spin-down speed of the motor, say 1-1/2 seconds.
Using a 1 Megohm resistor for timing means the capacitor would have
to be:
T 1.5s
C = ------ = ------------ ~ 1.07µF
1.4R 1.4 * 1E6R
If you use an electrolytic with a tolerance of +/-10% and a resistor
with a 5% tolerance the whole thing could be off by 15% on the low
side, so to keep that from happening you'll need to increase the
capacitance by 10% and the resistance by 5% or make the cap large
enough to swamp out the whole thing. A standard capacitance value
is 1.2µF, which should do it. Checking:
T = 1.4RC = 1.4 * 1E6R * (0.9 * 1.2E-6F) = 1.512s
So that works. if you need a longer timeout increase the value of
either R or the C.
The same thing goes for U4, except that you'll want to make its
timeout longer in order to let the relay get stable before you send
power to the motor. I've set a time constant of about 2 seconds
using 1.5µF.
So that's it, except for an annoying little detail which just hit
me, and that's that the reed switch is going to bounce when it's
released. That'll confuse the circuit by making it think that it
got a valid switch closure, and may be part of the problem you're
having now. In any case, I'll post this now and a solution for the
bounce problem later on today or tomorrow.