From f877605c7b7705b7ea3208042d6068e89efd9484 Mon Sep 17 00:00:00 2001 From: Dominic Griesel Date: Wed, 27 Jul 2022 10:34:52 +0200 Subject: [PATCH] fix: add CC to NIF --- .../zwave-js/src/lib/controller/NodeInformationFrame.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/zwave-js/src/lib/controller/NodeInformationFrame.ts b/packages/zwave-js/src/lib/controller/NodeInformationFrame.ts index 837af066e8ac..2491c74233c2 100644 --- a/packages/zwave-js/src/lib/controller/NodeInformationFrame.ts +++ b/packages/zwave-js/src/lib/controller/NodeInformationFrame.ts @@ -35,8 +35,11 @@ export function determineNIF(): { const supportedCCs = [ // Z-Wave Plus Info must be listed first CommandClasses["Z-Wave Plus Info"], - // TODO: Z-Wave Plus v2 Device Type Specification - // Gateway device type MUST **support** Inclusion Controller and Time CC + // Z-Wave Plus v2 Device Type Specification + // -> Gateway device type MUST support Inclusion Controller and Time CC + CommandClasses["Inclusion Controller"], + // TODO: Implement handling of Time CC + // CommandClasses.Time, ...implementedEncapsulationCCs, ];