2.0.0 • Published 6 years ago

lirc-client v2.0.0

Weekly downloads
12
License
MIT
Repository
github
Last release
6 years ago

lirc-client

npm version Dependency Status Build Status XO code style License

Node.js module to connect to a LIRC daemon.

BREAKING CHANGE in v2.0 - Promises instead of Callbacks

If you prefer using callbacks or want to use Node < 6.12 you can still install the "old" v1.0: npm install lirc-client@1.0.0.

Usage

$ npm install lirc-client

const lirc = require('lirc-client')({
  host: '127.0.0.1',
  port: 8765
});

lirc.on('connect', () => {
    lirc.send('VERSION').then(res => {
        console.log('LIRC Version', res);
    });

    lirc.sendOnce('Remote1', 'Key1').catch(error => {
        if (error) console.log(error);
    });
});

lirc.on('receive', function (remote, button, repeat) {
    console.log('button ' + button + ' on remote ' + remote + ' was pressed!');
});

you can also connect to a unix domain socket via path option:

const lirc = require('lirc-client')({
  path: '/var/run/lirc/lircd'
});

API

Lirc

Kind: global class

new module.exports.Lirc(config)

ParamTypeDefaultDescription
configobjectConfiguration object.
config.autoconnectbooleantrueAutomatically connect.
config.hoststring"'127.0.0.1'"Host running LIRC.
config.portnumber8765Port of running LIRC daemon.
config.pathstringPath to LIRC socket.
config.reconnectbooleantrueAutomatically reconnect.
config.reconnect_delaynumber5000Delay when reconnecting.

lirc.send() ⇒ Promise.<array.<string>>

Send a command.

Kind: instance method of Lirc
Returns: Promise.<array.<string>> - Resulting response from LIRC daemon.

ParamTypeDescription
...argsstringCommand to send, or individual parameters.

lirc.sendOnce(remote, button, repeat) ⇒ Promise.<array.<string>>

Tell LIRC to emit a button press.

Kind: instance method of Lirc
Returns: Promise.<array.<string>> - Response from LIRC.

ParamTypeDescription
remotestringRemote name.
buttonstringButton name.
repeatnumberNumber of times to repeat.

lirc.sendStart(remote, button) ⇒ Promise.<array.<string>>

Tell LIRC to start emitting button presses.

Kind: instance method of Lirc
Returns: Promise.<array.<string>> - Response from LIRC.

ParamTypeDescription
remotestringRemote name.
buttonstringButton name.

lirc.sendStop(remote, button) ⇒ Promise.<array.<string>>

Tell LIRC to stop emitting a button press.

Kind: instance method of Lirc
Returns: Promise.<array.<string>> - Response from LIRC.

ParamTypeDescription
remotestringRemote name.
buttonstringButton name.

lirc.list(remote) ⇒ Promise.<array.<string>>

If a remote is supplied, list available buttons for remote, otherwise return list of remotes.

Kind: instance method of Lirc
Returns: Promise.<array.<string>> - Response from LIRC.

ParamTypeDescription
remotestringRemote name.

lirc.version() ⇒ Promise.<array.<string>>

Get LIRC version from server.

Kind: instance method of Lirc
Returns: Promise.<array.<string>> - Response from LIRC.

lirc.connect() ⇒ Promise

Connect to a running LIRC daemon.

Kind: instance method of Lirc
Returns: Promise - Resolves upon connection to server.

lirc.disconnect() ⇒ Promise

Disconnect from LIRC daemon and clean up socket.

Kind: instance method of Lirc
Returns: Promise - Resolves upon disconnect.

License

MIT © Sebastian Raff