Arduino-IRremote/README.md

104 lines
6.7 KiB
Markdown
Raw Normal View History

2015-03-08 07:22:29 +08:00
# IRremote Arduino Library
Available as Arduino library "IRremote"
2015-06-26 06:59:19 +08:00
### [Version 2.5.0](https://github.com/z3t0/Arduino-IRremote/releases)
[![License: GPL v2](https://img.shields.io/badge/License-GPLv2-blue.svg)](https://www.gnu.org/licenses/gpl-2.0)
[![Installation instructions](https://www.ardu-badge.com/badge/IRremote.svg?)](https://www.ardu-badge.com/IRremote)
2015-08-11 04:41:13 +08:00
[![Join the chat at https://gitter.im/z3t0/Arduino-IRremote](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/z3t0/Arduino-IRremote?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![LibraryBuild](https://github.com/z3t0/Arduino-IRremote/workflows/LibraryBuild/badge.svg)](https://github.com/z3t0/Arduino-IRremote/actions)
2015-07-12 05:43:18 +08:00
2015-07-30 14:01:37 +08:00
This library enables you to send and receive using infra-red signals on an Arduino.
2015-03-10 08:54:25 +08:00
Tutorials and more information will be made available on [the official homepage](http://z3t0.github.io/Arduino-IRremote/).
2015-03-08 07:22:29 +08:00
## Installation
Click on the LibraryManager badge above to see the instructions.
## FAQ
2017-08-27 19:41:28 +08:00
- IR does not work right when I use Neopixels (aka WS2811/WS2812/WS2812B)
Whether you use the Adafruit Neopixel lib, or FastLED, interrupts get disabled on many lower end CPUs like the basic arduinos. In turn, this stops the IR interrupt handler from running when it needs to. There are some solutions to this on some processors, [see this page from Marc MERLIN](http://marc.merlins.org/perso/arduino/post_2017-04-03_Arduino-328P-Uno-Teensy3_1-ESP8266-ESP32-IR-and-Neopixels.html)
## Supported Boards
- Arduino Uno / Mega / Leonardo / Duemilanove / Diecimila / LilyPad / Mini / Fio / Nano etc.
- Teensy 1.0 / 1.0++ / 2.0 / 2++ / 3.0 / 3.1 / Teensy-LC; Credits: @PaulStoffregen (Teensy Team)
- Sanguino
2016-07-23 01:31:14 +08:00
- ATmega8, 48, 88, 168, 328
- ATmega8535, 16, 32, 164, 324, 644, 1284,
- ATmega64, 128
- ATtiny 84 / 85
- SAMD21 (receive only)
2017-04-01 14:10:07 +08:00
- ESP32 (receive only)
- ESP8266 is supported in a fork based on an old codebase that isn't as recent, but it works reasonably well given that perfectly timed sub millisecond interrupts are different on that chip. See https://github.com/markszabo/IRremoteESP8266
- Sparkfun Pro Micro
We are open to suggestions for adding support to new boards, however we highly recommend you contact your supplier first and ask them to provide support from their side.
### Hardware specifications
2016-06-26 17:43:22 +08:00
| Board/CPU | Send Pin | Timers |
|--------------------------------------------------------------------------|---------------------|-------------------|
| [ATtiny84](https://github.com/SpenceKonde/ATTinyCore) | **6** | **1** |
| [ATtiny85](https://github.com/SpenceKonde/ATTinyCore) | **1** | **TINY0** |
2016-07-16 04:25:01 +08:00
| [ATmega8](https://github.com/MCUdude/MiniCore) | **9** | **1** |
| [ATmega48, ATmega88, ATmega168, ATmega328](https://github.com/MCUdude/MiniCore) | **3**, 9 | 1, **2** |
2016-06-26 17:43:22 +08:00
| [ATmega1284](https://github.com/MCUdude/MightyCore) | 13, 14, 6 | 1, **2**, 3 |
| [ATmega164, ATmega324, ATmega644](https://github.com/MCUdude/MightyCore) | 13, **14** | 1, **2** |
| [ATmega8535 ATmega16, ATmega32](https://github.com/MCUdude/MightyCore) | **13** | **1** |
| [ATmega64, ATmega128](https://github.com/MCUdude/MegaCore) | **13** | **1** |
| ATmega1280, ATmega2560 | 5, 6, **9**, 11, 46 | 1, **2**, 3, 4, 5 |
| Leonardo (Atmega32u4) | 5, **9**, 13 | 1, 3, **4_HS** |
| [ESP32](http://esp32.net/) | N/A (not supported) | **1** |
| [Sparkfun Pro Micro](https://www.sparkfun.com/products/12640) | **5**, 9, 13 | 1, **3**, 4_HS |
2016-06-26 17:43:22 +08:00
| [Teensy 1.0](https://www.pjrc.com/teensy/) | **17** | **1** |
| [Teensy 2.0](https://www.pjrc.com/teensy/) | **9**, 10, 14 | 1, **3**, 4_HS |
2016-06-26 17:43:22 +08:00
| [Teensy++ 1.0 / 2.0](https://www.pjrc.com/teensy/) | **1**, 16, 25 | 1, **2**, 3 |
| [Teensy 3.0 / 3.1](https://www.pjrc.com/teensy/) | **5** | **CMT** |
| [Teensy-LC](https://www.pjrc.com/teensy/) | **16** | **TPM1** |
2017-07-02 12:53:37 +08:00
### Experimental patches
The following are strictly community supported patches that have yet to make it into mainstream. If you have issues feel free to ask here. If it works well then let us know!
2020-06-22 11:40:07 +08:00
[Arduino 101](https://github.com/z3t0/Arduino-IRremote/issues/481#issue-311243146)
2017-07-02 12:53:37 +08:00
The table above lists the currently supported timers and corresponding send pins, many of these can have additional pins opened up and we are open to requests if a need arises for other pins.
2015-03-16 10:41:46 +08:00
## Usage
2015-07-12 05:43:18 +08:00
- TODO (Check examples for now)
2015-03-16 10:41:46 +08:00
2017-08-27 19:41:28 +08:00
## API documentation
This project documents the library API using [Doxygen](http://www.doxygen.org).
It is planned to make generated and up-to-date API documentation available online.
To generate the API documentation,
Doxygen, as well as [Graphviz](http://www.graphviz.org/) should be installed.
(Note that on Windows, it may be necessary to add the Graphviz binary directory
(something like `C:\Program Files\Graphviz2.38\bin`)
to the `PATH` variable manually.)
With Doxygen and Graphviz installed, issue the command
`doxygen` from the command line in the main project directory, which will
generate the API documentation in HTML format.
The just generated `api-doc/index.html` can now be opened in a browser.
2015-03-08 07:22:29 +08:00
## Contributing
If you want to contribute to this project:
- Report bugs and errors
- Ask for enhancements
- Create issues and pull requests
- Tell other people about this library
2015-07-17 09:47:11 +08:00
- Contribute new protocols
2015-09-29 10:45:55 +08:00
2020-06-22 11:40:07 +08:00
Check [here](https://github.com/z3t0/Arduino-IRremote/blob/master/Contributing.md) for some guidelines.
2016-02-21 14:13:00 +08:00
2015-09-29 10:45:55 +08:00
## Contact
Email: zetoslab@gmail.com
Please only email me if it is more appropriate than creating an Issue / PR. I **will** not respond to requests for adding support for particular boards, unless of course you are the creator of the board and would like to cooperate on the project. I will also **ignore** any emails asking me to tell you how to implement your ideas. However, if you have a private inquiry that you would only apply to you and you would prefer it to be via email, by all means.
2015-03-08 07:22:29 +08:00
2015-03-09 06:03:41 +08:00
## Contributors
2020-06-22 11:40:07 +08:00
Check [here](https://github.com/z3t0/Arduino-IRremote/blob/master/Contributors.md)
2015-03-09 06:03:41 +08:00
2015-03-08 07:22:29 +08:00
## Copyright
Copyright 2009-2012 Ken Shirriff
2020-06-24 06:10:10 +08:00
Copyright (c) 2016 Rafi Khan