Paso 6: código de
#include
unsigned int contador = 0;
blink() vacío
{
contador ++;
}
void timerIsr()
{
Timer1.detachInterrupt(); desactivar el timer1
Serial.Print ("la velocidad del motor:");
Serial.Print(Counter,DEC);
Serial.println("Round/s");
Contador = 0;
Timer1.attachInterrupt (timerIsr); habilitar el timer1
}
void setup()
{
Serial.Begin(9600);
Timer1.Initialize(1000000); ajustar un temporizador de 1 seg de longitud
attachInterrupt (0, destello, levantamiento); INT0
Timer1.attachInterrupt (timerIsr); Coloque aquí la rutina de servicio
}
void loop()
{
; no hacer nada
}