Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Irremoteesp8266 | 2,578 | 21 days ago | 42 | lgpl-2.1 | C++ | |||||
Infrared remote library for ESP8266/ESP32: send and receive infrared signals with multiple protocols. Based on: https://github.com/shirriff/Arduino-IRremote/ | ||||||||||
Arduino Heatpumpir | 338 | a month ago | 51 | gpl-2.0 | C++ | |||||
An Arduino library to control split-unit heatpumps over Infrared | ||||||||||
Tcmenu | 224 | 2 | 1 | 18 days ago | 32 | June 01, 2022 | 13 | apache-2.0 | Java | |
Menu library for Arduino, mbed and ESP with designer UI and remote control capabilities. | ||||||||||
Somfy_remote | 165 | 2 years ago | other | C++ | ||||||
An Arduino Sketch able to simulate a Somfy remote control | ||||||||||
Knobby | 142 | 2 months ago | mit | C | ||||||
A little ESP32 Spotify remote to remind you that there's a lot of music out there. | ||||||||||
Micro_rc_receiver | 120 | a year ago | other | C | ||||||
An Atmega328P based 2.4GHz receiver with integrated TB6612FNG motor driver. PWM and SBUS outputs. | ||||||||||
Hugo Esp8266 | 104 | 4 months ago | mit | C++ | ||||||
Hugo is a 4-button ESP8266 Wi-Fi Remote, Arduino compatible and simple to use. | ||||||||||
Tree V2 | 104 | 3 years ago | 18 | gpl-3.0 | C++ | |||||
6.5’ white tree with 250 WS2811 RGB LEDs, driven by an ESP8266 microcontroller using the FastLED library, controlled with a web app over WiFi and/or an infrared remote control. | ||||||||||
Nrf24 Esk8 Remote | 81 | 3 years ago | 7 | gpl-3.0 | Arduino | |||||
A remote used to control an electric skateboard | ||||||||||
Duinodcx | 75 | 10 months ago | 5 | mit | C++ | |||||
WiFi remote controller for the Behringer Ultradrive. |
This library enables you to send and receive infra-red signals on an ESP8266 or an ESP32 using the Arduino framework using common 940nm IR LEDs and common IR receiver modules. e.g. TSOP{17,22,24,36,38,44,48}* demodulators etc.
Version 2.8.6 of the library is now available. You can view the Release Notes for all the significant changes.
Usage of the library has been slightly changed in v2.0. You will need to change your usage to work with v2.0 and beyond. You can read more about the changes required on our Upgrade to v2.0 page.
The library has changed from using constants declared as #define
to
const with
the appropriate naming per the
C++ style guide.
This may potentially cause old programs to not compile.
The most likely externally used #define
s have been aliased for limited
backward compatibility for projects using the old style. Going forward, only the
new kConstantName
style will be supported for new protocol additions.
In the unlikely case, it does break your code, then you may have been referencing
something you likely should not have. You should be able to quickly determine
the new name from the old. e.g. CONSTANT_NAME
to kConstantName
.
Use common sense or examining the library's code if this does affect code.
You can find the details of which protocols & devices are supported here.
Before reporting an issue or asking for help, please try to follow our Troubleshooting Guide first.
Some common answers to common questions and problems are on our F.A.Q. wiki page.
This library uses Doxygen to automatically document the library's API. You can find it here.
IRremoteESP8266
into the "Filter your search..." top right search box.C:\Users\YOURNAME\Documents\Arduino\libraries\
)cd ~/Arduino/libraries
git clone https://github.com/crankyoldgit/IRremoteESP8266.git
cd ~/Arduino/libraries/IRremoteESP8266 && git pull
If you want to contribute to this project, consider:
Available here
This library was originally based on Ken Shirriff's work (https://github.com/shirriff/Arduino-IRremote/)
Mark Szabo has updated the IRsend class to work on ESP8266 and Sebastien Warin the receiving & decoding part (IRrecv class).
As of v2.0, the library was almost entirely re-written with the ESP8266's resources in mind.