26 lines
662 B
Objective-C
Executable File
26 lines
662 B
Objective-C
Executable File
//
|
|
// FirstViewController.h
|
|
// Talk
|
|
//
|
|
// Created by xuzs on 22/10/11.
|
|
// Copyright (c) 2022年 xuzs. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <CoreBluetooth/CoreBluetooth.h>
|
|
#import "BaseViewController.h"
|
|
#import "EquList.h"
|
|
|
|
@interface EquAdd : BaseViewController<CBCentralManagerDelegate,CBPeripheralDelegate>
|
|
@property(nonatomic) NSString *equid;
|
|
@property(nonatomic) NSString *name;
|
|
@property(nonatomic) EquList *parent;
|
|
|
|
@property (nonatomic,strong)CBCentralManager *ble;
|
|
@property (nonatomic,strong)CBPeripheral *device;
|
|
@property (nonatomic,strong)CBCharacteristic *wrter;
|
|
@property (nonatomic,strong)CBCharacteristic *reader;
|
|
|
|
@end
|
|
|