start with initial board

pull/1/head
Thomas Lindner 2022-12-30 13:30:31 +01:00
parent 612a639a78
commit a81408ae01
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class BoardReader:
self.row_gpios = row_gpios
self.board_history: list[list[list[str]]] = []
for _ in range(self.hysteresis):
self.board_history.append(self._empty_board())
self.board_history.append(self._initial_board())
self.move_generator = move_generator
def __del__(self):