I have been working on ble mesh between nRF and esp. my nRF requests an OOB integer. ESP receives this information in the call-back -
Code: Select all
void prov_callback(esp_ble_mesh_prov_cb_event_t event,
esp_ble_mesh_prov_cb_param_t *param)
{
switch (event)
{
case ESP_BLE_MESH_PROVISIONER_PROV_INPUT_EVT:
{
How would I go about doing this?