Skip to content

Commit d11a972

Browse files
committed
fixed serial print alignment in USBHost/MouseController example
1 parent f3dc649 commit d11a972

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/USBHost/examples/MouseController/MouseController.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ void mousePressed() {
5555
}
5656
if (mouse.getButton(RIGHT_BUTTON)) {
5757
SERIAL_PORT_MONITOR.print("R");
58-
SERIAL_PORT_MONITOR.println();
5958
rightButton = true;
6059
}
60+
SERIAL_PORT_MONITOR.println();
6161
}
6262

6363
// This function intercepts mouse button release

0 commit comments

Comments
 (0)