我想找...

搜尋

分享

目錄

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()

參數

回傳

nothing

範例

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

參考


語法參考主頁面

The text of the 86Duino reference is a modification of the Arduino reference and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.

返回頂端