*/
public ZWaveNode(int homeId, int nodeId, ZWaveController controller) {
this.homeId = homeId;
this.nodeId = nodeId;
this.controller = controller;
this.nodeStageAdvancer = new ZWaveNodeStageAdvancer(this, controller);
this.nodeStage = NodeStage.EMPTYNODE;
this.deviceClass = new ZWaveDeviceClass(Basic.NOT_KNOWN, Generic.NOT_KNOWN, Specific.NOT_USED);
this.lastSent = null;
this.lastReceived = null;
}