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); } String sciezkazapisu = "%USERPROFILE%\hotdog.jpg"; /* Init function */ void setup() { // initialize the LED pin as an output: pinMode(RXLED, OUTPUT); // Set RX LED as an output // initialize the pushbutton pin as an input: pinMode(buttonPin, INPUT); } void loop() { // read the state of the pushbutton value: buttonState = digitalRead(buttonPin); // check if the pushbutton is pressed. // if it is, the buttonState is HIGH: if (buttonState == HIGH) { // turn LED on: digitalWrite(RXLED, HIGH); Keyboard.begin(); delay(500); delay(3000); Keyboard.press(KEY_LEFT_GUI); Keyboard.press('r'); Keyboard.releaseAll(); delay(100); Keyboard.print("iexplore http://s3.amazonaws.com/rapgenius/hotdog.jpg"); Keyboard.press(KEY_RETURN); //enter delay(100); Keyboard.press(KEY_LEFT_CTRL); //zapisywanie Keyboard.press('s'); Keyboard.releaseAll(); Keyboard.end();riexplore http://s3.amazonaws.com/rapgenius/hotdog.jpg } else { // turn LED off: digitalWrite(RXLED, LOW); } }