Sends a momentary click to the computer at the location of the cursor. This is the same as pressing and immediately releasing the mouse button.
Mouse.click() defaults to the left mouse button.
Syntax
Mouse.click() Mouse.click(button)
Parameters
button: which mouse button to press - char
MOUSE_LEFT (default)
MOUSE_RIGHT
MOUSE_MIDDLE
Returns
Nothing
Example Code
#include <Mouse.h>
void setup() {
pinMode(2, INPUT);
//initiate the Mouse library
Mouse.begin();
}
void loop() {
//if the button is pressed, send a left mouse click
if (digitalRead(2) == HIGH) {
Mouse.click();
}
}
Notes and Warnings
When you use the Mouse.click() command, the Arduino takes over your mouse! Make sure you have control before you use the command. A pushbutton to toggle the mouse control state is effective.
We care about the privacy and personal data of our users.
To continue, please give us your consent:
Please confirm that you have read the privacy policy
Thank you for subscribing!
Curious to learn more?
Are you also a teacher, student, or professional that loves using Arduino in your day-to-day activities?
Then keep up-to-date with either our STEM or Professional monthly newsletters.
Arduino weekly newsletter (already subscribed)
Educators can benefit from the ever growing tech that shapes our environment through fun cool projects.
Why not awe your boss with highly innovative ways to help keep your enterprise connected at no extra cost?
Arduino Survey
We'd like to get to know you little better.
Please help us improve by answering this super short optional survey.