Я пытаюсь заставить мой Adafruit Trinket работать как клавиатура. Я использую стандартный пример кода для него, но он продолжает давать мне эту ошибку компиляции.
exit status 1
'Keyboard' not found. Does your sketch include the line '#include <Keyboard.h>'?
эта ошибка продолжает появляться, хотя она есть в моем коде. Я перепробовал много разных версий этого и перепутал много вещей, и всегда возникала эта ошибка.
Это мой код.
#include <Keyboard.h>
const int buttonPin = 4; // input pin for pushbutton
int previousButtonState = HIGH; // for checking the state of a pushButton
int counter = 0; // button push counter
void setup() {
// make the pushButton pin an input:
pinMode(buttonPin, INPUT);
// initialize control over the keyboard:
Keyboard.begin();
}
void loop() {
// read the pushbutton:
int buttonState = digitalRead(buttonPin);
// if the button state has changed,
if ((buttonState != previousButtonState)
// and it's currently pressed:
&& (buttonState == HIGH)) {
// increment the button counter
counter++;
// type out a message
Keyboard.print("You pressed the button ");
Keyboard.print(counter);
Keyboard.println(" times.");
}
// save the current button state for comparison next time:
previousButtonState = buttonState;
}