This commit is contained in:
Tanaes 2022-02-05 12:50:51 -05:00
parent 17d8db82fd
commit 5d728bcfe6

View File

@ -78,6 +78,18 @@ 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