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
//
// TuyaSmartDeviceCoreKit.h
// TuyaSmartDeviceCoreKit
//
// Copyright (c) 2014-2021 Tuya Inc. (https://developer.tuya.com)
 
#ifndef TuyaSmartDeviceCoreKit_h
#define TuyaSmartDeviceCoreKit_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>
 
#if TARGET_OS_IOS
    #import <TuyaSmartMQTTChannelKit/TuyaSmartMQTTChannelKit.h>
    #import <TuyaSmartSocketChannelKit/TuyaSmartSocketChannelKit.h>
#elif TARGET_OS_WATCH
    #define TuyaSmartMQTTChannelDelegate NSObject
    #define TuyaSmartSocketChannelDelegate NSObject
#endif
 
#import "TuyaSmartDevice.h"
#import "TuyaSmartGroup.h"
#import "TuyaSmartBleMeshModel.h"
#import "TuyaSmartSingleTransfer.h"
#import "TYCoreCacheService.h"
 
#import "TuyaSmartDeviceCoreKitErrors.h"
 
#import "TuyaSmartDevice+OfflineReminder.h"
 
#endif /* TuyaSmartDeviceCoreKit_h */