using options deviceAddress. useful for when connecting multiple
webcams of the same type - e.g. two c920
var UVCControl= require('uvc-control');
var camera1= new UVCControl(0x046d, 0x082d, {deviceAddress: 0x9});
camera1.set('saturation', 0);
var camera2= new UVCControl(0x046d, 0x082d, {deviceAddress: 0xa});
camera2.set('saturation', 0);
look up the deviceAddress using
var usb = require('usb');
console.log(usb.getDeviceList());
using options deviceAddress. useful for when connecting multiple webcams of the same type - e.g. two c920
look up the deviceAddress using
or with IORegistryExplorer.app or similar.