OMOTE/Platformio/src/infrared.h
2024-01-22 17:44:23 +01:00

14 lines
221 B
C

#ifndef __INFRARED_H__
#define __INFRARED_H__
#include <IRsend.h>
#include <IRrecv.h>
#define IR_LED 33 // IR LED output
// IR declarations
extern IRsend IrSender;
void init_infrared(void);
#endif /*__INFRARED_H__*/