Difference between revisions of "Sparkfun: IR Receiver Breakout Board"

From eLinux.org
Jump to: navigation, search
(Testing and Results)
Line 29: Line 29:
  
 
To test the operation of this device, I wrote a test script for the BeagleBone that repeatedly transmits an ascii 'c' char to the IR Receiver. I used a bitrate of 1kHz to transmit. With an 8-bit char, that gives a character transmit rate of 125Hz. While that is not particularly fast this rate allowed for accurate testing of the rise time for this device, which as can be seen in the figure below was measured on an oscilloscope to be 225us. By the measured rise time value, the maximum bit rate is around 4.4kHz.
 
To test the operation of this device, I wrote a test script for the BeagleBone that repeatedly transmits an ascii 'c' char to the IR Receiver. I used a bitrate of 1kHz to transmit. With an 8-bit char, that gives a character transmit rate of 125Hz. While that is not particularly fast this rate allowed for accurate testing of the rise time for this device, which as can be seen in the figure below was measured on an oscilloscope to be 225us. By the measured rise time value, the maximum bit rate is around 4.4kHz.
 +
 +
[[File:Piezo-breadboard-layout.jpg|thumb |alt=Example alt text |This is and example layout of the piezo vibration sensor using an op amp and the beagle board.]]
  
 
The code used to perform this testing is available on github.com. Use the following to download it.
 
The code used to perform this testing is available on github.com. Use the following to download it.

Revision as of 10:37, 29 September 2012


This Page is Still Under Construction

Background Information

Model: TSOP85338

Sample Rate: 38kHz

VDD: 2.5V-5.5V

Sending a Signal

The TSOP85338 operates with a carrier frequency of 38kHz. That is, when the IR sensor is receiving an IR signal that is being modulated at 38kHz it outputs a logic 0. Using the BeagleBone to send a message to the TSOP85338 can be done using one of its PWM outputs. To perform testing of these attributes, ehrpwm1:0 can be used. By setting the duty_freq to 38000 and duty_percent to 50, it is possible to toggle an IR LED which if received by the sensor will output a logic 0. If the TSOP85338 is not receiving this modulated IR signal, it outputs a logic 1.

Reading Using Interrupts and GPIO

Receiving a signal from the TSOP85338 can be done on the BeagleBone using its gpio pins. In order to do this, the bitrate must be known initially or measured somehow. Once the bitrate is known, you can write a program that waits until an interrupt is received on a particular gpio pin that triggers on "both" edges. Essentially this will wait for the output of the TSOP85338 to change states. After it triggers, you can read the data received at intervals that match the bitrate until the message is received. This can be done for a set number of bits or until a terminating sequence occurs (user defined). Ex) if transmitting 8-bit char values, you can wait for a \0 ascii character to know that the message has been received.

If working in C, poll.h has some nice tools that can be used to create your interrupts.

This is not the best method to read the sensor with as the Operating System can get in the way of reading exactly on time

using UART or the PRU (Programmable Real-Time Unit) would prove much more efficient.

Testing and Results

All measurements and tests were performed using a 5V source

To test the operation of this device, I wrote a test script for the BeagleBone that repeatedly transmits an ascii 'c' char to the IR Receiver. I used a bitrate of 1kHz to transmit. With an 8-bit char, that gives a character transmit rate of 125Hz. While that is not particularly fast this rate allowed for accurate testing of the rise time for this device, which as can be seen in the figure below was measured on an oscilloscope to be 225us. By the measured rise time value, the maximum bit rate is around 4.4kHz.

Example alt text
This is and example layout of the piezo vibration sensor using an op amp and the beagle board.

The code used to perform this testing is available on github.com. Use the following to download it.

   git clone https://github.com/millerap/IRReceiverBreakoutBoard

Reading Using PRU

Resources

DataSheet & Schematic: TSOP85338 Page on Sparkfun.com

Consumer IR: Wikipedia page on CIR