Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9cb63e2

Browse files
committedOct 11, 2024·
fix(ci): remove debug prints from touch test
1 parent ae7b57f commit 9cb63e2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎tests/validation/touch/touch.ino

-2
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ void test_touch_read(void) {
141141
touch_value_t touch_unpressed[sizeof(TOUCH_GPIOS)];
142142
for (int i = 0; i < sizeof(TOUCH_GPIOS); i++) {
143143
touch_unpressed[i] = touchRead(TOUCH_GPIOS[i]);
144-
Serial.printf("\nUNPRESSED for CH%d = %d", i, touch_unpressed[i]);
145144
}
146145

147146
// TEST PRESS STATE
@@ -153,7 +152,6 @@ void test_touch_read(void) {
153152
touch_value_t touch_pressed[sizeof(TOUCH_GPIOS)];
154153
for (int k = 0; k < sizeof(TOUCH_GPIOS); k++) {
155154
touch_pressed[k] = touchRead(TOUCH_GPIOS[k]);
156-
Serial.printf("\nPRESSED for CH%d = %d", k, touch_pressed[k]);
157155
}
158156

159157
// COMPARE PRESSED > UNPRESSED

0 commit comments

Comments
 (0)
Please sign in to comment.