Is there an example application for BLE beacons( particularly eddystone) on the 43907 ?

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
user_2277696
Level 1
Level 1

I have just started on this project, and it would be useful to have a reference project .

Thanks in advance!

0 Likes
1 Solution
Anonymous
Not applicable

Hi,

There is no beacon exaample for 43907 platform yet, but it is easy to implement, once you how how to start advertisement, change advertisement packets and configure timer in your project.

In WICED Studio SDK, in 43xxx_Wifi platform / Apps / Demo / Bluetooth / ble_hello_sensor project can be used as a reference to learn how advertisement is started and advertisement data is set (using wiced_bt_start_advertisements and wiced_bt_ble_set_raw_advertisement_data respectively).

The Adv timing intervals and timeouts are set in the wiced_bt_cfg.c file in the same project.

You can refer to many other examples projects in the SDK to see how timers are implemented.

Regards,

-Madhu Sudhan

View solution in original post

2 Replies
Anonymous
Not applicable

Hi,

There is no beacon exaample for 43907 platform yet, but it is easy to implement, once you how how to start advertisement, change advertisement packets and configure timer in your project.

In WICED Studio SDK, in 43xxx_Wifi platform / Apps / Demo / Bluetooth / ble_hello_sensor project can be used as a reference to learn how advertisement is started and advertisement data is set (using wiced_bt_start_advertisements and wiced_bt_ble_set_raw_advertisement_data respectively).

The Adv timing intervals and timeouts are set in the wiced_bt_cfg.c file in the same project.

You can refer to many other examples projects in the SDK to see how timers are implemented.

Regards,

-Madhu Sudhan

Anonymous
Not applicable

Also, you can refer to the MyBeacon project in the 20706 platform, which will be a useful reference to make a similar project in 43907 embedded platform.