UNPKG

zwave-js

Version:

Z-Wave driver written entirely in JavaScript/TypeScript

23 lines 1.14 kB
import { ZWavePlusNodeType, ZWavePlusRoleType, } from "@zwave-js/cc"; import { CommandClasses, EncapsulationFlags, } from "@zwave-js/core"; export async function handleZWavePlusGet(ctx, node, command, vendorInfo) { const endpoint = node.getEndpoint(command.endpointIndex) ?? node; // We are being queried, so the device may actually not support the CC, just control it. // Using the commandClasses property would throw in that case await endpoint .createAPI(CommandClasses["Z-Wave Plus Info"], false) .withOptions({ // Answer with the same encapsulation as asked, but omit // Supervision as it shouldn't be used for Get-Report flows encapsulationFlags: command.encapsulationFlags & ~EncapsulationFlags.Supervision, }) .sendReport({ zwavePlusVersion: 2, roleType: ZWavePlusRoleType.CentralStaticController, nodeType: ZWavePlusNodeType.Node, installerIcon: vendorInfo?.installerIcon ?? 0x0500, // Generic Gateway userIcon: vendorInfo?.userIcon ?? 0x0500, // Generic Gateway }); } //# sourceMappingURL=ZWavePlusCC.js.map