Hide minor edits - Show changes to markup
Reports the relative amount of movement of a mouse on the X-axis since the last time polled. A positive number indicates a downward movement, a negative number indicates upward movement.
Reports the relative amount of movement of a mouse on the X-axis since the last time polled. A positive number indicates movement to the right, a negative number indicates movement to the left.
USBHost : MouseController class
Reports the relative amount of movement of a mouse on the X-axis since the last time polled. A positive number indicates a downward movement, a negative number indicates upward movement.
mouse.getXChange()
none
int
(:source lang=arduino tabwidth=4:)
// Initialize USB Controller USBHost usb;
// Attach mouse controller to USB MouseController mouse(usb);
void mouseMoved() {
Serial.print("Move: ");
Serial.print(mouse.getXChange());
Serial.print(", ");
Serial.println(mouse.getYChange());
}
void setup(){
Serial.begin(9600);
}
void loop(){
usb.Task();
} (:sourceend:)