update - #1
Merged
Merged
Conversation
tEnableLEDFeedback should not be a bool, because it's used as a bitmask with different states (Send/Receive/...). Even though a bool should be a byte anyways, this is apprently optimized with the current platformio toolchain for ESP8266 and causes the feedback LED to not work correctly.
Added the option to receive Extended NEC using TinyIRReceiver with a USE_EXTENDED_NEC_PROTOCOL compile option. Tested working on an Uno R3. Functions similarly to the USE_ONKYO_PROTOCOL flag, mostly reusing its code. Documentation and example file TinyReceiver.ino updated to match.
…1202) * Add ExtendedNEC support to TinyIRSender and move NEC2 from flag to argument Added ExtendedNEC support to TinyIRSender. Also redesigned TinyIRSender's handling of sending NEC2 repeats from a compile time flag to an argument in the send functions for NEC variants, as per discussion #1201. Modified the example script TinySender to support these changes/additions and fix a bug. Finally updated/made consistent some comments across various files and the README. Updated TinySender.ino to send using (almost*) all protocols simultaneously to demonstrate usage of TinyIRSender, as suggested in #1202 . Users can delete or comment out unneeded protocols. *(Not all combinations of NEC2 are demonstrated for brevity).
Added functions stopTimer(), restartTimer() and restartTimerWithTicksToAdd() Added rawlen and initialGap to IRData Bumped version to 4.3.0
…D_PIN but not for LED
… not sending start bit
Add OpenLASIR support. By: Dani Weidman <danielwkweidman@example.com>
… is not enabled
… TinyIRReceiver*()
…col and removed useless LG2 protocol, added new functions match*WithGreaterRange(), improved B&O decoding
…R was re-enabled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
update