mirror of
https://github.com/Theaninova/Arduino-IRremote.git
synced 2025-12-17 03:46:15 +00:00
34 lines
1.3 KiB
Markdown
34 lines
1.3 KiB
Markdown
# IRremote Arduino Library
|
|
This library enables you to send and receive using infra-red signals on an arduino.
|
|
|
|
Check [here](http://shirriff.github.io/Arduino-IRremote/) for tutorials and more information.
|
|
|
|
## Version - 1.00
|
|
|
|
## Installation
|
|
1. Navigate to the [Releases](https://github.com/shirriff/Arduino-IRremote/releases) page.
|
|
2. Download the latest release.
|
|
3. Extract the zip file
|
|
4. Move the "IRremote" folder that has been extracted to your libraries directory.
|
|
|
|
## Usage
|
|
|
|
We get a lot of support for different device types. To keep the size of the library manageable we're moving to a model where different device types use a #define statement, for instance:
|
|
|
|
```#define SHARP```
|
|
|
|
You'd put this at the top of your sketch to include the sendSharp() and decodeSharp() methods in your code. This way your sketch only uses the Sharp functions but not the LG, JVC, Sony, etc functions, thus saving you program space that you might want to use for other things. This allows us to support lots of devices without making the library too big.
|
|
|
|
## 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
|
|
|
|
## Contributors
|
|
Check [here](Contributors.md)
|
|
|
|
## Copyright
|
|
Copyright 2009-2012 Ken Shirriff
|