You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
535 B
20 lines
535 B
![]()
2 years ago
|
//
|
||
|
// ECellBLENotify.h
|
||
|
// ECellBluetooth
|
||
|
//
|
||
|
// Created by lemo. on 2019/7/28.
|
||
|
// Copyright © 2019 lemo. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef ECellBLENotify_h
|
||
|
#define ECellBLENotify_h
|
||
|
|
||
|
/** 连接成功 */
|
||
|
#define ECellBLENotificationConnected @"ECellBLENotificationConnected"
|
||
|
/** 断开连接通知 */
|
||
|
#define ECellBLENotificationAtDisconnect @"ECellBLENotificationAtDisconnect"
|
||
|
/** 系统蓝牙状态更新 */
|
||
|
#define ECellBLENotificationDidUpdateState @"ECellBLENotificationDidUpdateState"
|
||
|
|
||
|
#endif /* ECellBLENotify_h */
|