Search found 1 match
- Mon Mar 18, 2019 10:50 am
- Forum: ESP-IDF
- Topic: Addition of multiple characteristics to a BLE service
- Replies: 7
- Views: 15812
Re: Addition of multiple characteristics to a BLE service
The recommended way to have multiple characteristics is by using a table to initialise the GATT server. See the example: gatt_server_service_table All the characteristics and descriptors are added at once when the GATT server is started. You don't have to add a characteristic and wait for the charac...