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.
powersync-core/server/radio433.h
2013-12-30 16:10:03 +01:00

21 lines
261 B
C++

#ifndef RADIO433_H
#define RADIO433_h
#include <QObject>
class Radio433: public QObject
{
Q_OBJECT
public:
Radio433(QObject *parent = 0);
public:
void sendData(QList<int> rawData);
signals:
void dataReceived(QList<int> rawData);
};
#endif