xm
2021-12-01 6d73bf6e816570291865674bef8bce8972e4de3f
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
//
//  BlufiConfigureParams.h
//  EspBlufi
//
//  Created by AE on 2020/6/9.
//  Copyright © 2020 espressif. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import "BlufiConstants.h"
 
NS_ASSUME_NONNULL_BEGIN
 
@interface BlufiConfigureParams : NSObject
 
@property(assign, nonatomic)OpMode opMode;
 
@property(strong, nonatomic)NSString *staBssid;
@property(strong, nonatomic)NSString *staSsid;
@property(strong, nonatomic)NSString *staPassword;
 
@property(assign, nonatomic)SoftAPSecurity softApSecurity;
@property(strong, nonatomic)NSString *softApSsid;
@property(strong, nonatomic)NSString *softApPassword;
@property(assign, nonatomic)NSInteger softApChannel;
@property(assign, nonatomic)NSInteger softApMaxConnection;
 
@end
 
NS_ASSUME_NONNULL_END