serial-remote
v0.0.6
Published
utility for controlling AV devices using the serial port
Downloads
5
Readme
serial-remote
utility for controlling AV devices using the serial port
Purpose
Many home theater devices (tvs, projectors, receivers) can be controlled via their RS232 port. This module will evolve to control several devices from many brands via a spec file, which is a json representation of the control protocol (see the example for Sony TVs in the /spec folder).
Installation
npm install serial-remote
Example
var Device = require('device');
var deviceSpec = JSON.parse(fs.readFileSync(path.join(__dirname, '../specs/sony_tv.json'), 'utf8'));
var device = new Device(deviceSpec, "/dev/cu.usbserial");
device.on('ready', function() {
device.powerOn(function(error, results) {
});
});
Contributions
If you have a device that can be controlled via RS232, create a spec file containing the supported commands and issue a PR. If you find an issue, create a ticket on github