Arduino + PS/2 Keyboard Controlled LED Flasher

4.0K180

Intro: Arduino + PS/2 Keyboard Controlled LED Flasher

Hi all, It's another Hack with Arduino to be used with PS/2 Keyboard to Control an LED Flasher.

STEP 1: Parts

  • Arduino
  • LED
  • 470 ohm Resistor
  • PS/2 Keyboard
  • PS/2 Keyboard connector

STEP 2: Connection

Connect the Arduino to Keyboard.There are 4 wires coming from the keyboard and their connections to arduino Digital pins are as follows.

  • 5V :- Arduino 5V out
  • Ground :- Arduino GND
  • Clock :- Arduino Pin 3
  • Data :- Arduino Pin 8

Connect LED to Arduino Pin 9.

STEP 3: Code

First Include this library to Arduino (Sketch > Add file) < PS2Keyboard.h>

<p>#include < PS2Keyboard.h><br>const int DataPin = 8;
const int IRQpin =  3;
char c;
PS2Keyboard keyboard;
int led = 9;           // the pin that the LED is attached to
void setup() {  
  delay(1000);
  keyboard.begin(DataPin, IRQpin);
  pinMode(led, OUTPUT);
}
void loop() {
  {
  if (keyboard.available()) {    
    c = keyboard.read()*25;   
    analogWrite(led, c);
  }         
}}</p>

STEP 4: Finished - Working Video


Now power the arduino and Pess any number on keyboard.

Ex:- no. 7

See how the LED Flashing changed.