This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Michael Zanetti a6725ec4e9 add initial support for pairing devices (Only CreateMethodDiscovery and SetupMethodPushButton so far)
implement an initial Philips Hue plugin to test it
add a python script to test stuff
2019-04-01 20:47:51 +02:00

51 lines
1.2 KiB
C++

/*
* Copyright 2013 Christian Muehlhaeuser
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 2.
*
* This program 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Christian Muehlhaeuser <muesli@gmail.com>
* Michael Zanetti <michael_zanetti@gmx.net>
*/
#ifndef DISCOVERY_H
#define DISCOVERY_H
#include <QUdpSocket>
#include <QHostAddress>
class QTimer;
class Discovery: public QUdpSocket
{
Q_OBJECT
public:
Discovery(QObject *parent);
bool findBridges(int timeout);
signals:
void error();
void discoveryDone(QList<QHostAddress> bridges);
private slots:
void onTimeout();
void onReadyRead();
private:
QList<QHostAddress> m_reportedBridges;
QTimer *m_timeout;
};
#endif