 | ZWManagerRemoveFailedNode Method |
Remove a Failed Device from the Z-Wave Network
Namespace:
OpenZWave
Assembly:
OpenZWave (in OpenZWave.dll) Version: 255.255.255.255
Syntaxpublic bool RemoveFailedNode(
uint homeId,
byte nodeId
)
Public Function RemoveFailedNode (
homeId As UInteger,
nodeId As Byte
) As Boolean
public:
virtual bool RemoveFailedNode(
[InAttribute] unsigned int homeId,
[InAttribute] unsigned char nodeId
) sealed
Parameters
- homeId
- Type: SystemUInt32
The HomeID of the Z-Wave network where you want to remove the device - nodeId
- Type: SystemByte
The NodeID of the Failed Node.
Return Value
Type:
Booleanif the Command was send succesfully to the Controller
RemarksThis Command will remove a failed node from the network. The Node should be on the Controllers Failed
Node List, otherwise this command will fail. You can use the HasNodeFailed function below to test if the Controller
believes the Node has Failed.
The Status of the Node Removal is communicated via Notifications. Specifically, you should
monitor ControllerCommand Notifications.
Results of the AddNode Command will be send as a Notification with the Notification type as
Notification::Type_ControllerCommand
See Also