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.
2014-01-01 21:22:14 +01:00

26 lines
532 B
C++

#ifndef RFREMOTEINTERTECHNO_H
#define RFREMOTEINTERTECHNO_H
#include "deviceplugin.h"
class RfRemoteIntertechno : public DevicePlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.hiveyourhome.DevicePlugin" FILE "rfremoteintertechno.json")
Q_INTERFACES(DevicePlugin)
public:
explicit RfRemoteIntertechno();
void init() override;
QList<DeviceClass> supportedDevices() const override;
QString pluginName() const;
private slots:
void dataReceived(QList<int> rawData);
};
#endif // RFREMOTEINTERTECHNO_H