蓝牙4.0整理(OC)

记录用。
手机连蓝牙外设,读取信息,发送指令,监控蓝牙状态,数据实时更新(500毫秒一次)。
首先引入

#import<CoreBluetooth/CoreBluetooth.h>

代理<CBCentralManagerDelegate,CBPeripheralDelegate>

//中央管理者 -->管理设备的扫描 --连接 
@property (nonatomic, strong) CBCentralManager *centralManager;

蓝牙一共6种状态,初始化CBCentralManager,系统会调用- (void)centralManagerDidUpdateState:(CBCentralManager *)central代理方法,根据central.state判断蓝牙状态

- (CBCentralManager *)centralManager
{
    if (!_centralManager)
    {
        _centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
    }
    return _centralManager;
}
// 状态更新时调用
- (void)centralManagerDidUpdateState:(CBCentralManager *)central
{
    switch (central.state) {
        case CBManagerStateUnknown:{
            NSLog(@"为知状态");
            self.peripheralState = central.state;
        }
            break;
        case CBManagerStateResetting:
        {
            NSLog(@"重置状态");
            self.peripheralState = central.state;
        }
            break;
        case CBManagerStateUnsupported:
        {
            NSLog(@"不支持的状态");
            self.peripheralState = central.state;
        }
            break;
        case CBManagerStateUnauthorized:
        {
            NSLog(@"未授权的状态");
            self.peripheralState = central.state;
        }
            break;
        case CBManagerStatePoweredOff:
        {
            NSLog(@"关闭状态");
            self.peripheralState = central.state;
            self.getBlueStateBlock(4, @"未开启蓝牙(自动)");
        }
            break;
        case CBManagerStatePoweredOn:
        {
            NSLog(@"开启状态-可用状态");
            self.peripheralState = central.state;
            NSLog(@"%ld",(long)self.peripheralState);
            [self.centralManager scanForPeripheralsWithServices:nil options:nil];
        }
            break;
        default:
            break;
    }
}

注意看上面开启的状态,加入[self.centralManager scanForPeripheralsWithServices:nil options:nil];
这个会让手机开始扫描蓝牙外设。
然后进入代理方法- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral )peripheral advertisementData:(NSDictionary)advertisementData RSSI:(NSNumber *)RSSI
// [NSString stringWithFormat:@"发现蓝牙设备,设备名:%@",peripheral.name];
//iphone会不断扫描周边的蓝牙设备,在里面找到你的外设。

!!重点,尽量和你的硬件工程师连调!!

找到你的蓝牙外设之后,执行[self.centralManager connectPeripheral:peripheral options:nil];连接你的外设

根据(连接成功,失败)连接状态会走两个方法,先说成功的

