Update garage display

This commit is contained in:
Mike Cifelli 2022-12-27 10:53:33 -05:00
parent 4cac468c01
commit 11f3ed7679
1 changed files with 3 additions and 3 deletions

View File

@ -7,12 +7,12 @@ class GarageDisplay:
self.characterDisplay = characterDisplay
self.topRow = topRow
self.westDoorStartColumn = 0
self.eastDoorStartColumn = 5
self.eastDoorStartColumn = 12
self.currentState = {}
self.closedOutlineColor = colors.RED
self.closedFillColor = colors.GRAY
self.closedFillColor = colors.RED
self.openOutlineColor = colors.WHITE
self.openFillColor = colors.BLUE
self.openFillColor = colors.WHITE
self.garageFile = 'garage.json'
def showGarageState(self):