Configuring IRremote: Difference between revisions

From AnalysIR WiKi
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
'''''[[KontroLIR - Arduino compatible IR remote control|> KontroLIR Home]]'''''
'''''[[KontroLIR - Arduino compatible IR remote control|> KontroLIR Home]]'''''
'''''See update for IRremote 2.5+ below....'''''


First, install the latest copy of the IRremote library (available via [https://github.com/z3t0/Arduino-IRremote/ GitHub])
First, install the latest copy of the IRremote library (available via [https://github.com/z3t0/Arduino-IRremote/ GitHub])
Line 12: Line 14:
* '''Step 1:''' Edit the IRremote file "boarddefs.h around line 190 (ref '''point 4''' in image).
* '''Step 1:''' Edit the IRremote file "boarddefs.h around line 190 (ref '''point 4''' in image).
* '''Step 2:''' Comment out this line for using Timer2  (line #194 above)
* '''Step 2:''' Comment out this line for using Timer2  (line #194 above)
* '''Step 3:''' Uncomment this line for using Timer1  (line #193 above)
* '''Step 3:''' Un-comment this line for using Timer1  (line #193 above)


When completed save the file and restart the Arduino IDE, to make sure the changes are registered.
When completed save the file and restart the Arduino IDE, to make sure the changes are registered.
Line 19: Line 21:
Congratulations you are now ready to use IRremote with KontroLIR. The KontroLIR firmware makes use of and in some cases extends the IRremote library for sending IR signals.
Congratulations you are now ready to use IRremote with KontroLIR. The KontroLIR firmware makes use of and in some cases extends the IRremote library for sending IR signals.


 
'''UPDATE:''' For IRremote version 2.5 & later
The file name is now '''''IRremoteBoardDefs.h''''' and the line number is now circa line  350. The file is now located in the '''''"Private"''''' sub-directory. You need to comment out the line with the '''"#error"''' statement and un-comment the line defining '''"IR_USE_TIMER1"'''


'''''[[KontroLIR - Arduino compatible IR remote control|> KontroLIR Home]]'''''
'''''[[KontroLIR - Arduino compatible IR remote control|> KontroLIR Home]]'''''

Revision as of 12:36, 28 July 2020

> KontroLIR Home

See update for IRremote 2.5+ below....

First, install the latest copy of the IRremote library (available via GitHub)

Once you have the IRremote library installed in your Arduino IDE, you can proceed to the next steps.

Next, you should configure IRremote to work with KontroLIR, which uses pin 9 and Timer1 for IR Tx (vs default of pin 3 and Timer2). Once installed the library folders can typically be found in C:\Users\[USER]\Documents\Arduino\libraries\IRremote\ where [USER] is your username on your PC.

  • Step 1: Edit the IRremote file "boarddefs.h around line 190 (ref point 4 in image).
  • Step 2: Comment out this line for using Timer2 (line #194 above)
  • Step 3: Un-comment this line for using Timer1 (line #193 above)

When completed save the file and restart the Arduino IDE, to make sure the changes are registered.


Congratulations you are now ready to use IRremote with KontroLIR. The KontroLIR firmware makes use of and in some cases extends the IRremote library for sending IR signals.

UPDATE: For IRremote version 2.5 & later The file name is now IRremoteBoardDefs.h and the line number is now circa line 350. The file is now located in the "Private" sub-directory. You need to comment out the line with the "#error" statement and un-comment the line defining "IR_USE_TIMER1"

> KontroLIR Home