#include "DigiKeyboard.h" //library declaration

void setup() {
  pinMode(1, OUTPUT); //LED on Model USB type A
}

void loop() {
 
  DigiKeyboard.update(); //Get the Keboard input ready
  DigiKeyboard.sendKeyStroke(0); //Send a null key stroke
  DigiKeyboard.delay(3000); //Delay between keystrokes
  DigiKeyboard.sendKeyStroke(KEY_ENTER); //Only for Windows 10 as you have to click a button to get to enter a password
  DigiKeyboard.delay(2000); //Delay between keystrokes
  DigiKeyboard.println("your password"); //Modify it to maych your needs
  DigiKeyboard.delay(2000); //Delay between keystrokes
  digitalWrite(1, HIGH); //Turn on the LED when program finishes
  DigiKeyboard.delay(90000); //Delay between keystrokes
 
}
