Added console application, Fixes #5

This commit is contained in:
Michael Mandl 2017-10-18 22:31:39 +02:00
parent 7143900c22
commit d12eb36ffe
5 changed files with 76 additions and 24 deletions

15
source/sniffer.h Normal file
View file

@ -0,0 +1,15 @@
#pragma once
#include "rc-switch/RCSwitch.h"
class Sniffer
{
private:
RCSwitch m_switch;
public:
Sniffer() = delete;
Sniffer(unsigned int pin);
unsigned int receive();
};