Search found 13 matches

by haitun
2024年 Nov 11日 11:22
Forum: TuyaOS-Matter 开发
Topic: CBU 模组matter开发问题
Replies: 5
Views: 358

Re: CBU 模组matter开发问题

https://project-chip.github.io/connecte ... guide.html
配网指令使用这个:
./chip-tool pairing ble-wifi <node_id> <ssid> <password> <pin_code> <discriminator> --bypass-attestation-verifier

by haitun
2024年 Nov 11日 10:53
Forum: TuyaOS-Matter 开发
Topic: CBU 模组matter开发问题
Replies: 5
Views: 358

Re: CBU 模组matter开发问题

代码加的没问题,三路ep都可以使用。
你说的第三路无法控制使用的app是涂鸦智能,还是别的app?
可以使用chip-tool或apple/google/amazon对比验证下

by haitun
2024年 Aug 27日 09:35
Forum: TuyaOS-Matter 开发
Topic: tuyaos_demo_matter_quickstart创建光源项目的问题
Replies: 3
Views: 1429

Re: tuyaos_demo_matter_quickstart创建光源项目的问题

extern const char * g_schema_id;
extern const char * g_schema_dps;
gw_active_set_schema((char *)g_schema_id, (char *)g_schema_dps);
gw_active_enable_schema();
这段代码是否屏蔽?

by haitun
2024年 Jun 12日 10:49
Forum: TuyaOS-Matter 开发
Topic: BK7231N_TuyaOS-3.7.9(支持matter),想要将灯带demo移植到它里面
Replies: 4
Views: 1970

Re: BK7231N_TuyaOS-3.7.9(支持matter),想要将灯带demo移植到它里面

  1. 把tuyaos_wf_bk7231n_lig-tuyaos_wf_bk7231n_lig_pixels中你想要的代码直接加到BK7231N_TuyaOS-3.7.9的demo里即可,相同部分替换,保留matter部分代码。
    2.BK7231N_TuyaOS-3.9.0它里面的lig_pixels里的库,如场景,设备驱动、音乐模式的静态库可以移植到BK7231N_TuyaOS-3.7.9(支持matter)使用,如果遇到具体的问题,再实际看。
by haitun
2023年 Nov 15日 10:06
Forum: TuyaOS-Matter 开发
Topic: tuyaos_demo_matter_quickstart 如何使用 chip tool 工具进行配网调试
Replies: 2
Views: 4454

Re: tuyaos_demo_matter_quickstart 如何使用 chip tool 工具进行配网调试

https://dcl.iotledger.io/pki下载涂鸦paa证书,搜索tuya有两个,下载这个:CN=Tuya Matter PAA,vid=0x125D
使用chip-tool配网时,指定paa证书所在路径:--paa-trust-store-path ../../credentials/development/paa-root-certs

by haitun
2023年 Sep 14日 10:39
Forum: TuyaOS-联网单品开发
Topic: 【已解决】tuyaos_demo_matter_quickstart 编译出错
Replies: 7
Views: 1427

Re: tuyaos_demo_matter_quickstart 编译出错

这个demo是在arm-linux上编译测试使用的,在gcc上没有测试验证过。

by haitun
2023年 Aug 1日 16:42
Forum: TuyaOS-Matter 开发
Topic: 【求助】 matter DP数据上报疑问
Replies: 1
Views: 3976

Re: 【求助】 matter DP数据上报疑问

STAT_MQTT_ONLINE ,如果时online 在线的话,DP数据上报通过dev_report_dp_json_async
dp只要有更新,都需要使用tal_matter_attribute_write更新到matter

by haitun
2023年 May 9日 17:58
Forum: TuyaOS-Matter 开发
Topic: Matter 7231N SDK3.7.1 开发文档
Replies: 6
Views: 5455

Re: Matter 7231N SDK3.7.1 开发文档

  1. 可以参考demo代码tuya_app_main.c中的ep_server_cluster_list定义功能,通过ep_device_type定义设备类型
    2.开关路数可以通过增加app_ep_info中的endpoint个数来实现。
    3.状态回调通过VOID_T matter_platform_event_callback(MATTER_EVT_E event, PVOID_T parg)实现