Hi, Can I use TI (cheap module 2451) as experimental blinky with central NRF52832.Don't need send button command , only UUID (TI:FFE0) check.It is possible?
Thanks
Hi, Can I use TI (cheap module 2451) as experimental blinky with central NRF52832.Don't need send button command , only UUID (TI:FFE0) check.It is possible?
Thanks
I haven't used that central, but I have used the hrs central. First, try viewing advertisements here:
static void on_ble_evt(ble_evt_t* p_ble_evt)
{
ASSERT(p_ble_evt);
uint32_t err_code;
const ble_gap_evt_t* const p_gap_evt = &p_ble_evt->evt.gap_evt;
ASSERT(p_gap_evt);
switch (p_ble_evt->header.evt_id)
{
case BLE_GAP_EVT_ADV_REPORT:
{
// data to view: p_gap_evt->params.adv_report
break;
}
I haven't used that central, but I have used the hrs central. First, try viewing advertisements here:
static void on_ble_evt(ble_evt_t* p_ble_evt)
{
ASSERT(p_ble_evt);
uint32_t err_code;
const ble_gap_evt_t* const p_gap_evt = &p_ble_evt->evt.gap_evt;
ASSERT(p_gap_evt);
switch (p_ble_evt->header.evt_id)
{
case BLE_GAP_EVT_ADV_REPORT:
{
// data to view: p_gap_evt->params.adv_report
break;
}