Encoder icon indicating copy to clipboard operation
Encoder copied to clipboard

using the millis() timer0 alternative

Open alto777 opened this issue 2 years ago • 0 comments

Any sense I made of using the millis() compare A and B mechanism seemed to need an additional ISR, in fact it did not work until I added the following nearly identical function in the section marked "/* Alternative using timer 0 that is used for millis()":

SIGNAL(TIMER0_COMPB_vect) 
{  
  computeEncoder();
}

I write in case that was your intent and it got dropped somewhere in an editing mistake. With both ISRs it seems like I am getting 2000 Hz attention to the pins, but I have not verified this yet until I figure out how. To.

a7

alto777 avatar Mar 19 '22 19:03 alto777