We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae7b57f commit 9cb63e2Copy full SHA for 9cb63e2
tests/validation/touch/touch.ino
@@ -141,7 +141,6 @@ void test_touch_read(void) {
141
touch_value_t touch_unpressed[sizeof(TOUCH_GPIOS)];
142
for (int i = 0; i < sizeof(TOUCH_GPIOS); i++) {
143
touch_unpressed[i] = touchRead(TOUCH_GPIOS[i]);
144
- Serial.printf("\nUNPRESSED for CH%d = %d", i, touch_unpressed[i]);
145
}
146
147
// TEST PRESS STATE
@@ -153,7 +152,6 @@ void test_touch_read(void) {
153
152
touch_value_t touch_pressed[sizeof(TOUCH_GPIOS)];
154
for (int k = 0; k < sizeof(TOUCH_GPIOS); k++) {
155
touch_pressed[k] = touchRead(TOUCH_GPIOS[k]);
156
- Serial.printf("\nPRESSED for CH%d = %d", k, touch_pressed[k]);
157
158
159
// COMPARE PRESSED > UNPRESSED
0 commit comments