0.0.6 • Published 9 years ago

serial-remote v0.0.6

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

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

License

MIT

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago