Updated irRecv.h to include Nerf LOP

This commit is contained in:
Wieland Schöbl
2018-12-27 17:05:33 +01:00
committed by GitHub
parent a963e85e8c
commit 09d9e3a28d

View File

@@ -90,6 +90,11 @@ int IRrecv::decode (decode_results *results)
if (decodeLegoPowerFunctions(results)) return true ; if (decodeLegoPowerFunctions(results)) return true ;
#endif #endif
#if DECODE_NERF_LOP
DBG_PRINTLN("Attempting Nerf Laser Ops Pro Functions");
if (decodeNerfLOP(results)) return true ;
#endif
// decodeHash returns a hash on any input. // decodeHash returns a hash on any input.
// Thus, it needs to be last in the list. // Thus, it needs to be last in the list.
// If you add any decodes, add them before this. // If you add any decodes, add them before this.