diff --git a/pro_micro/pro_micro.ino b/pro_micro/pro_micro.ino index 3e1b207..1c2fda9 100644 --- a/pro_micro/pro_micro.ino +++ b/pro_micro/pro_micro.ino @@ -23,7 +23,7 @@ Auch hilfreich: ls /dev/input/by-id/ ls /dev/ttyA* lsusb - + screen /dev/ttyACM0 9600 # Serial Monitor im Terminal */ #include "Keyboard.h" @@ -50,12 +50,13 @@ void loop() { // Here starts the output action //Keyboard.press(KEY_LEFT_GUI); // Command key in Mac, use KEY_LEFT_CTRL for Pc Keyboard.press('v'); + //Keyboard.press(KEY_LEFT_SHIFT); delay(100); Keyboard.releaseAll(); // This is important after every Keyboard.press it will continue to be pressed - digitalWrite(RXLED, LOW); // set the LED on - delay(300); - digitalWrite(RXLED, HIGH); // set the LED off + //digitalWrite(RXLED, LOW); // set the LED on + //delay(300); + //digitalWrite(RXLED, HIGH); // set the LED off } prevButtonState = buttonState; } \ No newline at end of file