Editing Experimenting with IR Remotes using a PIC running BoostC Project

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 2: Line 2:
  
 
*Name: Experimenting with IR Remotes using a PIC running BoostC Project
 
*Name: Experimenting with IR Remotes using a PIC running BoostC Project
*Status: done, until enhanced
+
*Status: draft almost ready
 
*Technology: PIC microcontroller, slavaged IR reciever, running with code in BoostC  
 
*Technology: PIC microcontroller, slavaged IR reciever, running with code in BoostC  
 
*Author: [[russ_hensel]] ( where you can find an email address to reach me )
 
*Author: [[russ_hensel]] ( where you can find an email address to reach me )
Line 12: Line 12:
  
 
Platform: PIC16F877A using BoostC connected via rs232 to a PC running a terminal program.  The PIC chip is supplemented with a slavaged IR reciever.
 
Platform: PIC16F877A using BoostC connected via rs232 to a PC running a terminal program.  The PIC chip is supplemented with a slavaged IR reciever.
 
This code may be used as part of a user interface into a larger project.  One pin supports all the buttons on a remote, and a universal remote is only about $10. and works remotely.
 
  
 
== Hardware ==
 
== Hardware ==
Line 25: Line 23:
 
=== Schematic ===
 
=== Schematic ===
  
I think you can figure this out, if not take a look at another project like [[PIC based Stepper Motor Dancing Analog Clock]]
+
[[Image:pending.png | Schematic]]
  
Parts
+
Parts -- this is not up to date, working on it
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 43: Line 41:
 
<!--------------------------------
 
<!--------------------------------
 
|-valign="top"
 
|-valign="top"
|IR three terminal receiver.
+
|Stepper Motor
 
|I used a salvage one I had lying around.
 
|I used a salvage one I had lying around.
 
<!--------------------------------
 
<!--------------------------------
Line 49: Line 47:
 
|
 
|
 
|
 
|
<!--------------------------------
+
<!-------------------------------->
 
|-valign="top"
 
|-valign="top"
 
|Power supply splitting resistors, form a pseodo ground at about 2.5 volts.
 
|Power supply splitting resistors, form a pseodo ground at about 2.5 volts.
 
|100 more or less
 
|100 more or less
<!--------------------------------
+
<!-------------------------------->
 
|-valign="top"
 
|-valign="top"
 
|RIN
 
|RIN
 
|about 5 to 10 K   
 
|about 5 to 10 K   
<!--------------------------------
+
<!-------------------------------->
 
|-valign="top"
 
|-valign="top"
 
|RFB
 
|RFB
Line 65: Line 63:
 
|xx
 
|xx
 
|
 
|
<!-------------------------------->
+
<!--------------------------------
 
|-valign="top"
 
|-valign="top"
 
|Q = crystal
 
|Q = crystal
Line 81: Line 79:
 
|RRA2, RRA3  = Pull up resistors
 
|RRA2, RRA3  = Pull up resistors
 
|10K more or less
 
|10K more or less
<!-------------------------------->
+
<!--------------------------------
 
|-valign="top"
 
|-valign="top"
 
|C_BP  = By Pass Cap.
 
|C_BP  = By Pass Cap.
|Good idea to add one. A .01 to .1 mfd mica or other by pass cap, good at high frequency seems good.
+
|Not on schematic, good idea to add one. A .01 to .1 mfd mica or other by pass cap, good at high frequency seems good.
 
<!--------------------------------
 
<!--------------------------------
 
|-valign="top"
 
|-valign="top"
Line 97: Line 95:
 
|PUSH_BUTTON_SWITCH  = Reset
 
|PUSH_BUTTON_SWITCH  = Reset
 
|Push to reset the processor.  Mine was from salvage.
 
|Push to reset the processor.  Mine was from salvage.
 +
<!--------------------------------
 
<!--------------------------------
 
<!--------------------------------
 
|-valign="top"
 
|-valign="top"
Line 191: Line 190:
 
== Microcontroller Program  ==
 
== Microcontroller Program  ==
  
=== Design -- Polling Routine ===
+
=== Design ===
 
 
The code in the download files is the project \IR.
 
  
 
