mirror of
https://github.com/cwyark/ameba-sdk-gcc-make.git
synced 2026-03-23 16:54:49 +00:00
first commit and add gitignore, README.md
This commit is contained in:
commit
760756ba2c
1861 changed files with 709236 additions and 0 deletions
|
|
@ -0,0 +1,48 @@
|
|||
//
|
||||
// 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue