Infrared Remote Control

Have you ever needed a cheap way to activate something from across the room? Infrared remotes are still the cheapest way to wirelessly control a device. We have designed this remote to be small, very simple, and low-cost. For the majority of the projects we build, we don't need 34 buttons, we need one or two. We just wanted to provide you with a cheap and easy to use remote!

Our infrared remote control offers buttons for four directions, power, select, and three optional use buttons (labled "A," "B," and "C"). Unfortunately we can't guarantee that it will work with your Stuart Hughes' PrestigeHD Supreme Rose Edition though. Rather, we are carrying this remote to work with many of the more common IR receiver ICs.

Note: The unit does NOT come with a CR2025 coin cell battery (check below). You can use a CR2032 battery, but we found they get stuck easily because they're slightly too thick. It's recommended that you use the CR2025, it fits well.

Infrared Remote Control Product Help and Resources

IR Communication

February 7, 2013

This tutorial explains how common infrared (IR) communication works, as well as shows you how to set up a simple IR transmitter and receiver with an Arduino.

SparkFun WiFi IR Blaster Hookup Guide

December 6, 2018

How to assemble the WiFi IR Blaster and program it using Arduino. You'll be controlling IR devices from the web in no time!

IR Control Kit Hookup Guide

October 2, 2013

How to get the most out of the infrared receivers and transmitters included in the IR Control Kit.

Core Skill: Electrical Prototyping

If it requires power, you need to know how much, what all the pins do, and how to hook it up. You may need to reference datasheets, schematics, and know the ins and outs of electronics.

1 Electrical Prototyping

Skill Level: Noob - You don't need to reference a datasheet, but you will need to know basic power requirements.
See all skill levels


Comments

Looking for answers to technical questions?

We welcome your comments and suggestions below. However, if you are looking for solutions to technical questions please see our Technical Assistance page.

  • Level128 / about 3 years ago / 1

    Remote uses the NEC protocol.

  • Member #1620720 / about 4 years ago / 1

    Does this remote use NEC protocol?

    • santaimpersonator / about 4 years ago / 1

      Hi there, it sounds like you are looking for technical assistance. Please use the link in the banner above, to get started with posting a topic in our forums. Our technical support team will do their best to assist you.

      That being said, here is a link to the product's tutorial.

  • nootropic / about 5 years ago / 1

    This new version of the remote is NOT the same as the version it replaces (COM-11759). It emits different codes, so software developed with COM-11759 will not work with this remote, and the Sparkfun example code will not work.

    Here are the codes for this new version COM-14865:

    #define POWER 0x00FF629D
    #define A 0x00FF22DD
    #define B 0x00FF02FD
    #define C 0x00FFC23D
    #define UP 0x00FF9867
    #define DOWN 0x00FF38C7
    #define LEFT 0x00FF30CF
    #define RIGHT 0x00FF7A85
    #define SELECT 0x00FF18E7
    

    • You are correct about the hex codes for the remotes being different. However, I did update the tutorial a while back when this product was released to reflect the new remote => IR Control Kit Hookup Guide. The code listed in the tutorial and GitHub repo should work as expected with the different hex codes.

  • RubenFixit / about 5 years ago * / 1

    I just discovered that this little remote really has 21 buttons, but only 9 of the 21 buttons are available! It would be a killer feature to have a cheap IR remote like this with at least two button plates: 1. The standard one you have here 2. One with all 21 buttons with generic labels (grid style A1 - C7) or (the HEX codes)

    Also include little stickers to put over the buttons so we can customize our own remote. :)

Customer Reviews

4 out of 5

Based on 1 ratings:

Currently viewing all customer reviews.

It has turned out to be better than I expected

When I bought this remote, other than running the example in the IR Control kit Hookup Guide. I wasn't sure what to do with it. I then decided to write an arduino code that runs Attiny85 for 90secs before putting it to sleep. An IR receiver hooked to Attiny85 sends an interrupt to wake it up. When awake the ATTiny85 powers up my Ardino pro mini that has a distance sensor that lights up a tricolor led to a green color but if an object gets to within a 1/4 inch the LED turns red.

I installed this setup in my car garage. Now when I drive into the garage, I press the power button on the IR remote which powers up my ATTiny85 which then runs my Arduino pro mini. The attached sensor on Arduino pro mini monitors my car distance and when the car is fully in the garage the LED (at the head of the garage) turns red to let me know I can stop.

The remote works great and I love it. The only short fall, the IR signal is weak, so I often need to drive closer than I want to into the garage for the IR receiver to pick up the IR Controller signal. Hence the 4 stars rather than 5 stars. It would be nice if it could be given more power so it can work from a distance of at least 20 feet.