更新时间:2024-06-26 03:09:26下载pdf
商用照明设备配网 UI 业务包的功能涵盖了目前常见的 Wi-Fi 设备、Zigbee 设备、蓝牙设备,并且支持二维码扫码的设备,例如 GPRS 和 NB-IoT 设备。业务包主要实现不同类型的设备配网前置操作引导,和具体入网激活。
支持 Wi-Fi 智能设备入网连接云服务,Wi-Fi 设备配网主要有快连模式和热点模式两种,其中智能摄像机(IPC)设备支持扫二维码方式配网。
名词 | 说明 |
---|---|
Wi-Fi 快连配网 | 又称快连模式。大致流程如下:
|
Wi-Fi 热点配网 | 又称热点模式,手机作为 STA(Station)连接智能设备的热点,双方建立一个 Socket 连接,通过约定端口交互数据。 |
IPC 扫码配网 | IPC 设备通过扫描 App 上的二维码,来获取配网数据信息。 |
支持 Zigbee 网关和子设备配网:
名词 | 说明 |
---|---|
Zigbee 网关 | 融合 Zigbee 网络中协调器和 Wi-Fi 功能的设备,负责 Zigbee 网络的组建及数据信息存储。 |
Zigbee 子设备 | Zigbee 网络中的路由或者终端设备,负责数据转发或者终端控制响应。 |
涂鸦蓝牙有以下几种技术方案:
名词 | 说明 |
---|---|
蓝牙单点 | 蓝牙设备与手机一对一连接单点设备(蓝牙或蓝牙 LE)。 |
蓝牙 Mesh | 蓝牙技术联盟发布的蓝牙拓扑通信。 |
涂鸦 Mesh | 涂鸦自研的蓝牙拓扑通信,使用场景与蓝牙 Mesh 产品相同。 |
双模设备 | 一些多协议设备也会使用到蓝牙技术,例如同时具备 Wi-Fi 能力和蓝牙能力的 双模设备。 |
扫码配网设备上电后即连接了涂鸦的云服务,App 通过扫描设备上的二维码让设备在云端激活绑定。这个二维码必须是涂鸦支持的二维码规则,具体接入方式可咨询您的涂鸦客户经理。
名词 | 说明 |
---|---|
GPRS 设备 | 采用 GPRS 通信技术接入网络连接云服务的智能设备。 |
NB-IoT 设备 | 采用窄带物联网(NarrowBand-Internet of Things)技术的智能设备。 |
融合涂鸦智能通用配网技术实现,为用户提供一套快捷配网的功能。
在工程的 Podfile
文件中添加配网业务包组件,并执行 pod update
命令。
source "https://github.com/TuyaInc/TuyaPublicSpecs.git"
source 'https://cdn.cocoapods.org/'
target 'your_target_name' do
# 添加配网业务包
pod 'ThingCommercialLightingActivatorBizBundle', '~> 2.8.1.1'
end
Wi-Fi 设备配网过程需要获取手机当前连接 Wi-Fi 名称,需要项目开启地位权限来获取 Wi-Fi 的名称,在 info.plist 中添加如下权限声明,创建 CLLocationManager
示例,并调用 requestWhenInUseAuthorization
方法。
NSLocationAlwaysAndWhenInUseUsageDescription
NSLocationAlwaysUsageDescription
NSLocationWhenInUseUsageDescription
二维码扫码功能需要系统相机权限,需要在 info.plist
中添加以下声明:
NSCameraUsageDescription
配网业务包支持 Wi-Fi、蓝牙等类型的设备配网,其中蓝牙配网为可选项。
如果当前 App 不需要蓝牙配网功能,只需要将自定义 thing_custom_config.json
中的 needBle
属性设置为 false
即可。
如果当前 App 需要蓝牙配网功能,首先您需要在项目的 info.plist
文件中添加蓝牙权限的声明,设置 thing_custom_config.json
中的 needBle
属性设置为 true
,然后需要在项目中添加以下依赖:
系统权限
NSBluetoothAlwaysUsageDescription
NSBluetoothPeripheralUsageDescription
配置项
{
"config": {
"appId": 123,
"thingAppKey": "xxxxxxxxxxxx",
"appScheme": "thingSmart",
"hotspotPrefixs": ["SmartLife"],
"needBle": true // 设置为 true 则表示支持蓝牙设备的配网
},
"colors":{
"themeColor": "#FF5A28",
}
}
依赖
pod 'ThingBLEInterfaceImpl', '0.3.0-lampbizbundle-1.11.5.1.3'
pod 'ThingBLEMeshInterfaceImpl', ' 0.0.9-lampbizbundle-1.11.5.1.3'
pod 'ThingSmartBLEKit'
pod 'ThingSmartBLEMeshKit'
pod 'ThingBLELampManager', '1.12.0'
涂鸦设备热点前缀默认为 SmartLife
。
若当前设备的热点前缀名称已修改,则需要在 thing_custom_config.json
文件中设置 hotspotPrefixs
属性,设置为当前设备的热点前缀。
{
"config": {
"appId": 123,
"thingAppKey": "xxxxxxxxxxxx",
"appScheme": "thingSmart",
"hotspotPrefixs": ["SL"], // 表示修改支持的设备热点前缀为 SL
"needBle": true
},
"colors":{
"themeColor": "#FF5A28",
}
}
配网业务包实现 ThingActivatorProtocol
协议以提供服务,在 ThingModuleServices
组件中查看 ThingActivatorProtocol.h
,协议文件内容为:
#ifndef ThingActivatorProtocol_h
#define ThingActivatorProtocol_h
typedef NS_ENUM(NSUInteger, ThingActivatorCompletionNode) {
ThingActivatorCompletionNodeNormal
};
@class ThingSmartHome;
@protocol ThingActivatorProtocol <NSObject>
/**
* Start config
* Goto device config list view
*/
- (void)gotoCategoryViewController;
/**
* Obtain device information after each device connection
* @param node completion node, default ThingActivatorCompletionNodeNormal
* @param custionJump default false, set true for process not need to jump to de device panel
*/
- (void)activatorCompletion:(ThingActivatorCompletionNode)node customJump:(BOOL)customJump completionBlock:(void (^)(NSArray * _Nullable deviceList))callback;
@end
#endif /* ThingActivatorProtocol_h */
若需要自定义配网品类/产品列表返回,需要实现 ThingActivatorExternalExtensionProtocol
提供的协议方法。
ThingActivatorExternalExtensionProtocol
/**
* Back action form category View Controller
* Need to implement when additional operations are needed
*/
- (BOOL)categoryViewControllerCustomBackAction;
配网业务包正常运行需要依赖 ThingLampProjectDataProtocol
这个协议提供的方法,以提供配网所需当前家庭信息。调用业务包之前需要实现该依赖协议。
/**
清除当前项目并清除缓存
*/
- (void)clearCurrentProject;
/**
要使用该 API 获取当前项目,请务必在更新当前 ID 的时候使用该协议的 updateCurrentProjectId: API。
获取当前的项目,当前没有项目的时候,返回 nil。
@return ThingSmartProject
*/
- (ThingLightingProject *)getCurrentProject;
/**
更新当前的项目 ID 并写到 GroupUserDefault 缓存中
@param projectId 项目 ID
*/
- (void)updateCurrentProjectId:(long long)projectId;
/// 获取当前项目 ID
- (long long)currentProjectId;
任何接口调用之前,务必确认用户已登录。
调用配网业务包逻辑前,要先实现 ThingLampProjectDataProtocol
中的协议方法getCurrentProject
和方法 currentProjectId
。
Objective-C 示例
#import <ThingSmartBizCore/ThingSmartBizCore.h>
#import <ThingModuleServices/ThingLampProjectDataProtocol.h>
- (void)initCurrentProject {
// 注册要实现的协议
[[ThingSmartBizCore sharedInstance] registerService:@protocol(ThingLampProjectDataProtocol) withInstance:self];
}
// 实现对应的协议方法
- (ThingLightingProject *)getCurrentProject {
ThingLightingProject *project = [ThingLightingProject projectWithProjectId:@"当前项目id"];
return project;
}
- (long long)currentProjectId {
return 111;
}
Swift 示例
import ThingCommercialLightingKit
class ThingActivatorTest: NSObject,ThingLampProjectDataProtocol{
func test() {
ThingSmartBizCore.sharedInstance().registerService(ThingLampProjectDataProtocol.self, withInstance: self)
}
func getCurrentProject() -> ThingLightingProject! {
let project = ThingLightingProject.init(projectId: 111)
return project
}
func currentProjectId() -> CLongLong {
return 111
}
}
Objective-C 示例
#import <ThingSmartBizCore/ThingSmartBizCore.h>
#import <ThingModuleServices/ThingActivatorProtocol.h>
- (void)gotoDeviceConfig {
id<ThingActivatorProtocol> impl = [[ThingSmartBizCore sharedInstance] serviceOfProtocol:@protocol(ThingActivatorProtocol)];
[impl gotoCategoryViewController];
// 获取配网结果
[impl activatorCompletion:ThingActivatorCompletionNodeNormal customJump:NO completionBlock:^(NSArray * _Nullable deviceList) {
NSLog(@"deviceList: %@",deviceList);
}];
}
Swift 示例
let impl = ThingSmartBizCore.sharedInstance().service(of: ThingActivatorProtocol.self) as? ThingActivatorProtocol
impl?.gotoCategoryViewController()
impl?.activatorCompletion(ThingActivatorCompletionNodeNormal, customJump: false, completionBlock: { (evIdList:[Any]?) in
print(devIdList ?? [])
})
Objective-C 示例
#import <ThingSmartBizCore/ThingSmartBizCore.h>
#import <ThingModuleServices/ThingActivatorExternalExtensionProtocol.h>
- (void)initCurrentProject {
// 注册要实现的协议
[[ThingSmartBizCore sharedInstance] registerService:@protocol(ThingActivatorExternalExtensionProtocol) withInstance:self];
}
// 实现对应的协议方法
- (BOOL)categoryViewControllerCustomBackAction {
[self.navigationController popToRootViewControllerAnimated:YES];
return YES;
}
Swift 示例
class ThingActivatorTest: NSObject,ThingActivatorExternalExtensionProtocol{
func test() {
ThingSmartBizCore.sharedInstance().registerService(ThingActivatorExternalExtensionProtocol.self, withInstance: self)
}
func categoryViewControllerCustomBackAction() -> Bool {
self.navigationController?.popToRootViewController(animated: true)
return true;
}
}
该内容对您有帮助吗?
是意见反馈该内容对您有帮助吗?
是意见反馈