mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2025-01-18 18:40:47 +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):
|
for a, b in zip(t0, t1):
|
||||||
if ((1 << 16) - 1) - b <= 6000:
|
if ((1 << 16) - 1) - b <= 7200:
|
||||||
yield a == b
|
yield a == b
|
||||||
else:
|
else:
|
||||||
yield True
|
yield True
|
||||||
|
Loading…
Reference in New Issue
Block a user