I am using Java XBEE API with Zigbee modules to send data to remote zigbee. I am using 64 bit address of remote zigbee module like this:
XBeeAddress64 destination = new XBeeAddress64(0x00, 0x13,0xa2,0x00,0x40,0xa9,0xd0,0xd1);
It works fine but I don't have any idea what 0x00
means in JAVA whether it is hex, integer or string. I have a string containing remote address and i want to use this as remote address like this:
address_64 = "0x00 0x13 0xa2 0x00 0x40 0xa9 0xd0 0xd1";
destination = new XBeeAddress64(address_64);
But this time it gives error. Does anyone know hoe to solve it?
0x
in the address. – Gerald Schneider