Search found 9 matches

by ZoeTuya
2024年 Nov 15日 17:28
Forum: App开发
Topic: iOS 配网业务包如何在配网结束后跳转自定义页面
Replies: 0
Views: 415

iOS 配网业务包如何在配网结束后跳转自定义页面

配网完成后,仅有一个设备的情况下会跳转设备面板,多个设备的情况下会退出配网。那如何在配网结束后跳转至指定页面呢? 1、拉起配网界面时传customJump:YES, 禁止配网结束后跳转设备面板 id<ThingActivatorProtocol> impl = [[ThingSmartBizCore sharedInstance] serviceOfProtocol:@protocol(ThingActivatorProtocol)]; [impl gotoCategoryViewController]; [impl activatorCompletion:ThingActivatorComp...
by ZoeTuya
2024年 Nov 11日 15:44
Forum: App开发
Topic: 如何通过配网基座及业务包快速搭建自定义配网首页
Replies: 0
Views: 509

如何通过配网基座及业务包快速搭建自定义配网首页

5.17.0 配网业务包发布单产品配网入口,结合配网基座提供的复合扫描功能,用户可自定义配网首页。 公版首页包含设备搜索功能、手动配网和扫一扫配网,三个功能均可已提供接口自定义样式。 设备搜索 针对 OEM APP,设备搜索提供两种交互,目前可在开发者平台进行配置。客户仍可使用基座提供的复合扫描设备功能来自定义设备搜索交互。搜索设备类型可自由控制,但需要注意不同设备类型搜索的前置条件。 如需要同时扫描双模、单点、SIGMesh和 Beacon 设备,示例如下: class searchModeConfigurationVC: UITableViewController { var typeLi...
by ZoeTuya
2024年 Nov 11日 14:52
Forum: App开发
Topic: 使用配网业务包搭建单产品配网入口
Replies: 0
Views: 537

使用配网业务包搭建单产品配网入口

5.17.0 业务包配网新增单产品配网流程接口,假设您正在实现某一产品的详细介绍页面,需要在该页面显著位置新增产品的配网入口,即可使用该新增接口。单击该入口,会进入您已经在涂鸦开发者平台上配置的配网引导流程。 接入流程: 步骤1:登录涂鸦开发者平台 打开浏览器,访问涂鸦开发者平台. 使用你的账号登录。如果没有账号,先注册一个新账号。 步骤2:创建新产品 在左侧导航栏中,选择“产品开发”。 点击“创建产品”按钮。 选择你要开发的产品类型和类别。 按照提示填写产品的基本信息,如产品名称、产品型号等。 步骤3:设置配网引导 在04产品配置步骤,选择“配网信息”选项。 配置以下主要内容: 配网模式: ...
by ZoeTuya
2023年 Dec 1日 18:14
Forum: iOS & Android Development
Topic: How To use Tuya Manual Mode Pairing
Replies: 7
Views: 3976

Re: How To use Tuya Manual Mode Pairing

Sorry, AP mode doesn't enable this process, now the only way to get the list of devices in pairing mode and select the ones you want is to use the Combo device pairing method.

by ZoeTuya
2023年 Dec 1日 18:05
Forum: iOS & Android Development
Topic: How To use Tuya Manual Mode Pairing
Replies: 7
Views: 3976

Re: How To use Tuya Manual Mode Pairing

WiFi devices usually support EZ mode and AP mode. EZ mode supports simultaneous pairing of multiple devices, while AP mode can only pair one device at a time. In addition, most of the Tuya WiFi devices now have Bluetooth assisted capability, i.e. the above mentioned ble-wifi multi-mode devices, whic...
by ZoeTuya
2023年 Dec 1日 17:39
Forum: iOS & Android Development
Topic: How To use Tuya Manual Mode Pairing
Replies: 7
Views: 3976

Re: How To use Tuya Manual Mode Pairing

EZ mode is to send broadcast packets to the devices through the router for pairing. If devices 1, 2 and 3 are in the network allocation state, they will be activated and registered after receiving the network information, and there is no way to determine which device is the one that has successfully...
by ZoeTuya
2023年 Oct 26日 17:28
Forum: App开发
Topic: SDK 设备配网遇到 DEVICE_ALREADY_BIND 这个错误,表示什么?
Replies: 2
Views: 1484

Re: SDK 设备配网遇到 DEVICE_ALREADY_BIND 这个错误,表示什么?

DEVICE_ALREADY_BIND 表示设备已被其他用户绑定,出于安全因素,新的用户无法对该设备重新进行绑定,需要到反馈中心提交解绑工单,解除设备与上一个用户的关系,才可以进行正常的设备配网。 设备解绑可以通过 UI 业务包跳转解绑工单进行设备解绑,具体可参考 跳转解绑工单 示例代码: let impl = ThingSmartBizCore.sharedInstance().service(of:ThingFeedBackProtocol.self) as? ThingFeedBackProtocol impl?.gotFeedBackViewController?(withHdType...
by ZoeTuya
2023年 Oct 12日 18:09
Forum: App开发
Topic: OEM App 如何支持 Matter 设备
Replies: 1
Views: 1428

Re: OEM App 如何支持 Matter 设备

首先 App 需要是已付费购买年费: OEM App基础版 / OEM App高级版 在 IoT 平台自助开通 Matter 功能,相关流程如下:IoT平台> OEM App>App开发>OEM App 功能配置> App 高级功能 > 基础版功能 > Matter功能接入 上架配置中,iOS证书中需要配置“Matter Extension 扩展描述文件”,相关路径:IoT平台> OEM App>上架配置>iOS证书-> Matter 功能接入。描述文件生成流程可参考:https://developer.tuya.com/cn/docs/iot/ios-matter-configuratio...