Mouse.begin()

[USB]

説明

Begins emulating the mouse connected to a computer. begin() must be called before controlling the computer. To end control, use Mouse.end().

構文

Mouse.begin()

媒介変数

none

戻り値

nothing

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

参照


Language Reference Home

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

上部へスクロール