diff --git a/IRremote.h b/IRremote.h index fe1a870..d12c978 100644 --- a/IRremote.h +++ b/IRremote.h @@ -79,6 +79,9 @@ #define DECODE_LEGO_PF 0 // NOT WRITTEN #define SEND_LEGO_PF 1 +#define DECODE_NERF_LOP 0 // NOT WRITTEN +#define SEND_NERF_LOP 1 + //------------------------------------------------------------------------------ // When sending a Pronto code we request to send either the "once" code // or the "repeat" code @@ -119,6 +122,7 @@ typedef DENON, PRONTO, LEGO_PF, + NERF_LOP, } decode_type_t; @@ -251,6 +255,10 @@ class IRrecv # if DECODE_LEGO_PF bool decodeLegoPowerFunctions (decode_results *results) ; # endif +//...................................................................... +# if DECODE_NERF_LOP + bool decodeNerfLOP (decode_results *results) ; +# } ; //------------------------------------------------------------------------------ @@ -339,6 +347,10 @@ class IRsend # if SEND_LEGO_PF void sendLegoPowerFunctions (uint16_t data, bool repeat = true) ; # endif +//...................................................................... +# if SEND_NERF_LOP + void sendNerfLOP (uint16_t data, bool repeat = true) ; +# endif } ; #endif