* @brief Returns the discovered BLE services with a leading placeholder entry. */
| 757 | * @brief Returns the discovered BLE services with a leading placeholder entry. |
| 758 | */ |
| 759 | QStringList IO::Drivers::BluetoothLE::serviceNames() const |
| 760 | { |
| 761 | QStringList list; |
| 762 | list.append(tr("Select Service")); |
| 763 | list.append(m_serviceNames); |
| 764 | return list; |
| 765 | } |
| 766 | |
| 767 | /** |
| 768 | * @brief Returns the discovered BLE characteristics with a leading placeholder. |
no test coverage detected