From 12d4f7bdf29645b7a1c294a4f9af50cd481cffb2 Mon Sep 17 00:00:00 2001 From: Jorj Bauer Date: Mon, 11 Jan 2021 08:19:36 -0500 Subject: [PATCH] remove debugging printf --- physicalmouse.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/physicalmouse.h b/physicalmouse.h index 9189d11..4a1d489 100644 --- a/physicalmouse.h +++ b/physicalmouse.h @@ -2,7 +2,6 @@ #define __PHYSICALMOUSE_H #include -#include enum { XCLAMP = 0, @@ -16,7 +15,7 @@ class PhysicalMouse { virtual void maintainMouse() = 0; - virtual void setClamp(uint8_t direction, uint16_t low, uint16_t high) { lowClamp[direction] = low; highClamp[direction] = high; printf("clamp %d %d-%d\n", direction, low, high); } + virtual void setClamp(uint8_t direction, uint16_t low, uint16_t high) { lowClamp[direction] = low; highClamp[direction] = high; } virtual void setPosition(uint16_t x, uint16_t y) = 0; virtual void getPosition(uint16_t *x, uint16_t *y) = 0; virtual bool getButton() = 0;