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.
Simon Stuerz 42027c8cd0 rc 433 receiver working
lib added logWriter
2013-08-18 13:47:18 +02:00

28 lines
418 B
C++

#ifndef RADIOSENDER_H
#define RADIOSENDER_H
#include <QObject>
class RadioSender : public QObject
{
Q_OBJECT
public:
explicit RadioSender(QObject *parent = 0);
private:
// [us]
int m_pulseLength;
void sendSync();
void transmit(int high, int low);
signals:
public slots:
void sendBin(QString codeBin);
void setPulseLength(int pulseLength);
};
#endif // RADIOSENDER_H