mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
12 lines
179 B
C
12 lines
179 B
C
|
#ifndef IRREMOTETOOLS_H
|
||
|
#define IRREMOTETOOLS_H
|
||
|
|
||
|
extern void beginIRremote();
|
||
|
|
||
|
extern bool IRrecived();
|
||
|
|
||
|
extern void resumeIRremote();
|
||
|
|
||
|
extern unsigned long getIRresult();
|
||
|
|
||
|
#endif
|