displays!!

This commit is contained in:
Tanaes 2022-02-05 13:09:47 -05:00
parent 4c8215f75f
commit f3d2213f36

View File

@ -29,8 +29,10 @@ class Output(object):
try:
self.temp_disp = Display(config.temp_disp['type'],
config.temp_disp['pins'])
self.time_disp.temp(1337)
except NameError:
self.temp_disp.temp(1337)
except NameError as e:
log.warning("Couldn't initialize temp display")
log.warning("Error: %s" % e)
self.temp_disp = False
# if self.time_disp: