* @brief Write data represented as a string to the BLE Remote Descriptor. * @param [in] newValue The data to send to the remote descriptor. * @param [in] response True if we expect a response. */
| 133 | * @param [in] response True if we expect a response. |
| 134 | */ |
| 135 | bool BLERemoteDescriptor::writeValue(String newValue, bool response) { |
| 136 | return writeValue((uint8_t *)newValue.c_str(), newValue.length(), response); |
| 137 | } // writeValue |
| 138 | |
| 139 | /** |
| 140 | * @brief Write a byte value to the Descriptor. |
no test coverage detected