Hi All,
I have CC2531 based USB dongle and I am trying control my Kwikset based smart lock (SMART CODE 914) using beaglebone. I was able to get ieee address of the lock using sample application provided by TI.
I have created a simple application to control the lock. For the same I am using void act_set_doorlock(zb_addr_t * addr, const uint8_t state, const int code_len, unsigned char *code) api which is provided in Z-stack.
I have passed lock address (which is got it from sample application), state (open/close), pincode length and pin code as an argument to the above api. But my lock is not at all responding. It doesn't change it's state.
So, my questions are
1. Is there a way (without sniffer) to check if the zigbee signal being transmitted when I run my app? (Is there any api available for the same). Since I don't have a sniffer and getting a sniffer will take some time.
2. Is the a way to check if a door lock is included in the zigbee network? (Sample application does return me ieee address but I am not sure if the lock itself is included in the network)
Thanks,