16 lines
185 B
C
16 lines
185 B
C
|
#pragma once
|
||
|
|
||
|
#include "rc-switch/RCSwitch.h"
|
||
|
|
||
|
class Sniffer
|
||
|
{
|
||
|
private:
|
||
|
RCSwitch m_switch;
|
||
|
|
||
|
public:
|
||
|
Sniffer() = delete;
|
||
|
Sniffer(unsigned int pin);
|
||
|
|
||
|
unsigned int receive();
|
||
|
};
|