Teensy Usb Keyboard does not work in BIOS

Status
Not open for further replies.

cmussoni

Member
Hardware: Teensy 3.2
I have this minimal sketch based on the example found in Arduino->Example->Teensy, where Teensyduino is installed.
I have not included any type of library in the sketch.
The code works without problems in Windows10 but not in BIOS where I really need it.
I posted the "KEY_DELETE" example but any other keys does not work in Bios.
Can someone help me with this problem ?
Thanks
Claudio


Code:
void setup() {
  //nothing
}

void loop() {
  for (int i = 0; i <= 5; i++) {
    Keyboard.press(KEY_DELETE);
    delay (1000);
    Keyboard.release(KEY_DELETE);
    delay (200);
  }
 while (true){};
}
 
Status
Not open for further replies.
Back
Top