Hi,
I am trying to know all the mac addresses of the devices in my zigbee network. The problem is that I find only my xbee boards but I dont find the HA dimmer that I have in my network. Im sure that the dimmer is in my network because I can comunicate with it but when i use the get_network() function it only appears the other xbee 3 boards. I use the following code:
xbee = XBeeDevice("/dev/ttyXBee", 9600)
xbee.open()
xnet = xbee.get_network()
xnet.start_discovery_process()
while xnet.is_discovery_running():
time.sleep(0.5)
devices = xnet.get_devices()
n_dev=len(devices)
r=0
while r <n_dev:
addresses= devices[r].get_64bit_addr()