mirror of
https://github.com/merbanan/rtl_433.git
synced 2026-08-02 11:40:31 -04:00
Fix Akhan 100F14 tolerance to decode three-button wall switch variant
Some units run long pulses close to 1100 us, just past the old long_width(1020)+tolerance(80) cutoff, causing the pulse slicer to intermittently mis-frame messages. Widen tolerance to 100 us (closes #1458).
This commit is contained in:
@@ -76,7 +76,7 @@ r_device const akhan_100F14 = {
|
||||
.long_width = 1020,
|
||||
.reset_limit = 1800,
|
||||
.sync_width = 0,
|
||||
.tolerance = 80, // us
|
||||
.tolerance = 100, // us, some variants run long pulses close to 1100 us
|
||||
.decode_fn = &akhan_rke_callback,
|
||||
.fields = output_fields,
|
||||
.disabled = 1, // false positives with generic EV1527 devices
|
||||
|
||||
Reference in New Issue
Block a user