Change the size of MAX_PROTOCOLS.
If you try to run rtl_433 -G you get the following error:
Max number of protocols reached 94
Increase MAX_PROTOCOLS and recompile
Correct value should be 95 now that new protocol has been added.
for the Thermopro TP-11, and the modulation is compatible, but the bit
layout is fairly different and there are more sensors, so I've made this a
separate device.
---
Corrected the indentation of src/CMakelists.txt as per merbanan comment.
Also moved the filepath to an alphabetical position.
Reverted include/data.h back to original due to stray change,
as per merbanan comment.
Misc Changes
---
During testing found that the MAXPROTOCOLS value in include/data.h had
to be increased by one to 76.
Found string termination issue in io data output during testing.
* Pulse Analyzer: Add "Include Only" mode
* Correct some devices to return correct event number
Necessary for "Include Only" mode to work correctly
* Pulse Analyzer: Add timestime to package detection
This code started is a modified version of fineoffset.c which
is included with rtl_433.
Format of packat seems to be similar to LaCrosse, but with no
humidity data included.
* Fine offset: More strict matching to avoid some rare false positives
* Fine Offset WH25: Initial decoder
* Fineoffset: WH25 add checksum, cleanup and enable per default
* Update README
* 1st experiment
* First try
* First working decoder of LaCrosse TX29/35
* Merge TX29 and TX35
* Be compatible with rules
* Finalization
* oups
* Code improvement
* Support for Acurite 00275rm and 00276rm sensors
* Fix tabs in acurite_00275rm_callback
* Remove temperature output in Fahrenheit, as sensor reports in Celcius.
* For acurite 00275rm device, add crc check, and combine triplicate redundant signals
into one signal. If three redundant bits differ, choose the majority value.
* Replace custom crc function with crc16() from util.c.