1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- //
- // ToothbrushScanViewController.m
- // AILinkBleSDKSourceCode
- //
- // Created by iot_user on 2020/9/29.
- // Copyright © 2020 IOT. All rights reserved.
- //
-
- #import "ToothbrushScanViewController.h"
- #import "Masonry.h"
- #import "ToothbrushConnectionViewController.h"
- #import <AILinkBleSDK/ELToothbrushBleManager.h>
- #import "ToothbrushScanViewController.h"
-
- @interface ToothbrushScanViewController ()<UITableViewDelegate,UITableViewDataSource,ToothbrushDelegate>
- @property (nonatomic, strong) UITableView *tableView;
-
- @property (nonatomic, strong) NSArray<ELPeripheralModel *> *devices;
-
- @end
-
- @implementation ToothbrushScanViewController
-
- - (void)viewDidLoad {
- [super viewDidLoad];
-
-
- // self.title = @"Devices";
-
- [self.view addSubview:self.tableView];
- [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.left.right.bottom.mas_equalTo(0);
- }];
-
- }
- -(void)viewWillAppear:(BOOL)animated{
- [super viewWillAppear:animated];
- [[ELToothbrushBleManager shareManager] startScan];
- [ELToothbrushBleManager shareManager].toothbrushDelegate = self;
- }
- -(void)viewDidDisappear:(BOOL)animated{
- [super viewDidDisappear:animated];
- [[ELToothbrushBleManager shareManager] stopScan];
- }
- #pragma mark ============ ELBluetoothManagerDelegate ==============
- -(void)toothbrushReceiveState:(ELBluetoothState)state{
- NSLog(@"bluetoothManagerUpdateBleState = %ld",state);
- }
- -(void)toothbrushReceiveDevices:(NSArray<ELPeripheralModel *> *)devices{
- self.devices = devices;
- [self.tableView reloadData];
- }
-
- -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
- return self.devices.count;
- }
- -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
- return 60;
- }
- -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
- static NSString *cellId = @"cellid";
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellId];
- if (!cell) {
- cell = [[UITableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:cellId];
- }
- ELPeripheralModel *p = self.devices[indexPath.row];
- cell.textLabel.text = [NSString stringWithFormat:@"Name:%@ Mac:%@ rssi:%ld \nCID:0x%04lX(%ld) VID:0x%04lX(%ld) PID:0x%04lX(%ld)", p.deviceName, p.macAddress, p.rssi, (unsigned long)p.cid, p.cid, (long)p.vid, p.vid, (long)p.pid, p.pid];
- cell.textLabel.numberOfLines = 2;
- cell.textLabel.textColor = [UIColor blackColor];
-
- return cell;
-
- }
- -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
- ELPeripheralModel *p = self.devices[indexPath.row];
- ToothbrushConnectionViewController *vc = [[ToothbrushConnectionViewController alloc] init];
- vc.p = p;
- [self.navigationController pushViewController:vc animated:YES];
- }
- -(UITableView *)tableView{
- if (_tableView == nil) {
- _tableView = [[UITableView alloc] init];
- _tableView.delegate = self;
- _tableView.dataSource = self;
- }
- return _tableView;
- }
-
- @end
|