If you look at the subroutine readIR( void ) you will see the heart of the IR receive.  The routine loops each time checking to see if the output of the detector has changed.  If it has not it adds one to the period, if it has it records the period and resets the period to 0.  When the input goes quiet for a while it is taken as the end of the signal and we exit. Pretty simple.
 
If you look at the subroutine readIR( void ) you will see the heart of the IR receive.  The routine loops each time checking to see if the output of the detector has changed.  If it has not it adds one to the period, if it has it records the period and resets the period to 0.  When the input goes quiet for a while it is taken as the end of the signal and we exit. Pretty simple.
Line 212: Line 209:
 
I have tried to do a good job commenting the program, try reading them for more info.  Comments on the comments, email me [[russ_hensel]].
 
I have tried to do a good job commenting the program, try reading them for more info.  Comments on the comments, email me [[russ_hensel]].
  
Note that the design blocks other activities in the software once the interrupt is triggered.  This lasts about .1 seconds.  I think the next itteration of the software should interrupt on each bit ( not just the starting bit ) and a timer should be used to time the bits.  Then other tasks using either the main loop or other interrupts would not suffer much inpact.  I will work on this at some future time ( update, I have an almost complete implementation Jan 9 09, should post fairly soon ).  Do you have some code? Add your material here.
+
Note that the design blocks other activities in the software once the interrupt is triggered.  This lasts about .1 seconds.  I think the next itteration of the software should interrupt on each bit ( not just the starting bit ) and a timer should be used to time the bits.  Then other tasks using either the main loop or other interrupts would not suffer much inpact.  I will work on this at some future time, or perhaps you would like to do it for me? Add your material here.
  
Some credit should be given to John Main [http://www.best-microcontroller-projects.com/infrared-receiver.html] whose code I studied to aid in writing this.
 
  
 
Control of the software is via the serial communications library that I have described in other articles including [[Serial Communications Library -- BoostC and 16F877A]].  It yields a command driven interface with the following commands.
 
Control of the software is via the serial communications library that I have described in other articles including [[Serial Communications Library -- BoostC and 16F877A]].  It yields a command driven interface with the following commands.
Line 284: Line 280:
  
 
|}
 
|}
 
 
=== Design -- Interrupt Driven Routine ===
 
 
This is similar to the design above but the IR sections have be rewritten to use interrupts.  For an explanation see: [[A Tutorial on PIC interrupts using BoostC including Example Programs]]  The code in the download files is the project \IIR.  This version is probably much better for use in a project than the non interrupt code, but was harder to code, and may be harder to understand.  It only decodes the NEC ( inc Toshiba ) codes, others are logged for timing.
 
  
 
=== Notes on the NEC Decoding ===
 
=== Notes on the NEC Decoding ===
Line 305: Line 296:
 
The program seems to be safely under the 2K free compiler limit.
 
The program seems to be safely under the 2K free compiler limit.
  
== Other Things to Try/Additions/Changes/Modification ==
+
== Other Things to Try ==
 +
 
 +
== Additions/Changes/Modification ==
  
 
* The 877A is way overkill for this project unless you make it do a bit more.  Note that only 1 input pin ( with interrupt capabability ) plus the serial lines are really used.
 
* The 877A is way overkill for this project unless you make it do a bit more.  Note that only 1 input pin ( with interrupt capabability ) plus the serial lines are really used.
  
* Make more interrupt driven.
 
 
* Decode other brands of remotes.
 
  
 
== Possibly useful links ==
 
== Possibly useful links ==
Line 329: Line 319:
 
== Download ==
 
== Download ==
  
[http://home.comcast.net/~russ_hensel/OC/IRCode.zip   Both sets of code in IRCode.zip]
+
pending, not at: [http://home.comcast.net/~russ_hensel/OC/StepperTest_v1.zip Version 1 zip file: StepperTest_v1.zip]
  
 
== Comment, Questions, Contributions? ==
 
== Comment, Questions, Contributions? ==
Line 335: Line 325:
 
Email me [[russ_hensel]], or use the talk page for this topic.  All feedback is welcome.
 
Email me [[russ_hensel]], or use the talk page for this topic.  All feedback is welcome.
  
[[category:projects]][[category:Serial Communications]][[category:Microcontroller]][[category:PIC]][[category:BoostC]]
+
[[category:projects]]

Please note that all contributions to OpenCircuits may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see OpenCircuits:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)