Advertisement
Guest User

Untitled

a guest
Jun 1st, 2014
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. ISR(TIMER1_OVF_vect){
  2. tot_overflow++;
  3. if (tot_overflow >= 61){
  4. PINB |=_BV(PB7);
  5. Serial.println(millis());
  6. tot_overflow = 0;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement