Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- unsigned long t_old, t_now;
- unsigned long dif;
- bool datonuevo;
- void setup() {
- Serial.begin(115200);
- pinMode(2, INPUT_PULLUP);
- t_old = t_now = 0;
- datonuevo = false;
- attachInterrupt(digitalPinToInterrupt(2), encoder, RISING);
- }
- void loop() {
- if(!datonuevo) return;
- Serial.print("dif: ");
- Serial.println(dif);
- datonuevo = false;
- }
- void encoder() {
- t_now = micros();
- dif = t_now - t_old;
- t_old = t_now;
- datonuevo = true;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement