Center temperature

This commit is contained in:
Mike Cifelli 2022-12-30 19:06:33 -05:00
parent e261ed40be
commit 56d0e1f5d4
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ class WeatherDisplay:
def __init__(self, characterDisplay, topRow): def __init__(self, characterDisplay, topRow):
self.characterDisplay = characterDisplay self.characterDisplay = characterDisplay
self.topRow = topRow self.topRow = topRow
self.twoDigitStartColumn = 4 self.twoDigitStartColumn = 5
self.oneDigitStartColumn = 8 self.oneDigitStartColumn = 7
self.digitWidth = 4 self.digitWidth = 4
self.currentTemperature = '' self.currentTemperature = ''
self.color = colors.ORANGE self.color = colors.ORANGE