1
0
mirror of https://github.com/seahu/rflink.git synced 2026-01-25 11:25:34 +01:00

first commit

This commit is contained in:
Ondrej Lycka
2017-04-29 03:27:02 +02:00
commit 406093e31d
85 changed files with 25806 additions and 0 deletions

21
RPi_rflink/RawSignal.h Normal file
View File

@@ -0,0 +1,21 @@
#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