maxtat3 / pulseCounter

0 stars 0 forks source link

Add delay for mechanical connectors #9

Open maxtat3 opened 6 years ago

maxtat3 commented 6 years ago
bool isPause = false;

ISR(INT0){
   if(! isPause){
     uart->tx 
     isPause = true;
     _delay_ms(50);
     isPause = false;
   }
}