IRL Error Was Not Declared In This Scope

I am having some issues with a demo sketch the IRL packs a sad I have the latest Libs for it example versions compile fine but I try this sketch and This is my Error

C:\Program Files (x86)\Arduino\hardware\tools\avr\bin\avr-g++ -c -g -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections -mmcu=atmega328p -DF_CPU=16000000L -MMD -DUSB_VID=null -DUSB_PID=null -DARDUINO=106 -IC:\Program Files (x86)\Arduino\hardware\arduino\cores\arduino -IC:\Program Files (x86)\Arduino\hardware\arduino\variants\eightanaloginputs -IC:\Users\Dave\Documents\Arduino\libraries\FastLED -IC:\Users\Dave\Documents\Arduino\libraries\Button-master -IC:\Users\Dave\Documents\Arduino\libraries\IRLremote C:\Users\Dave\AppData\Local\Temp\build4496982306795488784.tmp\aalight.cpp -o C:\Users\Dave\AppData\Local\Temp\build4496982306795488784.tmp\aalight.cpp.o
In file included from aalight.ino:200:
C:\Users\Dave\Documents\Arduino\libraries\FastLED/FastLED.h:12:2: warning: #warning FastLED version 3001000 (Not really a warning, just telling you here.)
In file included from aalight.ino:202:
C:\Users\Dave\Documents\Arduino\libraries\IRLremote/IRLremote.h:151: warning: 'typedef' was ignored in this declaration
aalight.ino: In function 'void setup()':
aalight:372: error: 'IRLbegin' was not declared in this scope
aalight.ino: In function 'void getirl()':
aalight:468: error: 'IRLavailable' was not declared in this scope
aalight:470: error: 'IRLgetCommand' was not declared in this scope
aalight:505: error: 'IRLreset' was not declared in this scope

The offending bit of code

IRLbegin<IR_ALL>(interruptIR); // IR setup

The offending bit of code

So, fix it. Or post ALL of the code with links to the libraries it uses. We can not tell you what the problem is from seeing one line of code.

I cant post the whole code so Ive included the ino hope this helps

aalight.ino (29.5 KB)

IRLbegin<IR_ALL>(interruptIR);

Should that be:

IRL.begin<IR_ALL>(interruptIR);

with links to the libraries it uses.

You forgot something...