Keyboard not working on "Serial + Keyboard + Mouse + Joystick" profile

Status
Not open for further replies.

magnomp

Member
I need to build a Teensy 3.0 device which has serial and keyboard capabilities, so I selected serial + keyboard + mouse + joystick from the options menu
The serial part did work, but the keyboard didn't even show up on Device Manager (Windows 8), so I create a little demo just to test the keyboard

This simple code compile and upload fine, but the keyboard don't work (it doesn appear on windows device manager and doesn't generate any input on the computer)
Code:
void setup() {}
void loop() {
  Keyboard.println("A");
  delay(2000);
}

However, if I select Keyboard + Mouse + Joystick, the above code does work!
 
Status
Not open for further replies.
Back
Top