Roland Dobai 37126d3451 Correct Kconfigs according to the coding style пре 7 година
..
main 37126d3451 Correct Kconfigs according to the coding style пре 7 година
tutorial fe7fd3bf4d Component/bt: fix connection interval error in slave adv params пре 7 година
CMakeLists.txt d9939cedd9 cmake: make main a component again пре 7 година
Makefile 382999b378 Moved examples to new folders / categories. Removed example numbers from example names пре 9 година
README.md e22f8ad1aa component/bt: Update BLE examples tutorials and ReadMe files пре 8 година
sdkconfig.defaults ee787085f9 component/bt : decrease memory consumption by conn number пре 7 година

README.md

ESP-IDF Gatt Server Demo

This is the demo of APIs to create a GATT service by adding attributes one by one. However, this method is defined by Bluedroid and is difficult for users to use.

Hence, we also allow users to create a GATT service with an attribute table, which releases the user from adding attributes one by one. And it is recommended for users to use. For more information about this method, please refer to gatt_server_service_table_demo.

This demo creates GATT a service and then starts advertising, waiting to be connected to a GATT client.

To test this demo, we can run the gatt_client_demo, which can scan for and connect to this demo automatically. They will start exchanging data once the GATT client has enabled the notification function of the GATT server.

Please check the tutorial for more information about this example.