Skip to content

Commit e2768ec

Browse files
committed
Theory of PWM and IR Power see #724
1 parent 0764f74 commit e2768ec

File tree

1 file changed

+44
-19
lines changed

1 file changed

+44
-19
lines changed

README.md

Lines changed: 44 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -29,26 +29,39 @@ This is a quite old but maybe useful wiki for this library.
2929

3030
# FAQ
3131
- IR does not work right when I use Neopixels (aka WS2811/WS2812/WS2812B)<br/>
32-
Whether you use the Adafruit Neopixel lib, or FastLED, interrupts get disabled on many lower end CPUs like the basic arduinos for longer than 50 us. 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)
33-
- The default IR timer on AVR's is timer 2. Since the Arduino Tone library as well as analogWrite() for pin 3 and pin 11 requires timer 2, this functionality cannot be used simultaneously.
34-
- You can use **multiple IR receiver** by just connecting the output pins of several IR receivers together. The IR receivers use an NPN transistor as output device with just a 30k resistor to VCC. This is almost "open collector" and allows connecting of several output pins to one Arduino input pin.
32+
Whether you use the Adafruit Neopixel lib, or FastLED, interrupts get disabled on many lower end CPUs like the basic Arduinos for longer than 50 µs.
33+
In turn, this stops the IR interrupt handler from running when it needs to. There are some solutions to this on some processors,
34+
[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)
35+
- The default IR timer on AVR's is timer 2. Since the Arduino Tone library as well as analogWrite() for pin 3 and pin 11 requires timer 2,
36+
this functionality cannot be used simultaneously.
37+
- You can use **multiple IR receiver** by just connecting the output pins of several IR receivers together.
38+
The IR receivers use an NPN transistor as output device with just a 30k resistor to VCC.
39+
This is almost "open collector" and allows connecting of several output pins to one Arduino input pin.
3540

