UNPKG

zwave-js

Version:

Z-Wave driver written entirely in JavaScript/TypeScript

13 lines 536 B
import { ControllerProprietary_NabuCasa } from "./proprietary/NabuCasa.js"; export function getControllerProprietary(driver, controller) { // TODO: Make this configurable with config files or so. For now, just hard code it. if (controller.manufacturerId === 0x0466 && controller.productType === 0x0001 && controller.productId === 0x0001) { return { "Nabu Casa": new ControllerProprietary_NabuCasa(driver, controller), }; } return {}; } //# sourceMappingURL=Proprietary.js.map