Optical keyboard? (includes pictures)

function previous() {
go(-1);
}
function next() {
go(1);
}
var filename_base = “./images/misc/optical_keyboard/optisk_keyboard-“;
var filename_ext = “.jpg”;
var start_counter = 1;
var max_counter = 5;
var counter = 1;

function go(step) {
// declarations
var prefix_number = “”;
var filename = “”;

// modify step
counter += step;
if (counter max_counter) {
counter = start_counter;
}

// calculate prefix
if (counter < 10) {
prefix_number = "0" + counter;
} else {
prefix_number = "" + counter;
}

// compose filename
filename = filename_base + prefix_number + filename_ext;

// get image division
var d = document.getElementById("slide_image");
d.innerHTML = "“;
}
function doStart() {
go(0);
}
window.onload = doStart;

How cool is this? At a client site today I saw an “optical” keyboard. The keyboard is projected from the black Bluetooth device onto the desk and works like any other keyboard once connected and configured. It works by tracking where your fingers meet the desk by using a laser grid. Nice – although very geeky!! 🙂

Previous | Next

(Use the above links to go through the pictures)

Previous | Next

(Use the above links to go through the pictures)