blob: 60b47956e212b3c3195e13e1617a06b56606659d [file] [log] [blame]
Benjamin Cabéd23d19d2024-08-29 17:32:37 +02001.. zephyr:code-sample:: bluetooth_broadcaster
2 :name: Broadcaster
3 :relevant-api: bluetooth
Yeshvanth M118f37b2021-11-17 22:59:37 +05304
Benjamin Cabéd23d19d2024-08-29 17:32:37 +02005 Periodically send out advertising packets with a manufacturer data element.
Yeshvanth M118f37b2021-11-17 22:59:37 +05306
7Overview
8********
9
10A simple application demonstrating Bluetooth Low Energy Broadcaster role functionality.
11The application will periodically send out advertising packets with
12a manufacturer data element. The content of the data is a single byte
13indicating how many advertising packets the device has sent
14(the number will roll back to 0 after 255).
15
16Requirements
17************
18
19* BlueZ running on the host, or
Benjamin Cabéd1858d22024-09-02 09:25:43 +020020* A board with Bluetooth LE support
Yeshvanth M118f37b2021-11-17 22:59:37 +053021
22Building and Running
23********************
24
25This sample can be found under :zephyr_file:`samples/bluetooth/broadcaster` in the
26Zephyr tree.
27
Benjamin Cabé1db9b002024-09-16 10:55:34 +020028See :zephyr:code-sample-category:`bluetooth` samples for details.