iKey

Passwords can be hard to remember: the iKey can help.

This device, based on the Arduino Leonardo, can store your passwords and help you to enter them whenever it is attached to a computer.

Media

ikey.jpg

Hardware

  • Arduino Leonardo Micro or DFRobot Dreamer Nano
  • USB Cable
  • PVC board for beauty

Construction

  1. Cut the PVC board to look like a key
  2. Connect the Arduino board and USB cable
  3. Put the Arduino and USB cable on the PVC board
  4. Download the code
  5. Try it

Sample Code

ikey.ino
//iKey V1.0 
//  you need a Arduino leonardo Micro or DFRobot Dreamer Nano
//
//  created 2012
//  by Nille
 
void setup() 
{
  Keyboard.begin();
  delay(2000);
  Keyboard.println("--YOUR PASSWORD--");
}
 
void loop() 
{
  //function loop is empty''
}