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.
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!
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
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.
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.
Hmmmee.. I just want to try that one….