TI中文支持网
TI专业的中文技术问题搜集分享网站

基于TI的ZHA代码,能让飞利浦的ZLL灯加入网络并进行控制吗

Dear TI,

目前我们基于TI CC2530芯片,并基于Zigbee Home 1.2.0版本代码,做一个ZHA网络,请问这种网络可以兼容飞利浦的ZLL灯吗,是否可以让飞利浦ZLL灯加入TI的ZHA网络中并进行简单控制? 

请问你们是否有做过这样的测试,如果可以,请问是目前市面上哪款飞利浦ZLL灯,我们也好买一个回来研究测试。

thanks

VV:

可以的,实现基本的功能都没有问题,on/off/level/hue/sat/group/scene

我们做过测试,而且有这样的demo。用我们的自己的Home Automation的协议栈去控制Philips的Hue。只要在市面买到Philips的过了ZLL的认证都可以的。

Piers Guo:

回复 VV:

Dear VV,

多谢解答,请问这样的demo代码能发给我一份参考吗 (邮箱: guoxueqiang@hiflyway.com )

另外,如果是我们基于Home Light的代码做一个ZLL的Remote,要想也能和Philips的Hue通信,据了解需要先通过ZLL认证,然后获取到一个秘钥,才能和Hue进行通信,否则不可以,这个是这样吗?

thanks

erain_30:

回复 VV:

dear all;

      i have the same question.can you give me the demo,too! thank you! 

      erain_30@163.com

Jianwei Lu:

回复 VV:

您好,VV,请问这部分demo代码现在有公布吗?

或者能发送一份到我的邮箱吗?sunyouli1982@163.com

谢谢

VV:

回复 Jianwei Lu:

你知道把ZLL的cluster相关的东西移植到ZHA上面就可以了。

你们是哪个公司的,什么项目,私信我!

谢谢!

yang zhang12:

回复 VV:

你好,W,我现在用的海尔的智能家居产品,包括灯,插座等,

1、现在想把灯换下用飞利浦的HUE可以吗,

2、还有飞利浦的hue应用层和海尔的应用层兼容吗,飞利浦的hue的服务器和海尔的服务器不是一个,用海尔的手机app不能控制飞利浦的hue。?abc.138.xyz@163.com  谢谢

VV:

回复 Jianwei Lu:

@Jianwei Lu

代码在

http://www.deyisupport.com/question_answer/wireless_connectivity/zigbee/f/104/t/81385.aspx 

mu zhang:

回复 VV:

@VV

               能不能把飞利浦HUE 恢复出厂设置详细说明下步骤,我这里只有一个飞利浦HUE灯泡。 谢谢了,急……………………………….

VV:

回复 mu zhang:

@mu zhang

用Z-Stack Lighting 1.0.2也符合的

How can I use the ZStack-Lighting-1.0.2 Remote to reset a certified ZLL product and cause it to leave the old network[edit]

ZLL products on the market can be reset to factory new by the ZStack-Lighting-1.0.2 Remote if you enable the MASTER_KEY, the actual key is not used during the reset, you just need the correct key bitmask during the initial TouchLink phase. See section 3.1 of the "ZStack Lighting Developers Guide.pdf" for more information about enabling the MASTER_KEY. To send a reset from a ZStack-Lighting Remote you need to start a TouchLink with zllInitiator_StartDevDisc(), then when the ZLL Light flashes send the zllInitiator_ResetToFNSelectedTarget().

NOTE: There is a bug which will cause issues if the ZLL Remote is on a different channel to the ZLL Light.

To fix this you will need to add:

zll_SetChannel( selectedTarget.rxChannel );

to the zllInitiator_ResetToFNSelectedTarget function:

ZStatus_t zllInitiator_ResetToFNSelectedTarget()
{if ( ( zllTransID == 0 ) || ( selectedTarget.lastRssi == ZLL_TL_WORST_RSSI ) ){return ( ZFailure );}zclLLResetToFNReq_t req;req.transID = zllTransID;zll_SetChannel( selectedTarget.rxChannel );return zclLL_Send_ResetToFNReq( ZLL_INITIATOR_ENDPOINT, &(selectedTarget.srcAddr), &req, initiatorSeqNum++ );
}

赞(0)
未经允许不得转载:TI中文支持网 » 基于TI的ZHA代码,能让飞利浦的ZLL灯加入网络并进行控制吗
分享到: 更多 (0)