zwave-js / certification-backlog

Issues and discussions related to Z-Wave certification of HA + Z-Wave JS
1 stars 0 forks source link

Configure application-specific constants that match the certification data #36

Open AlCalzone opened 3 months ago

AlCalzone commented 3 months ago

This is required to specify which manufacturer ID etc. Z-Wave JS uses in responses. See https://github.com/zwave-js/node-zwave-js/pull/6876 for details. This info needs to be set by the integration:

{
    // Nabu Casa
    manufacturerId: 0x0466,
    // Home Assistant, Z-Wave JS
    productType: 0x0001,
    productId: 0x0001,
    // optional, these are the defaults:
    hardwareVersion: 0,
    userIcon: 0x0500,
    installerIcon: 0x0500,
  }
MartinHjelmare commented 2 weeks ago

Is this only for users that are running the standard add-on? Previously we haven't set any driver options for other ways of running the server/driver from the integration, as far as I know.

AlCalzone commented 2 weeks ago

Correct. For certification, we need to be able to identify the combination HA+Core Addon+node-zwave-js to a Z-Wave network. The info above is how.