mirror of
https://github.com/crankyoldgit/IRremoteESP8266.git
synced 2026-01-12 00:05:10 +08:00
* Add tool to convert protocol & code to raw timing info. Usage: tools/code_to_raw --protocol PROTOCOL_NAME --code <hexidecimal> [--bits 1-424] [--timinginfo] e.g. ``` # Convert an A/C code to rawData[] & Timinginfo tool/code_to_raw --protocol KELVINATOR --code 0x190B8050000000E0190B8070000010F0 --timinginfo # Convert a Samsung TV code to rawData[]. tools/code_to_raw --protocol SAMSUNG --code 0xE0E09966 # Convert a Sony 12 bit message to rawData[]. tools/code_to_raw --protocol Sony --code 0xf50 --bits 12 ``` * Add some tests for `code_to_raw`. * Update tools Makefile to be more dynamic For #1707 For #1703 Co-authored-by: Christian Nilsson <nikize@gmail.com>
56 lines
734 B
Plaintext
56 lines
734 B
Plaintext
#----------------------------------------#
|
|
# .gitingore for IRremoteESP8266 library #
|
|
#----------------------------------------#
|
|
|
|
### Files to ignore.
|
|
|
|
## Editors
|
|
# vi/vim
|
|
**/*.swp
|
|
|
|
# vscode
|
|
.vscode
|
|
|
|
## Build environments
|
|
# Platformio
|
|
**/.pio/
|
|
**/.pioenvs/
|
|
**/.piolibdeps/
|
|
**/.clang_complete
|
|
**/.gcc-flags.json
|
|
examples/**/lib
|
|
examples/**/.travis.yml
|
|
examples/**/.gitignore
|
|
lib/readme.txt
|
|
lib/googletest/
|
|
|
|
# GCC pre-compiled headers.
|
|
**/*.gch
|
|
|
|
# Python compiled files
|
|
**/*.pyc
|
|
|
|
# Unit Test builds
|
|
test/*.o
|
|
test/*.a
|
|
test/*_test
|
|
|
|
# Tools builds
|
|
tools/*.o
|
|
tools/*.a
|
|
tools/gc_decode
|
|
tools/mode2_decode
|
|
tools/code_to_raw
|
|
|
|
.pioenvs
|
|
.piolibdeps
|
|
.clang_complete
|
|
.gcc-flags.json
|
|
|
|
#Cygwin builds
|
|
*.exe
|
|
|
|
# Mac extended attributes
|
|
.DS_Store
|
|
/.vs
|