Adjust distance buffering

This commit is contained in:
Mike Cifelli 2023-10-27 18:02:59 -04:00
parent 0804b865f9
commit 7168feee6e
Signed by: mike
GPG Key ID: 6B08C6BE47D08E4C
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class Marshaller(Server):
def get_buffered_distance_in_inches(self): def get_buffered_distance_in_inches(self):
distance = self.get_distance_in_inches() distance = self.get_distance_in_inches()
if abs(distance - self.last_value) > 0.25: if abs(distance - self.last_value) > 0.5:
self.last_value = distance self.last_value = distance
return self.last_value return self.last_value