TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Jun 2016 |
Maintained by Max Zou.
1-to-1 Chat over Bluetooth LE
screen0 | screen1 | screen2 | screen3 | screen4 | screen5 |
---|---|---|---|---|---|
/**
* UUID of the Chat Server service
*/
extern NSString *const BCChatServiceUUID;
/**
* UUID of the Characteristic for the central to send messages to the peripheral. Write only. The data is UTF8 encoded text.
*/
extern NSString *const BCChatCentralToPeripheralCharacteristicUUID;
/**
* UUID of the Characteristic for the peripheral to send messages to the central. Indicate and Read. The data is UTF8 encoded text.
*/
extern NSString *const BCChatPeripheralToCentralCharacteristicUUID;
/**
* UUID of the Characteristic for the peripheral to tell the central to disconnect. Indicate and Read. The data is a one-byte integer and the value is not checked by the central.
*/
extern NSString *const BCChatPeripheralToCentralDisconnectRequestCharacteristicUUID;
Check BCConstants.m for the UUIDs