I am trying to find a simple timer0 intrerruptinterrupt example, but none of those work, neither. Neither this code which i tryedI tried to run:
boolean toggle0 =0;
void setup() {
pinMode(8, OUTPUT);
cli();
//set Set timer1 interrupt at 1Hz1 Hz
TCCR1A = 0; // setSet entire TCCR1A register to 0
TCCR1B = 0; // sameSame for TCCR1B
TCNT1 = 0; //initialize Initialize counter value to 0
// setSet compare match register for 1hz1 Hz increments
OCR1A = 15624;// = (16*10^6) / (1*1024) - 1 (must be <65536)
// turnTurn on CTC mode
TCCR1B |= (1 << WGM12);
// Set CS12 and CS10 bits for 1024 prescaler
TCCR1B |= (1 << CS12) | (1 << CS10);
// enableEnable timer compare interrupt
TIMSK1 |= (1 << OCIE1A);
sei();
}
ISR(TIMER0_COMPA_vect){ //change Change the 0 to 1 for timer1 and 2 for timer2
if (toggle0){
digitalWrite(8,HIGH);
toggle0 = 0;
}
else{
digitalWrite(8,LOW);
toggle0 = 1;
}
}
void loop() {
}
whatWhat am iI doing wrong?