mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2025-01-18 10:30:48 +00:00
lower threshold a level is considered dirty
This commit is contained in:
parent
5c9ac4d78f
commit
49354d6d55
@ -63,7 +63,7 @@ def comp(t0: tuple, t1: tuple) -> Iterator[bool]:
|
||||
"""
|
||||
|
||||
for a, b in zip(t0, t1):
|
||||
if ((1 << 16) - 1) - b <= 6000:
|
||||
if ((1 << 16) - 1) - b <= 7200:
|
||||
yield a == b
|
||||
else:
|
||||
yield True
|
||||
|
Loading…
Reference in New Issue
Block a user