prueba de un encoder manual rotatorio
Fork of QEI_HelloWorld by
MONTAJE PARA CONECTAR ENCODER DE MODULO ARDUINO NO OLVIDAR CONECTAR VCC. A 3.3V DE LO CONTRARIO TRABAJA MAL
Revision 2:6044b6f90004, committed 2017-03-14
- Comitter:
- tony63
- Date:
- Tue Mar 14 22:47:11 2017 +0000
- Parent:
- 1:30696e4d196b
- Commit message:
- prueba de un encoder manual rotatorio
Changed in this revision
diff -r 30696e4d196b -r 6044b6f90004 QEI.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/QEI.lib Tue Mar 14 22:47:11 2017 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/aberk/code/QEI/#5c2ad81551aa
diff -r 30696e4d196b -r 6044b6f90004 QEI_lib.lib --- a/QEI_lib.lib Wed Aug 11 09:15:10 2010 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -http://mbed.org/users/aberk/programs/QEI_lib/latest \ No newline at end of file
diff -r 30696e4d196b -r 6044b6f90004 main.cpp --- a/main.cpp Wed Aug 11 09:15:10 2010 +0000 +++ b/main.cpp Tue Mar 14 22:47:11 2017 +0000 @@ -1,16 +1,17 @@ +#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 (p29, p30, NC, 624); +QEI wheel (PTD7, PTD6, NC, 100); int main() { while(1){ wait(0.1); - pc.printf("Pulses is: %i\n", wheel.getPulses()); + pc.printf("Numero de Pulsos: %i\n", wheel.getPulses()); } }
diff -r 30696e4d196b -r 6044b6f90004 mbed.bld --- a/mbed.bld Wed Aug 11 09:15:10 2010 +0000 +++ b/mbed.bld Tue Mar 14 22:47:11 2017 +0000 @@ -1,1 +1,1 @@ -http://mbed.org/users/mbed_official/code/mbed/builds/9114680c05da +http://mbed.org/users/mbed_official/code/mbed/builds/e1686b8d5b90 \ No newline at end of file