@mike.maxwell or @bcopeland do Node Information frames still make their way through to Z-Wave parse() ?
I wrote some drivers for some oddball battery devices ages ago, they don't send a typical manual "wake up" CC message on management button press, but instead send a NIF.
This used to work (old C4 running firmware from late 2018 or so):
def zwaveEvent(hubitat.zwave.commands.zwavecmdclassv1.NodeInfo cmd) {
And allowed you to respond (for example with configuration CC).
I'm moving those devices to a new C7 and this now gives an error:
unable to resolve class hubitat.zwave.commands.zwavecmdclassv1.NodeInfo
Was NodeInfo removed, or moved to another CC?
Or am I imagining that it used to work?!?!