Shift weather display left

This commit is contained in:
Mike Cifelli 2022-12-30 15:47:20 -05:00
parent daf5808fad
commit 158be1a0f0
1 changed files with 2 additions and 2 deletions

View File

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