连接成功进入----->

  • (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
/**
 连接成功
 @param central 中心管理
 @param peripheral 连接成功的设备
 */
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
{
    // 设置设备的代理
    peripheral.delegate = self;
    // services:传入nil  代表扫描所有服务
    [peripheral discoverServices:nil];
}

然后进入- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error

/**
 扫描到对应的特征
 @param peripheral 设备
 @param service 特征对应的服务
 @param error 错误信息
 */
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error
{
    // 遍历所有的特征
    for (CBCharacteristic *characteristic in service.characteristics)
    {
        NSLog(@"特征值:%@",characteristic.UUID.UUIDString);
        NSLog(@"服务server:%@ 的特征:%@, 读写属性:%ld", service.UUID.UUIDString, characteristic, characteristic.properties);
//1.只读
        if ([characteristic.UUID.UUIDString isEqualToString:@"根据协议上的说明放入可读特征字符串"])
        {
            [peripheral setNotifyValue:YES forCharacteristic:characteristic];
        }
//2.读写 发送指令就是写。而且无论读写都会进入一个代理方法,方法我会写在结尾
        if ([characteristic.UUID.UUIDString isEqualToString:@"根据协议上的说明放入可读写特征字符串"])
        {
            //发送指令要根据协议是发送16进制data还是8进制(我是16进制,一样就直接复制,如果是8进制搜去吧)
            NSString *signal = @"你要发送的指令";
          //先转换成16进制字符串,然后转换成16进制data,我都写下面了,找一下
          NSString *signalStr = [self convertStringToHexStr:signal];
          NSData *signalData = [self stringToHexData:signalStr];
          //这里又会执行代理方法mmp
          [peripheral writeValue:signalData forCharacteristic:characteristic  type:CBCharacteristicWriteWithResponse];
        }
    }
}
//将NSString转换成十六进制的字符串则可使用如下方式:
- (NSString *)convertStringToHexStr:(NSString *)str {
    if (!str || [str length] == 0) {
        return @"";
    }
    NSData *data = [str dataUsingEncoding:NSUTF8StringEncoding];
    
    NSMutableString *string = [[NSMutableString alloc] initWithCapacity:[data length]];
    
    [data enumerateByteRangesUsingBlock:^(const void *bytes, NSRange byteRange, BOOL *stop) {
        unsigned char *dataBytes = (unsigned char*)bytes;
        for (NSInteger i = 0; i < byteRange.length; i++) {
            NSString *hexStr = [NSString stringWithFormat:@"%x", (dataBytes[i]) & 0xff];
            if ([hexStr length] == 2) {
                [string appendString:hexStr];
            } else {
                [string appendFormat:@"0%@", hexStr];
            }
        }
    }];
    
    return string;
}
//将16进制的字符串转换成NSData
- (NSData *) stringToHexData:(NSString *)hexStr
{
    int len = [hexStr length] / 2;    // Target length
    unsigned char *buf = malloc(len);
    unsigned char *whole_byte = buf;
    char byte_chars[3] = {'\0','\0','\0'};
    
    int i;
    for (i=0; i < [hexStr length] / 2; i++) {
        byte_chars[0] = [hexStr characterAtIndex:i*2];
        byte_chars[1] = [hexStr characterAtIndex:i*2+1];
        *whole_byte = strtol(byte_chars, NULL, 16);
        whole_byte++;
    }
    
    NSData *data = [NSData dataWithBytes:buf length:len];
    free( buf );
    return data;
}
//写入数据后的回调
//用于检测中心向外设写数据是否成功
- (void)peripheral:(CBPeripheral *)peripheral didWriteValueForCharacteristic:(CBCharacteristic *)characteristic error:(nullable NSError *)error{
NSLog(@"peripheral.name=%@,peripheral.services=%@",peripheral.name,peripheral.services);
    if (error) {  
        NSLog(@"%s, line = %d, erro = %@",__FUNCTION__,__LINE__,error.description);
    }
}
/**
 根据特征读到数据
 @param peripheral 读取到数据对应的设备
 @param characteristic 特征
 @param error 错误信息
 */
- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(nonnull CBCharacteristic *)characteristic error:(nullable NSError *)error
{
    if ([characteristic.UUID.UUIDString isEqualToString:@“外设特征”])
    {
        if (characteristic.value != NULL) {
            NSData *myD = characteristic.value;
            Byte *bytes = (Byte *)[myD bytes];
            //下面是Byte 转换为16进制。
            NSString *hexStr=@"";
            for(int i=0;i<[myD length];i++){
                NSString *newHexStr = [NSString stringWithFormat:@"%x",bytes[i]&0xff];///16进制数
                if([newHexStr length]==1)
                    hexStr = [NSString stringWithFormat:@"%@0%@",hexStr,newHexStr];
                else
                    hexStr = [NSString stringWithFormat:@"%@%@",hexStr,newHexStr];
            }
            char *myBuffer = (char *)malloc((int)[hexStr length] / 2 + 1);
            bzero(myBuffer, [hexStr length] / 2 + 1);
            for (int i = 0; i < [hexStr length] - 1; i += 2) {
                unsigned int anInt;
                NSString * hexCharStr = [hexStr substringWithRange:NSMakeRange(i, 2)];
                NSScanner * scanner = [[NSScanner alloc] initWithString:hexCharStr];
                [scanner scanHexInt:&anInt];
                myBuffer[i / 2] = (char)anInt;
            }
            NSString *unicodeString = [NSString stringWithCString:myBuffer encoding:4];
            NSLog(@"从蓝牙接收到的数据,并转化为NSString=%@<---",unicodeString);
        }
    }
}

完。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,588评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,456评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,146评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,387评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,481评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,510评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,522评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,296评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,745评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,039评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,202评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,901评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,538评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,165评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,415评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,081评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,085评论 2 352

推荐阅读更多精彩内容