Mouse.end()

설명

컴퓨터에 연결된 마우스 에뮬레이트 멈춤. 제어를 시작하려면, Mouse.begin() 쓰세요.

문법

Mouse.end()

매개변수

  • 없음

반환값

  • 없음

예제 코드

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

더보기

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Disclosure: Some links in this section are Amazon affiliate links. If you make a purchase through these links, we may earn a commission at no extra cost to you.
Additionally, some links direct to products from our own brand, DIYables.

※ OUR MESSAGES