Lock sangaboard while reading position

This commit is contained in:
Joel Collins 2020-06-15 16:18:58 +01:00
parent 5916daebfb
commit 160cd82889

View file

@ -51,7 +51,8 @@ class SangaStage(BaseStage):
@property
def position(self):
return self.board.position
with self.lock:
return self.board.position
@property
def backlash(self):