64 lines
2.3 KiB
C++
64 lines
2.3 KiB
C++
/*
|
|
* This file is part of openauto project.
|
|
* Copyright (C) 2018 f1x.studio (Michal Szwaj)
|
|
*
|
|
* openauto is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
|
|
* openauto is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with openauto. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <f1x/openauto/btservice/AndroidBluetoothService.hpp>
|
|
|
|
namespace f1x
|
|
{
|
|
namespace openauto
|
|
{
|
|
namespace btservice
|
|
{
|
|
|
|
AndroidBluetoothService::AndroidBluetoothService(uint16_t portNumber)
|
|
{
|
|
serviceInfo_.setAttribute(QBluetoothServiceInfo::ServiceName, "OpenAuto Bluetooth Service");
|
|
serviceInfo_.setAttribute(QBluetoothServiceInfo::ServiceDescription, "AndroidAuto WiFi projection automatic setup");
|
|
serviceInfo_.setAttribute(QBluetoothServiceInfo::ServiceProvider, "f1xstudio.com");
|
|
|
|
//"4de17a00-52cb-11e6-bdf4-0800200c9a66";
|
|
//"669a0c20-0008-f4bd-e611-cb52007ae14d";
|
|
serviceInfo_.setServiceUuid(QBluetoothUuid(QString("4de17a00-52cb-11e6-bdf4-0800200c9a66")));
|
|
|
|
QBluetoothServiceInfo::Sequence publicBrowse;
|
|
publicBrowse << QVariant::fromValue(QBluetoothUuid(QBluetoothUuid::PublicBrowseGroup));
|
|
serviceInfo_.setAttribute(QBluetoothServiceInfo::BrowseGroupList, publicBrowse);
|
|
|
|
QBluetoothServiceInfo::Sequence protocolDescriptorList;
|
|
QBluetoothServiceInfo::Sequence protocol;
|
|
|
|
protocol << QVariant::fromValue(QBluetoothUuid(QBluetoothUuid::Rfcomm))
|
|
<< QVariant::fromValue(portNumber);
|
|
protocolDescriptorList.append(QVariant::fromValue(protocol));
|
|
serviceInfo_.setAttribute(QBluetoothServiceInfo::ProtocolDescriptorList, protocolDescriptorList);
|
|
}
|
|
|
|
bool AndroidBluetoothService::registerService(const QBluetoothAddress& bluetoothAddress)
|
|
{
|
|
return serviceInfo_.registerService(bluetoothAddress);
|
|
}
|
|
|
|
bool AndroidBluetoothService::unregisterService()
|
|
{
|
|
return serviceInfo_.unregisterService();
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|