Advertisement
sombruxo

Interrupciones Arduino

Oct 13th, 2022
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.47 KB | Source Code | 0 0
  1.  
  2. unsigned long t_old, t_now;
  3. unsigned long dif;
  4.  
  5. bool datonuevo;
  6.  
  7. void setup() {
  8.   Serial.begin(115200);
  9.   pinMode(2, INPUT_PULLUP);
  10.   t_old = t_now = 0;
  11.   datonuevo = false;
  12.   attachInterrupt(digitalPinToInterrupt(2), encoder, RISING);
  13. }
  14.  
  15. void loop() {
  16.   if(!datonuevo) return;
  17.  
  18.   Serial.print("dif: ");
  19.   Serial.println(dif);
  20.   datonuevo = false;
  21. }
  22.  
  23. void encoder() {
  24.   t_now = micros();
  25.   dif =  t_now - t_old;
  26.   t_old = t_now;
  27.   datonuevo = true;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement