aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Eveland <zeveland@blacklabel-development.com>2011-09-16 16:59:14 -0400
committerZach Eveland <zeveland@blacklabel-development.com>2011-09-16 16:59:14 -0400
commitd004d6a9b490a51f776a89fcd284985f72f72bc6 (patch)
treea036bd8f9a98d9f72b13138c47f93439c1f233fa
parent3287477db1c2903e173034af9039c4273dccf58d (diff)
added Mouse.isPressed() method
-rw-r--r--cores/arduino/HID.cpp7
-rw-r--r--cores/arduino/USBAPI.h2
2 files changed, 9 insertions, 0 deletions
diff --git a/cores/arduino/HID.cpp b/cores/arduino/HID.cpp
index 16d0448..8ed1566 100644
--- a/cores/arduino/HID.cpp
+++ b/cores/arduino/HID.cpp
@@ -243,6 +243,13 @@ void Mouse_::release(uint8_t b)
buttons(_buttons & ~b);
}
+bool Mouse_::isPressed(uint8_t b)
+{
+ if (b & _buttons > 0)
+ return true;
+ return false;
+}
+
//================================================================================
//================================================================================
// Keyboard
diff --git a/cores/arduino/USBAPI.h b/cores/arduino/USBAPI.h
index 759079b..26a2032 100644
--- a/cores/arduino/USBAPI.h
+++ b/cores/arduino/USBAPI.h
@@ -46,6 +46,7 @@ extern Serial_ Serial;
#define MOUSE_LEFT 1
#define MOUSE_RIGHT 2
#define MOUSE_MIDDLE 4
+#define MOUSE_ALL (MOUSE_LEFT | MOUSE_RIGHT | MOUSE_MIDDLE)
class Mouse_
{
@@ -58,6 +59,7 @@ public:
void move(signed char x, signed char y, signed char wheel = 0);
void press(uint8_t b = MOUSE_LEFT); // press LEFT by default
void release(uint8_t b = MOUSE_LEFT); // release LEFT by default
+ bool isPressed(uint8_t b = MOUSE_ALL); // check all buttons by default
};
extern Mouse_ Mouse;