Hi,thats ok, so two 4060? you're referring to the built-in oscillator 32k or external crytsal?
Not two 4060, but one 4060 with external gate logic, also there is no built-in 32kHz
Hi,thats ok, so two 4060? you're referring to the built-in oscillator 32k or external crytsal?
Ahh, ok if I need to order parts not a big deal. If I have to order parts, maybe have it be selectable 10 mins or 15 mins if possibleHi,
Not two 4060, but one 4060 with external gate logic, also there is no built-in 32kHz
bool out_state;
void setup() {
pinMode(0, INPUT); // PB0 is an input for switch to select pulse polarity
pinmode(0, INPUT_PULLUP);
pinMode(1, OUTPUT); // PB1 is an output
}
void loop() {
out_state=digitalRead(0); // read state of the input (LOW/HIGH)
digitalWrite(1, out_state); // write it to an output
delay(1000); // wait 1 sec (1000ms)
digitalWrite(1, !out_state); // toggle output
delay(900000); // wait 900 second (900000ms)
}

yes the pulse needs to be every 15 minsDoes it have to be one pulse every 15 minutes, or is every 16 minutes acceptable?
An alternate approach is a programmable lamp timer plus a 5 V wall wart. Every 15 minutes, the wall wart is powered up, makes the output pulse, and then just sits there. It is turned off after 1 minute, then turned on again in 14 minutes. Repeat. The output pulse circuit is 2 transistors, or 2 logic gates, etc.
ak
it could be worst..lol29 posts and you're tying yourself in knots trying to come up with a plan.
I did a couple post upWhy don't You just tell everyone what the purpose of this project is ?
You would very likely get some excellent recommendations immediately, instead of all this guesswork.
.
.
.
Stubbornness does come with certain costs.it could be worst..lol
lol trueStubbornness does come with certain costs.
The 4060 has a built-in oscillator, and it's not very accurate. Only as good as any CMOS gate oscillator, which isn't too good.Hi,
The accuracy is not dependent upon the 4060, but the driving oscillator.
E
ahh ok is that in general or when running it for long periods of time? Would it be better to have it only start the 15-min timer when triggered?The 4060 has a built-in oscillator, and it's not very accurate. Only as good as any CMOS gate oscillator, which isn't too good.
It would be repeatable.ahh ok is that in general or when running it for long periods of time? Would it be better to have it only start the 15-min timer when triggered?
What would you guess the accuracy would be by doing it that way?It would be repeatable.
You can make a monostable out of a 4060 by feeding the output back to the oscillator with a diode, but the accuracy will be the same.