-
-
Notifications
You must be signed in to change notification settings - Fork 623
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support learn mode #7135
feat: support learn mode #7135
Conversation
29e983b
to
96ef717
Compare
@zwave-js-bot automerge |
### Features * Add support for EU Long Range (#6751) * Support learn mode to become a secondary controller (#7135) * Add method to query supported RF regions and their info (#7118) * Support `Firmware Update Meta Data CC` v8 (#7079) * Implement 32-bit addressed NVM operations (#7114) * Add methods to reset SPAN of one or all nodes (#7105) ### Bugfixes * Fix missing values in endpoint dump (#7101) ### Config file changes * Add new fingerprint for TZ45 thermostat (#7127) * Add alarm mapping for Schlage lock CKPD FE599 (#7122) * Add fingerprint for Climax Technology SDCO-1 (#7102) * Add Shelly Wave Pro 3 and Wave Pro Shutter (#7103) * Remove endpoint workaround for Zooz ZEN30, FW 3.20+ (#7115) ### Changes under the hood * Document soft-reset issue in VMs (#7119) * Update documentation for troubleshooting and Zniffer, clean up migration guides (#7107) * Update `FunctionType` definitions (#7106) * CI now checks that all device config files have a `.json` extension (#7099)
Should FAQ be also updated now? https://github.com/zwave-js/node-zwave-js/blob/master/docs/getting-started/faq.md or is it still considered "Not supported"? |
It's not fully supported yet - the other half of the Inclusion Controller CC implementation is missing. But I guess it's good enough to update the FAQ. |
Does this mean I can run a second instance of zwave-js-ui elsewhere in my environment, with another stick. and join it to the network as a range extender? It's not clear from the docs how to get it to join an existing network on startup. |
No, a secondary controller does not have the same functionality as the primary. For example with some devices you can not have them report to more than one controller. What you may be thinking of (multiple instances cooperating) would require some backend work. It may come one day, but no guarantees. |
Right but even if I didn't want to have it report to the secondary controller, or do any management from that node, could I at least get it as far as joining the network to extend the range of the mesh? I'm confused as to what the current limited support actually allows for. |
I don't think there's support for this in Z-Wave JS UI yet.
Mainly in preparation for #7096 /cc @robertsLando |
No support in UI yet but you could still try using it with driver function |
Do you have any pointers on how to do that? I'm assuming I'd need to run the driver headless and pass it the keys and such? |
@brandond Never tried those new APIs so I have no clue but if you want to understand how to work with custom driver functions you can look at docs here: https://zwave-js.github.io/zwave-js-ui/#/usage/driver_function |
This PR adds support for joining another network using S2 and S0 and being a secondary controller
fixes: #6428
enables #7096
enables #1070