Mouse.end()
Description
Stops emulating the mouse connected to a computer. To start control, use Mouse.begin().
Syntax
Mouse.end()
Parameter Values
- None
Return Values
- 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
//then end the Mouse emulation
if (digitalRead(2) == HIGH) {
Mouse.click();
Mouse.end();
}
}
See Also
- Language : Arduino - Mouse
- Language : Mouse.begin()
- Language : Mouse.click()
- Language : Mouse.isPressed()
- Language : Mouse.move()
- Language : Mouse.press()
- Language : Mouse.release()
- Language : Mouse.click()
- Language : Mouse.move()
- Language : Mouse.press()
- Language : Mouse.release()
- Language : Mouse.isPressed()
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Disclosure: Some links in this section are Amazon affiliate links. If you make a purchase through these links, we may earn a commission at no extra cost to you.
Additionally, some links direct to products from our own brand, DIYables.
Additionally, some links direct to products from our own brand, DIYables.