* Tool to build the document.
* Add reference to new doc.
* Other
- Move existing python unit tests to Python3
- Use Python3's pylint
- Fix pylint issues found after move.
- Convince CI/Travis to install/use convince Python3 stuff.
Fixes#743
## _v2.5.0 (20180919)_
**[Bug Fixes]**
- Fix HTML menu error for GICABLE in IRMQTTServer. (#516)
- Fix Mitsubishi A/C mode setting. (#514)
- Add missing ',' in auto analyse tool generated code. (#513)
- Fix Fujitsu checksum validation. (#501)
- Remove errant Repeat debug statement in IRMQTTServer. (#507)
**[Features]**
- Mitsubishi A/C decode improvements. (#514)
- Basic support for Whirlpool A/C messages. (#511)
- Basic support for Samsung A/C messages. (#512)
- Experimental support for detailed Samsung A/C messages. (#521)
- Experimental support for detailed Coolix A/C messages. (#518)
- Experimental support for Lutron protocol. (#516)
- Calculate and use average values for timings in analysing tool. (#513)
**[Misc]**
- Style change from using `#define`s for constants to `const kConstantName`.
- Improve the JVC example code.
* Port AutoAnalyseRawData script to Python.
* Rename python analysis script to snake_case format.
* Add options to read the data from stdin or from a file.
* Remove old analyse script.
* Improve auto_analyse_raw_data and add lint/unit tests.
* Make analyse script code unittest-able.
* Improve raw data parsing for analyse script.
* Add some unit tests for analyse script.
* Update Makefile(s) to use 'run_tests' to run their tests.
* Add python unit & lint tests into Travis
* Add tools build files & binaries to .gitignore
* Allow dumping the raw code in gc_decode.
- Fix up dumpRawResult formatting and results.
- Clean up gc_decode output
- Add a -raw flag to gc_decode.
- Dump raw output if gc_decode can't find a standard decoder.
- Fixes Issue #243
- [bugfix] Incorrect assumption on minimum entry length when decoding. Off by one.
- [bugfix] Make matching the trailing gap/space on commands optional if we run out of buffer.
- Fix a wayward Serial.println() debug statement that got missed.
- Add unit tests to add coverage for the bug found.
- Bump version to v2.0.1
* Initial check-in of Unit Testing for IRremoteESP8266.
TL;DR: \o/ for finally having (some) Unit Testing.
- Add googletest as a submodule.
- Create unit tests for IRutils as a first step.
- Create a Makefile under test/ which builds and uses the test framework.
- De-Arduino-ise some of the code with #ifndef UNIT_TEST guards to allow it
to compile and run outside of the Arduino Framework.
Note:
The Unit Tests are designed to run on a unix box. Not on the ESP8266.
This should allow them to be run under Travis. We can do this fairly safely
in v2.0 of the library, as everything now uses c98-style type definitions.
e.g. uint16_t etc.
Any Arduino/ESP8266 specific code needs to be neutered using #ifndef UNIT_TEST
lines.
* Update travis to build and run the unit tests.
* Unit tests for IRsend's sendData()
- Modify files to handle unit tests when compiled on non-arduino frameworks.
- Add unit tests to cover sendData()
- Fix an issue with sendData() when sending zero bit lengths.
- Update .gitignore for some generated content we don't want checked in.
* Add unit tests for sending NEC protocol.
- Unit tests for sendNEC() & encodeNEC()
- Make the unit test infrastructre for IRsend availble for other unit tests.
- Fix an issue with encodeNEC() which didn't count for address and command
being in LSB order in the protocol spec.
- Other changes to make the library more portable when not compiled against
the Arduino framework.
* Add Unit tests for decodeNEC().
- Add unit tests that cover most of decodeNEC().
- [Bug] Address and Command values needed to be reversed. LSB order etc.
- Change the way non-standard NEC messages handle address and command decoding.
- Add support methods for converting sendBlah() output into a decode_result.
- Include <stdint.h> modifier for Travis compilation.
- Update Travis for new unit tests to run.
* Update README.md with Unit Test info