utility for controlling AV devices using the serial port
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).
npm install serial-remote
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) {
});
});
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