* @brief Returns the discovered BLE characteristics with a leading placeholder. */
| 768 | * @brief Returns the discovered BLE characteristics with a leading placeholder. |
| 769 | */ |
| 770 | QStringList IO::Drivers::BluetoothLE::characteristicNames() const |
| 771 | { |
| 772 | QStringList list; |
| 773 | list.append(tr("Select Characteristic")); |
| 774 | list.append(m_characteristicNames); |
| 775 | return list; |
| 776 | } |
| 777 | |
| 778 | /** |
| 779 | * @brief Returns the UUID of the currently selected service, or an empty string. |
no test coverage detected