Leonardoでのキーボード入力
Arduino Leonardoをキーボードのようにして使う。
ブロック図
Keyboardのコマンドなどはリファレンスを参照。文字は’n’でnを打てる。
head部分
#include <Keyboard.h>
先にやっておく
Keyboard.begin();
ずっと
Keyboard.press(177);
Keyboard.press(176);
Keyboard.releaseAll();
#include <Keyboard.h>
Keyboard.begin();
Keyboard.press(177);
Keyboard.press(176);
Keyboard.releaseAll();
Post a Comment