ameba-sdk-gcc-make/tools/simple_config_wizard/iOS/SimpleConfigWizard_v104/SimpleConfig/RTKViewController.h
2016-06-04 19:09:35 +08:00

48 lines
1.2 KiB
Objective-C
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// RTKViewController.h
// SimpleConfig
//
// Created by realtek on 6/16/14.
// Copyright (c) 2014 Realtek. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Reachability.h"
#include "SimpleConfig.h"
#include "ZBarSDK.h"
#define NEW_UI_Y_DELTA (120)
#define ENABLE_QRCODE 1
#ifdef DEBUG
#define NSLog(...) NSLog(__VA_ARGS__)
#else
#define NSLog(...)
#endif
@interface RTKViewController : UIViewController <UIAlertViewDelegate, UITableViewDelegate, UITableViewDataSource, ZBarReaderDelegate>
{
int num ;
BOOL upOrdown;
}
//----------- origin member variables -----------
@property (nonatomic, strong) SimpleConfig *mySimpleConfig;
@property (nonatomic, strong) UITextField *mySSID;
@property (nonatomic, strong) UITextView *myAESKey;
@property (nonatomic, strong) NSTimer *myTimer;
@property (nonatomic, strong) NSString *myDevType;
@property (nonatomic, strong) UIImageView *line;
//----------- add member variables -----------
- (void)checkForWIFIConnection;
@property (strong, nonatomic) IBOutlet UIAlertView *waitingAlert;
//table controller
@property (strong, nonatomic) IBOutlet UITableView *tableDeviceList;
//QR Code
//@property (nonatomic, strong) NSString *m_pin_code;
@end