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.
Mouse.click()
Mouse.click(button)
button
: which mouse button to press (MOUSE_LEFT, MOUSE_RIGHT or MOUSE_MIDDLE, default is MOUSE_LEFT).None.
#include <Mouse.h>
void setup() {
pinMode(2, INPUT);
// Initialize the Mouse library
Mouse.begin();
}
void loop() {
// If the button is pressed, send a left mouse click
if (digitalRead(2) == HIGH) {
Mouse.click();
}
}
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.