Example

<< Click to Display Table of Contents >>

Navigation:  USB Host library > Mouse Controller > getYChange() >

Example

#include <MouseController.h>
 
// 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();
}