You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While you allow to disable serial debug, the library set by default:
#define SERIAL_DEBUG
inside the library code. Disabling serial debug require to modify the library source itself, it would be nice if there would be an external flag to disable the automatic enabling...
Even when serial debug is disabled, the library returns twice a 0, because it uses:
Serial.println(mirror_x);
Serial.println(mirror_y);
without checking for SERIAL_DEBUG.
The text was updated successfully, but these errors were encountered:
While you allow to disable serial debug, the library set by default:
#define SERIAL_DEBUG
inside the library code. Disabling serial debug require to modify the library source itself, it would be nice if there would be an external flag to disable the automatic enabling...
Even when serial debug is disabled, the library returns twice a 0, because it uses:
Serial.println(mirror_x);
Serial.println(mirror_y);
without checking for SERIAL_DEBUG.
The text was updated successfully, but these errors were encountered: