Code Monkey home page Code Monkey logo

evdev's Introduction

nodeevdev

Basic libevdev binding for node.js

Example

#!/usr/bin/env node

var Evdev = require('nodeevdev');

var dev = Evdev.create();
dev.open( '/dev/input/event1', function(obj, err) {
	if( err ) {
		console.log("Evdev: Failed to open device: "+err);
		return false;
	}
	dev['data'] = function(data) {
		console.log("Evdev event: "+JSON.stringify(data, null, 2));
	};
	dev['closed'] = function() {
		console.log("Evdev device closed.");
	};
});

// Hack to prevent Node.js from exiting, sorry.
var http = require('http');
var httpServer = http.createServer(function(){});
httpServer.listen(8084);
console.log("Listening for keyboard input...");

Methods

Factory

evdev::create()

Returns an initialised evdev object.

  • Returns: An initialised evdev object.

evdev object

evdevObject::open( path, callback( evdevObject, error ) )

Open an evdev device, associate it to this object, and fire the provided callback upon completion.

The parameters passed to the provided callback function are evdevObject which is a reference to the evdev object, and error which will be an error string in the case of an error, or undefined on success.

  • Returns: A reference to itself.

evdevObject::data( evdevEvent )

A virtual method of the evdevObject. Reimplement it to handle evdevEvents. It can be ignored, but if you ignore it, you might as well not use this module at all.

evdevObject::closed( evdevObject )

A virtual method of the evdevObject. Reimplement it to react to the device being closed. Otherwise it can be ignored.

evdev's People

Contributors

danieloneill avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.