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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//
// TuyaSmartDeviceKit.h
// TuyaSmartDeviceKit
//
// Copyright (c) 2014-2021 Tuya Inc. (https://developer.tuya.com)
 
#ifndef TuyaSmartDeviceKit_h
#define TuyaSmartDeviceKit_h
 
/// The highest currently supported extranet communication protocol for clients.
//#define TUYA_CURRENT_GW_PROTOCOL_VERSION 2.2
 
/// Highest currently supported LAN communication protocol for clients.
//#define TUYA_CURRENT_LAN_PROTOCOL_VERSION 3.4
 
#import <TuyaSmartBaseKit/TuyaSmartBaseKit.h>
#import <TuyaSmartDeviceCoreKit/TuyaSmartDeviceCoreKit.h>
 
#if TARGET_OS_IOS
    #import <TuyaSmartMQTTChannelKit/TuyaSmartMQTTChannelKit.h>
    #import <TuyaSmartSocketChannelKit/TuyaSmartSocketChannelKit.h>
#elif TARGET_OS_WATCH
    #define TuyaSmartMQTTChannelDelegate NSObject
    #define TuyaSmartSocketChannelDelegate NSObject
#endif
 
#import "TuyaSmartHome.h"
#import "TuyaSmartHome+Weather.h"
#import "TuyaSmartHome+TYDeprecatedApi.h"
#import "TuyaSmartWeatherModel.h"
#import "TuyaSmartWeatherOptionModel.h"
#import "TuyaSmartWeatherSketchModel.h"
 
#import "TuyaSmartHomeManager.h"
#import "TuyaSmartHomeMember.h"
#import "TuyaSmartHomeInvitation.h"
#import "TuyaSmartRoom.h"
#import "TuyaSmartHomeDeviceShare.h"
 
#import "TuyaSmartHomeMemberModel.h"
#import "TuyaSmartHomeMemberRequestModel.h"
#import "TuyaSmartHomeMember+TYDeprecatedApi.h"
 
#import "TuyaSmartGroup+DpCode.h"
 
#import "TuyaSmartMultiControl.h"
 
#import "TuyaSmartDeviceShareModel.h"
#import "TuyaSmartHomeDeviceShare+TYDeprecatedApi.h"
 
#endif /* TuyaSmartDeviceKit_h */