Benjamin Cabé | d23d19d | 2024-08-29 17:32:37 +0200 | [diff] [blame] | 1 | .. zephyr:code-sample:: bluetooth_broadcaster |
| 2 | :name: Broadcaster |
| 3 | :relevant-api: bluetooth |
Yeshvanth M | 118f37b | 2021-11-17 22:59:37 +0530 | [diff] [blame] | 4 | |
Benjamin Cabé | d23d19d | 2024-08-29 17:32:37 +0200 | [diff] [blame] | 5 | Periodically send out advertising packets with a manufacturer data element. |
Yeshvanth M | 118f37b | 2021-11-17 22:59:37 +0530 | [diff] [blame] | 6 | |
| 7 | Overview |
| 8 | ******** |
| 9 | |
| 10 | A simple application demonstrating Bluetooth Low Energy Broadcaster role functionality. |
| 11 | The application will periodically send out advertising packets with |
| 12 | a manufacturer data element. The content of the data is a single byte |
| 13 | indicating how many advertising packets the device has sent |
| 14 | (the number will roll back to 0 after 255). |
| 15 | |
| 16 | Requirements |
| 17 | ************ |
| 18 | |
| 19 | * BlueZ running on the host, or |
Benjamin Cabé | d1858d2 | 2024-09-02 09:25:43 +0200 | [diff] [blame] | 20 | * A board with Bluetooth LE support |
Yeshvanth M | 118f37b | 2021-11-17 22:59:37 +0530 | [diff] [blame] | 21 | |
| 22 | Building and Running |
| 23 | ******************** |
| 24 | |
| 25 | This sample can be found under :zephyr_file:`samples/bluetooth/broadcaster` in the |
| 26 | Zephyr tree. |
| 27 | |
Benjamin Cabé | 1db9b00 | 2024-09-16 10:55:34 +0200 | [diff] [blame] | 28 | See :zephyr:code-sample-category:`bluetooth` samples for details. |