Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/MideaIR.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@
#define MideaIR_h

#include <stdint.h>
#if defined(ESP8266)
#include <IRremoteESP8266.h>
#include <IRsend.h>
#else
#include <IRremote.h>
#endif

// Uncomment the following line to use old values for mode and fan speed
// #define OLD_MIDEA
Expand Down
5 changes: 5 additions & 0 deletions src/MidearIR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
*/
#include "MideaIR.h"
#include <stdint.h>
#if defined(ESP8266)
#include <IRremoteESP8266.h>
#include <IRsend.h>
#else
#include <IRremote.h>
#endif

MideaIR::MideaIR(IRsend *ref){
/* Initialize the variables with the default values */
Expand Down