-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Added Esp32 IrSend Support #491
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Esp32 IrSend Support #491
Conversation
Used ledc funtions for generating IR signals. Mapped Pin 5 for IrSend, which is configurable.
#437 Implemented a software carrier, is that sufficient? |
With portable software carrier (#437) in place, having sane (probably, by necessity non-portable) implementations of hardware carrier sending is a good thing. The user can then select if he wants the hard- or soft implementation. This can be valuable in many cases. @SaheblalBagwan : I suggest that you:
|
True. I'll waiting on the updates suggested above then. |
AFAIK 'ledc' is one standard method to generate PWM on the ESP32. On most platforms, I would suggest that hardware based PWM for generating the carrier is a better approach than 'softPWM'. In other words, I would recommend 'hardPWM' over 'softPWM' in most cases, unless: |
Hello, what's about a compatible IR remote library using RMT peripheral? |
Just to check, is there any code for RMT IR Receive on ESP32? I've only found IR send using RMT so far. |
I am very intersted too for the RMT IR receive for ESP32
Le lun. 20 août 2018 à 23:21, Marc MERLIN <notifications@github.com> a
écrit :
… Just to check, is there any code for RMT IR Receive on ESP32? I've only
found IR send using RMT so far.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#491 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AD0B8Wzwzy314hyH2vRDYfhz9l_ip3tTks5uS3ypgaJpZM4OgFhm>
.
--
Thierry Vorms
Québec Canada
|
ESP32 send support is now included. |
IrSend Support for ESP32
Used ledc funtions for generating IR signals.
Mapped Pin 5 for IrSend.