- Dec 12, 2022
- 357
- 2
This example is based on the new PeripheralManager type introduced in iBLE v2.00.
Please start with this tutorial:
There are three programs: BlePeripheral, BleCentral_iOS and BleCentral_Android
BlePeripheral is the one that implements the peripheral role.
The other devices will connect to the peripheral and communicate with it. The peripheral will relay the messages to all connected devices.
The code is quite simple. I will go over some interesting points:
- The peripheral stores the connected central ids in a Map (as keys). This makes it easy to add or remove centrals without needing to deal with duplicates.
- The centrals maintain a list with the messages that need to be sent. Only one message can be sent at a time so when WriteComplete is raised the next message is sent.
- In B4i we need to call WriteWithResponse instead of Write as a response is expected. In B4A it...
Please start with this tutorial:
برای دیدن لینک ها باید ثبت نام کنید
There are three programs: BlePeripheral, BleCentral_iOS and BleCentral_Android
BlePeripheral is the one that implements the peripheral role.
The other devices will connect to the peripheral and communicate with it. The peripheral will relay the messages to all connected devices.
The code is quite simple. I will go over some interesting points:
- The peripheral stores the connected central ids in a Map (as keys). This makes it easy to add or remove centrals without needing to deal with duplicates.
- The centrals maintain a list with the messages that need to be sent. Only one message can be sent at a time so when WriteComplete is raised the next message is sent.
- In B4i we need to call WriteWithResponse instead of Write as a response is expected. In B4A it...
برای دیدن لینک ها باید ثبت نام کنید
برای دیدن لینک ها باید ثبت نام کنید