Updated irRecv.h to include Nerf LOP

This commit is contained in:
2018-12-27 17:05:33 +01:00
committed by GitHub
parent c1993b9c10
commit 793ea06011

View File

@@ -90,6 +90,11 @@ int IRrecv::decode (decode_results *results)
if (decodeLegoPowerFunctions(results)) return true ;
#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.
// Thus, it needs to be last in the list.
// If you add any decodes, add them before this.