I want to find...

検索

Shares

Table of Content

Mouse.click()

[USB]

説明

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.

WARNING: When you use the Mouse.click() 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.click();
Mouse.click(button);

媒介変数

button: which mouse button to press – char

  • MOUSE_LEFT (default)
  • MOUSE_RIGHT
  • MOUSE_MIDDLE

戻り値

nothing

void setup(){
  pinMode(2,INPUT);
  //initiate the Mouse library
  Mouse.begin();
}
 
void loop(){
  //if the button is pressed, send a Right mouse click
  if(digitalRead(2) == HIGH){
    Mouse.click();
  } 
}

See also


Language Reference Home

86Duino のリファレンスのテキストは Arduino レファレンス を編集したもので、 Creative Commons Attribution-ShareAlike 3.0 License下でライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。

上部へスクロール