* @brief Get the service BLE Remote Service instance corresponding to the uuid. * @param [in] uuid The UUID of the service being sought. * @return A reference to the Service or nullptr if don't know about it. */
| 292 | * @return A reference to the Service or nullptr if don't know about it. |
| 293 | */ |
| 294 | BLERemoteService *BLEClient::getService(const char *uuid) { |
| 295 | return getService(BLEUUID(uuid)); |
| 296 | } // getService |
| 297 | |
| 298 | /** |
| 299 | * @brief Get the service object corresponding to the uuid. |
no test coverage detected