This page is also available in 3 other languages

Keyboard.end()

설명

연결된 컴퓨터에 키보드 흉내를 멈춘다. 키보드 흉내를 시작하려면, Keyboard.begin().

문법

Keyboard.end()

매개변수

없음

반환

없음

예제 코드

#include <Keyboard.h>

void setup() {
  // 키보드 통신 시작
  Keyboard.begin();
  //send a keystroke
  Keyboard.print("Hello!");
  // 키보드 통신 끝
  Keyboard.end();
}

void loop() {
  //do nothing
}