Mouse.end()

[USB]

説明

Stops emulating the mouse connected to a computer. To start control, use Mouse.begin().

Syntax

Mouse.end()

Parameters

none

Returns

nothing

Example

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

See also


Language Reference Home

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

コメントする

上部へスクロール