[USB]
説明
Stops emulating the mouse connected to a computer. To start control, use Mouse.begin().
構文
Mouse.end()
媒介変数
none
戻り値
nothing
例
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();
}
}参照
Language Reference Home
86Duinoリファレンスのテキストは、Arduinoリファレンスを改変したもので、Creative Commons Attribution-ShareAlike 3.0ライセンスに基づいてライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。