mirror of
https://github.com/seahu/rflink.git
synced 2025-12-10 16:07:23 +01:00
22 lines
399 B
C
22 lines
399 B
C
#ifndef _RawSignal_h
|
|
#define _RawSignal_h
|
|
|
|
#include "./arduino/types.h"
|
|
|
|
// flag for end RawSignal thread
|
|
extern bool enableRawScan;
|
|
|
|
//global use prototypes:
|
|
int StartScanEventTheader();
|
|
int StopScanEventTheader();
|
|
void RFLinkHW( void );
|
|
void RawSendRF(void);
|
|
|
|
//local use prototypes:
|
|
void enableReceive();
|
|
void disableReceive();
|
|
boolean ScanEvent();
|
|
void setRawSignal(int RawCodeLength);
|
|
|
|
#endif
|