[USB]
描述
Sends a message that a previously pressed button (invoked through Mouse.press()) is released. Mouse.release()
defaults to the left button.
WARNING: When you use the Mouse.release()
command, the 86Duino takes over your mouse! Make sure you have control before you use the command. A pushbutton to toggle the mouse control state is effective.
語法
Mouse.release();
Mouse.release(button);
參數
button
: which mouse button to release – char
MOUSE_LEFT
(default)MOUSE_RIGHT
MOUSE_MIDDLE
回傳
nothing
範例
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 right mouse button if(digitalRead(2) == HIGH){ Mouse.press(); } //if the switch attached to pin 3 is closed, release the right mouse button if(digitalRead(3) == HIGH){ Mouse.release(); } }
參考
語法參考主頁面
86Duino 參考的文本是根據 Creative Commons Attribution-ShareAlike 3.0 License,部分文本是從 the Arduino reference 修改的。 參考中的代碼示例已發佈到公共領域。