This commit is contained in:
Tanaes 2022-02-05 12:48:56 -05:00
parent 504f0ff5e1
commit 17d8db82fd

View File

@ -20,7 +20,7 @@ class Output(object):
try:
self.time_disp = Display(config.time_disp['type'],
config.time_disp['pins'])
self.time_disp.show('TIME')
self.time_disp.time(11,11)
except NameError as e:
log.warning("Couldn't initialize time display")
log.warning("Error: %s" % e)
@ -29,7 +29,7 @@ class Output(object):
try:
self.temp_disp = Display(config.temp_disp['type'],
config.temp_disp['pins'])
self.time_disp.show('TEMP')
self.time_disp.temp(1337)
except NameError:
self.temp_disp = False
@ -78,18 +78,6 @@ class Display(object):
self.disp = TM1637(pins['clock'],
pins['data'])
def temp(self, t):
self.disp.temp(t)
def time(self, h, m):
self.disp.time(h, m)
def off(self):
self.disp.off()
def text(self, text):
self.disp.text(text)
# FIX - Board class needs to be completely removed