OVMS3-idf/examples/bluetooth/gatt_security_client
2018-08-16 17:14:17 +10:00
..
main Merge branch 'bugfix/bt_fix_incorrect_handle_print' into 'master' 2018-08-14 14:16:53 +08:00
tutorial component/bt: Update BLE examples tutorials and ReadMe files 2018-01-25 16:59:40 +08:00
CMakeLists.txt cmake: Add CMakeLists.txt files for all examples 2018-04-30 09:59:20 +10:00
Makefile Component/bt: add gatt_security_client demo 2017-08-04 16:26:17 +08:00
README.md component/bt: Update BLE examples tutorials and ReadMe files 2018-01-25 16:59:40 +08:00
sdkconfig.defaults Component/bt: add gatt_security_client demo 2017-08-04 16:26:17 +08:00

ESP-IDF Gatt Security Client Demo

This is the demo for users to use ESP BLE security APIs to connect to and encrypt with peer devices.

To test this demo, you can run the gatt_security_server_demo, which starts advertising and can be connected to this demo automatically.

There are some important points for this demo:
1.esp_ble_gap_set_security_param should be used to set the security parameters in the initial stage;
2.esp_ble_set_encryption should be used to start encryption with peer device. If the peer device initiates the encryption, esp_ble_gap_security_rsp should be used to send security response to the peer device when ESP_GAP_BLE_SEC_REQ_EVT is received.
3.The gatt_security_client_demo will receive a ESP_GAP_BLE_AUTH_CMPL_EVT once the encryption procedure has completed.

Please check the tutorial for more information about this example.