1 sec alternating polarity circuit

Hello all.
Please see the attached photo of a circuit I’d like to copy. I don’t have the actual board a friend of mine sent me the photo.

It’s a circuit to produce 1 second alternating pulse using the following IC’s-
CD4017B x2, CD4060B x1 and a CD4024B.

Can anyone point me to a circuit diagram for this, maybe there is something online, if there is I’m unable to find it.

I think this circuit is used so it can run on 3v so low power. It’s for pulsing a low voltage Brillie slave clock and needs to be a small footprint so it can go in to the back of the clock and run on batteries.

I look forward to hearing from you.

Regards
Mark
 

Attachments

  • IMG_2209.jpeg
    1.7 MB · Views: 122
Solution
I’ve made my friend a small batch of pulsar boards now. I would like to say a big thank you to all that contributed to this, I can confirm that the boards are working perfectly.

My next challenge is to make the circuit but using less components while still
using a 3v supply. I would love to hear your feedback on this


I know the boards are a bit messy but I don’t do this every day

Again thanks
My design libraries have parts created by seven different people over a couple of decades, so my concept schematics often have things like a 20 amp FET where a 1 A part will suffice. 5% still is the most common tolerance for small through-hole resistors, but there is nothing critical about the base-current-limiting resistor values.

ak
 
I’ve made my friend a small batch of pulsar boards now. I would like to say a big thank you to all that contributed to this, I can confirm that the boards are working perfectly.

My next challenge is to make the circuit but using less components while still
using a 3v supply. I would love to hear your feedback on this


I know the boards are a bit messy but I don’t do this every day

Again thanks
 
Solution
To generate a 1 PPS signal youc an use some code on to do the design with
ATTINY85 :

 
Here is what I’d previously come up with.
 
Bit of overkill, a small PIC, with a 32KHz crystal on TMR1, permanently in sleep and woken every second by TMR1 to run an RTC will use almost no current at all, and use almost no components.
You could probably extend the wake interval beyond 1 second for this application. Timer limitations might dictate a power of two divide from the crystal, so you might only be able to extend to 2 seconds if something is to happen every 30 seconds.

Also, just in case of misunderstanding on the part of the OP, I am sure that you mean a 32.768 kHz crystal, which is often referred to as 32 kHz.
 

Obviously, they are commonly known as 32KHz watch crystals.

There's no problem using a 1 second wake-up timer, you need it to run an RTC - you simply increment an extra counter every second, toggle the I/O pins as required after a count of 30, and reset the counter.

The PIC16F18313 is a small cheap 8 pin device, which would easily do the job.

In fact I've recently written a similar bit of code, but using an I/O interrupt to wake a 16F18313 (rather than a 32KHz Timer), and toggle an I/O every ten (or whatever you want to set it to) pulses on the input.
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…