前提・実現したいこと
Arduinoのコードのエラーを解決したい
こちらのサイトの「2.HIDとして認識させてみる」という部分を参考にしました
発生している問題・エラーメッセージ
#warning "Using legacy HID core (non pluggable)" ^~~~~~~ Sample_Keyboard:11:3: error: 「Keyboard」が存在しません。スケッチに「#include <Keyboard.h>」という行を含めていますか? Keyboard.begin(); ^~~~~~~~ Sample_Keyboard:22:5: error: 「Keyboard」が存在しません。スケッチに「#include <Keyboard.h>」という行を含めていますか? Keyboard.print("You pressed the button "); ^~~~~~~~ exit status 1 「Keyboard」が存在しません。スケッチに「#include <Keyboard.h>」という行を含めていますか?
該当のソースコード
Arduino
1#include <Keyboard.h> 2 3const int buttonPin = 4; // input pin for pushbutton 4int previousButtonState = HIGH; // for checking the state of a pushButton 5int counter = 0; // button push counter 6 7void setup() { 8 // make the pushButton pin an input: 9 pinMode(buttonPin, INPUT); 10 // initialize control over the keyboard: 11 Keyboard.begin(); 12} 13 14void loop() { 15 // read the pushbutton: 16 int buttonState = digitalRead(buttonPin); 17 // if the button state has changed, 18 if ((buttonState != previousButtonState) && (buttonState == HIGH)) { 19 // increment the button counter 20 counter++; 21 // type out a message 22 Keyboard.print("You pressed the button "); 23 Keyboard.print(counter); 24 Keyboard.println(" times."); 25 } 26 // save the current button state for comparison next time: 27 previousButtonState = buttonState; 28}
試したこと
if ((buttonState != previousButtonState) && (buttonState == HIGH)) {
& &を&&に書き換えました
includeの部分を"Keyboard.h"から<Keyboard.h>に書き換えました
ライブラリを管理からKeyboardのバージョン1.0.2を再インストールしました
#疑問
Arduino UNOの互換品を使っていますが、別のArduinoでないとできない処理でしょうか?
あと、#includeの時の" "の< >の違いも可能なら教えていただきたいです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/21 06:48