3641
# Handling unknown Protocols
3742
## Disclaimer
38-
This library was never designed to handle long codes like the ones used by air conditioners. See [Recording long Infrared Remote control signals with Arduino](https://www.analysir.com/blog/2014/03/19/air-conditioners-problems-recording-long-infrared-remote-control-signals-arduino).<br/>
43+
This library was never designed to handle long codes like the ones used by air conditioners.
44+
See [Recording long Infrared Remote control signals with Arduino](https://www.analysir.com/blog/2014/03/19/air-conditioners-problems-recording-long-infrared-remote-control-signals-arduino).<br/>
3945
The main reason is, that it was designed to fit inside MCUs with relatively low levels of resources and was intended to work as a library together with other applications which also require some resources of the MCU to operate.
4046

4147
## Hints
4248
If you do not know which protocol your IR transmitter uses, you have several choices.
43-
- Use the [IRreceiveDumpV2 example](examples/IRreceiveDumpV2) to dump out the IR timing. You can then reproduce/send this timing with the [IRsendRawDemo example](examples/IRsendRawDemo). For **long codes** with more than 48 bits like from air conditioners, you can **change the length of the input buffer** in [IRremoteInt.h](src/private/IRremoteInt.h#L31).
44-
- The [IRMP AllProtocol example](https://github.com/ukw100/IRMP#allprotocol-example) prints the protocol and data for one of the **40 supported protocols**. The same library can be used to send this codes.
45-
- If you have a bigger Arduino board at hand (> 100 kByte program space) you can try the [IRremoteDecode example](https://github.com/bengtmartensson/Arduino-DecodeIR/blob/master/examples/IRremoteDecode/IRremoteDecode.ino) of the Arduino library [DecodeIR](https://github.com/bengtmartensson/Arduino-DecodeIR).
46-
- Use [IrScrutinizer](http://www.harctoolbox.org/IrScrutinizer.html). It can automatically generate a send sketch for your protocol by exporting as "Arduino Raw". It supports IRremote, the old [IRLib](https://github.com/cyborg5/IRLib) and [Infrared4Arduino](https://github.com/bengtmartensson/Infrared4Arduino).
47-
- To **increase strength of sent output signal** you can increase the current through the send diode, or use 2 diodes in series, since one IR diode requires only 1.5 volt. Changing `IR_SEND_DUTY_CYCLE` to 50 increases the signal current by 40%.
49+
- Use the [IRreceiveDumpV2 example](examples/IRreceiveDumpV2) to dump out the IR timing.
50+
You can then reproduce/send this timing with the [IRsendRawDemo example](examples/IRsendRawDemo).
51+
For **long codes** with more than 48 bits like from air conditioners, you can **change the length of the input buffer** in [IRremoteInt.h](src/private/IRremoteInt.h#L31).
52+
- The [IRMP AllProtocol example](https://github.com/ukw100/IRMP#allprotocol-example) prints the protocol and data for one of the **40 supported protocols**.
53+
The same library can be used to send this codes.
54+
- If you have a bigger Arduino board at hand (> 100 kByte program space) you can try the
55+
[IRremoteDecode example](https://github.com/bengtmartensson/Arduino-DecodeIR/blob/master/examples/IRremoteDecode/IRremoteDecode.ino) of the Arduino library [DecodeIR](https://github.com/bengtmartensson/Arduino-DecodeIR).
56+
- Use [IrScrutinizer](http://www.harctoolbox.org/IrScrutinizer.html).
57+
It can automatically generate a send sketch for your protocol by exporting as "Arduino Raw". It supports IRremote,
58+
the old [IRLib](https://github.com/cyborg5/IRLib) and [Infrared4Arduino](https://github.com/bengtmartensson/Infrared4Arduino).
59+
- To **increase strength of sent output signal** you can increase the current through the send diode, or use 2 diodes in series,
60+
since one IR diode requires only 1.5 volt. Changing `IR_SEND_DUTY_CYCLE` to 50 increases the signal current by 40%.
4861

4962
# Compile options / macros for this library
50-
To customize the library to different requirements, there are some compile options / makros available.<br/>
51-
Modify it by commenting them out or in, or change the values if applicable. Or define the macro with the -D compiler option for gobal compile (the latter is not possible with the Arduino IDE, so consider to use [Sloeber](https://eclipse.baeyens.it).
63+
To customize the library to different requirements, there are some compile options / macros available.<br/>
64+
Modify it by commenting them out or in, or change the values if applicable. Or define the macro with the -D compiler option for global compile (the latter is not possible with the Arduino IDE, so consider to use [Sloeber](https://eclipse.baeyens.it).
5265

5366
| Name | File | Default value | Description |
5467
|-|-|-|-|
@@ -118,10 +131,10 @@ The timer and the pin usage can be adjusted in [IRremoteBoardDefs.h](src/private
118131
| [Teensy 3.0 / 3.1](https://www.pjrc.com/teensy/) | **5** | **CMT** |
119132
| [Teensy-LC](https://www.pjrc.com/teensy/) | **16** | **TPM1** |
120133

121-
## Revision History
134+
# Revision History
122135
Please see [changelog.md](https://github.com/z3t0/Arduino-IRremote/blob/master/changelog.md).
123136

124-
## API documentation
137+
# API documentation
125138
See [API reference in wiki](https://github.com/z3t0/Arduino-IRremote/wiki/API-Reference).
126139

127140
To generate the API documentation,
@@ -134,7 +147,18 @@ With Doxygen and Graphviz installed, issue the command
134147
generate the API documentation in HTML format.
135148
The just generated `api-doc/index.html` can now be opened in a browser.
136149

137-
## Contributing
150+
## Why do we use 33% duty cycle
151+
We do it according to the statement in the [Vishay datasheet](https://www.vishay.com/docs/80069/circuit.pdf):
152+
- Carrier duty cycle 50 %, peak current of emitter IF = 200 mA, the resulting transmission distance is 25 m.
153+
- Carrier duty cycle 10 %, peak current of emitter IF = 800 mA, the resulting transmission distance is 29 m. - Factor 1.16
154+
The reason is, that it is not the pure energy of the fundamental which is responsible for the receiver to detect a signal.
155+
Due to automatic gain control and other bias effects high intensity and lower energy (duty cycle) of the 38 kHz pulse counts more than high low intensity and higher energy.
156+
157+
BTW, **the best way to increase the IR power** is to use 2 or 3 IR diodes in series. One diode requires 1.1 to 1.5 volt so you can supply 3 diodes with a 5 volt output.<br/>
158+
To keep the current, you must reduce the resistor by (5 - 1.3) / (5 - 2.6) = 1.5 e.g. from 150 ohm to 100 ohm for 25 mA and 2 diodes with 1.3 volt and a 5 volt supply.<br/>
159+
For 3 diodes it requires factor 2.5 e.g. from 150 ohm to 60 ohm.
160+
161+
# Contributing
138162
If you want to contribute to this project:
139163
- Report bugs and errors
140164
- Ask for enhancements
@@ -144,17 +168,18 @@ If you want to contribute to this project:
144168

145169
Check [here](https://github.com/z3t0/Arduino-IRremote/blob/master/Contributing.md) for some guidelines.
146170

147-
## Contact
148-
149-
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.
150-
151171
## Contributors
152172
Check [here](https://github.com/z3t0/Arduino-IRremote/blob/master/Contributors.md)
153173

174+
# Contact
175+
176+
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.
177+
154178
# License
155179
Up to the version 2.7.0 the License is GPLv2.
156180
From the version 2.8.0 the license is the MIT license.
157181

158182
## Copyright
159183
Initially coded 2009 Ken Shirriff http://www.righto.com
160-
Copyright (c) 2016 Rafi Khan
184+
Copyright (c) 2016 Rafi Khan
185+
Copyright (c) 2020 Armin Joachimsmeyer

0 commit comments

Comments
 (0)