Updated Tutorial: IR Sensor @ Adafruit Learning System

Updated Tutorial: IR Sensor @ Adafruit Learning System

IR detectors are little microchips with a photocell that are tuned to listen to infrared light. They are almost always used for remote control detection – every TV and DVD player has one of these in the front to listen for the IR signal from the clicker. In this guide we will explain how IR sensors work, how to pull IR codes out of a remote control, and show you how to wire them up to a microcontroller.

Learn More.


Have an amazing project to share? The Electronics Show and Tell is every Wednesday at 7:30pm ET! To join, head over to YouTube and check out the show’s live chat and our Discord!

Join us every Wednesday night at 8pm ET for Ask an Engineer!

Join over 38,000+ makers on Adafruit’s Discord channels and be part of the community! http://adafru.it/discord

CircuitPython – The easiest way to program microcontrollers – CircuitPython.org


New Products – Adafruit Industries – Makers, hackers, artists, designers and engineers! — New Products 11/15/2024 Featuring Adafruit bq25185 USB / DC / Solar Charger with 3.3V Buck Board! (Video)

Python for Microcontrollers – Adafruit Daily — Python on Microcontrollers Newsletter: A New Arduino MicroPython Package Manager, How-Tos and Much More! #CircuitPython #Python #micropython @ThePSF @Raspberry_Pi

EYE on NPI – Adafruit Daily — EYE on NPI Maxim’s Himalaya uSLIC Step-Down Power Module #EyeOnNPI @maximintegrated @digikey

Adafruit IoT Monthly — The 2024 Recap Issue!

Maker Business – Adafruit Daily — Apple to build another chip at TSMC Arizona

Electronics – Adafruit Daily — SMT Tip – Stop moving around!

Get the only spam-free daily newsletter about wearables, running a "maker business", electronic tips and more! Subscribe at AdafruitDaily.com !


2 Comments

  1. In the Linux kernel there is code that can decode a wide range of IR protocols. It works by running several state machines simultaneously. The code is small and can be easily ported to a microcontroller.

    A timer input pin is commonly used to record the signals. Set it to interrupt on each state change and then read the pulse length from the timer register. Feed this timing info into the kernel’s state machines and you get decoded protocols out.

    The kernel then passes these decoded events up through the input system. Higher layers turn them into key pressed events.

  2. Hmmmee.. I just want to try that one….

Sorry, the comment form is closed at this time.