From 2e721744800dc8a8a08e9ce947eadd17f9bb6f30 Mon Sep 17 00:00:00 2001 From: NicoHood Date: Sat, 10 Oct 2015 18:59:17 +0200 Subject: [PATCH] Enabled Mouse API --- examples/ImprovedMouse/ImprovedMouse.ino | 4 ++++ src/HID-Project.h | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/examples/ImprovedMouse/ImprovedMouse.ino b/examples/ImprovedMouse/ImprovedMouse.ino index 5ccdb96..45fcb21 100644 --- a/examples/ImprovedMouse/ImprovedMouse.ino +++ b/examples/ImprovedMouse/ImprovedMouse.ino @@ -5,6 +5,10 @@ Mouse example Press a button to click or move the mouse. + You may also use BootMouse to enable a bios compatible mouse. + However this is very unusual and not recommended. + Bios mice dont support wheels which can cause problems after a reboot. + See HID Project documentation for more Information. https://github.com/NicoHood/HID/wiki/Mouse-API */ diff --git a/src/HID-Project.h b/src/HID-Project.h index 3a0a51c..e619901 100644 --- a/src/HID-Project.h +++ b/src/HID-Project.h @@ -39,7 +39,8 @@ THE SOFTWARE. // Include all HID libraries (.a linkage required to work) properly //#include "AbsoluteMouse.h" -//#include "ImprovedMouse.h" +#include "SingleReport/BootMouse.h" +#include "MultiReport/ImprovedMouse.h" //#include "Consumer.h" //#include "Gamepad.h" //#include "System.h"