1
wei
2021-01-21 62d098cb78296feaa6f786a20748921338db838c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// TuyaSmartSIGMeshManager+Activator.h
// TuyaSmartBLEMeshKit
//
// Copyright (c) 2014-2021 Tuya Inc. (https://developer.tuya.com)
 
#import <TuyaSmartBLEMeshKit/TuyaSmartBLEMeshKit.h>
 
@interface TuyaSmartSIGMeshManager (Activator)
 
/// Start scanning device.
/// @param scanType At present, the scanning type is divided into non distribution network and distributed network. The scanned result of distribution network will automatically enter the network.
/// @param meshModel The mesh model.
- (void)startScanWithScanType:(TuyaSmartSIGScanType)scanType meshModel:(TuyaSmartBleMeshModel *)meshModel;
 
/// Start activating device.
/// @param devList List of devices to be activated.
/// @param meshModel The mesh model information.
- (void)startActive:(NSArray<TuyaSmartSIGMeshDiscoverDeviceInfo *> *)devList meshModel:(TuyaSmartBleMeshModel *)meshModel;
 
/// Stop activating device.
- (void)stopActiveDevice;
 
/// Stop scanning device.
- (void)stopSerachDevice;
 
/// Gets the node ID of the current connection.
- (NSString *)currentConnectNodeId;
 
@end