PixArt / Mbed OS 9125_referenceCode

Welcome to the code repository for PixArt's PAT9125EL sensor and evaluation board.

For general information about this product, please visit this product's components page here:
https://os.mbed.com/components/PAT9125EL-Evaluation-Board/

For guides and tips on how to setup and evaluate the PAT9125EL sensor with the Nordic nRF52-DK microcontroller using this reference code, please visit this guide:
https://os.mbed.com/teams/PixArt/code/9125_referenceCode/wiki/Guide-for-nRF52-DK-Platform

For guides and tips on how to setup and evaluate the PAT9125EL sensor with any microcontroller using this reference code, please visit this guide:
https://os.mbed.com/teams/PixArt/code/9125_referenceCode/wiki/Guide-for-Any-Platform

Revision:
3:979019410df2
Parent:
1:4ea157704c58
--- a/commHeaders/I2CcommFunctions.h	Wed Feb 28 21:25:38 2018 +0000
+++ b/commHeaders/I2CcommFunctions.h	Wed Jul 18 18:33:38 2018 +0000
@@ -103,7 +103,7 @@
         totalY += deltaY;
         
         pc.printf("deltaX: %d\t\t\tdeltaY: %d\n\r", deltaX, deltaY);    //Prints each individual count of deltaX and deltaY.
-        pc.printf("X-axis Counts: %d\t\t\tY-axis Counts: %d\n\r", totalX, totalY);  //Prints the total movement made during runtime.
+        pc.printf("X-axis Counts: %d\t\tY-axis Counts: %d\n\r", totalX, totalY);  //Prints the total movement made during runtime.
     }
     
     deltaX = 0;                             //Resets deltaX and Y values to zero, otherwise previous data is stored until overwritten.