prueba de un encoder manual rotatorio

Dependencies:   QEI mbed

Fork of QEI_HelloWorld by Aaron Berk

MONTAJE PARA CONECTAR ENCODER DE MODULO ARDUINO NO OLVIDAR CONECTAR VCC. A 3.3V DE LO CONTRARIO TRABAJA MAL /media/uploads/tony63/encoder.png

main.cpp

Committer:
tony63
Date:
2017-03-14
Revision:
2:6044b6f90004
Parent:
1:30696e4d196b

File content as of revision 2:6044b6f90004:

#include "mbed.h"
#include "QEI.h"

Serial pc(USBTX, USBRX);
//Use X4 encoding.
//QEI wheel(p29, p30, NC, 624, QEI::X4_ENCODING);
//Use X2 encoding by default.
QEI wheel (PTD7, PTD6, NC, 100);

int main() {

    while(1){
        wait(0.1);
        pc.printf("Numero de Pulsos: %i\n", wheel.getPulses());
    }

}