Mouse.release()

설명

Sends a message that a previously pressed button (invoked through Mouse.press()) is released. Mouse.release() defaults to the left button.

문법

Mouse.release();

Mouse.release(button);

매개변수

  • button: which mouse button to press - char
    • MOUSE_LEFT (default)
    • MOUSE_RIGHT
    • MOUSE_MIDDLE

반환값

  • 없음

예제 코드

#include <Mouse.h> void setup() { //The switch that will initiate the Mouse press pinMode(2, INPUT); //The switch that will terminate the Mouse press pinMode(3, INPUT); //initiate the Mouse library Mouse.begin(); } void loop() { //if the switch attached to pin 2 is closed, press and hold the left mouse button if (digitalRead(2) == HIGH) { Mouse.press(); } //if the switch attached to pin 3 is closed, release the left mouse button if (digitalRead(3) == HIGH) { Mouse.release(); } }

※ 주의 및 경고:

When you use the Mouse.release() 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.

더보기

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.

※ OUR MESSAGES