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
31
32
//
// TuyaSmartSIGMeshManager+Group.h
// TuyaSmartBLEMeshKit
//
// Copyright (c) 2014-2021 Tuya Inc. (https://developer.tuya.com)
 
#import <TuyaSmartBLEMeshKit/TuyaSmartBLEMeshKit.h>
 
@interface TuyaSmartSIGMeshManager (Group)
 
/// Add device to group.
/// @param devId The device ID.
/// @param groupAddress Group address.
- (void)addDeviceToGroupWithDevId:(NSString *)devId
                     groupAddress:(uint32_t)groupAddress;
 
/// Remove device from group.
/// @param devId The device ID.
/// @param groupAddress The group address.
- (void)deleteDeviceToGroupWithDevId:(NSString *)devId
                        groupAddress:(uint32_t)groupAddress;
 
/// Query the devices in the group through the group address.
/// @param groupAddress The group address.
- (void)queryGroupMemberWithGroupAddress:(uint32_t)groupAddress;
 
 
/// Query group list.
/// @param devId The device ID.
- (void)queryGroupListWithDevid:(NSString *)devId;
 
@end