This commit is contained in:
Remy Moll 2020-10-13 18:06:18 +02:00
parent f4632613a7
commit d7b6f1a82c
3 changed files with 7 additions and 3 deletions

View File

@ -1,2 +1,6 @@
# chat-bot # chat-bot
Chat bot for two. Chat bot for two.
With a comprehensive explanation for the users.
## Coupled with a matrix-interface

View File

@ -24,8 +24,7 @@ class DashBoard(object):
if prev_time == datetime.datetime.now().strftime("%H:%M"): if prev_time == datetime.datetime.now().strftime("%H:%M"):
time.sleep(5) time.sleep(5)
else: else:
if True: print("implement me!")
print("implement me!")
prev_time = datetime.datetime.now().strftime("%H:%M") prev_time = datetime.datetime.now().strftime("%H:%M")
self.IO.clock_face([]) self.IO.clock_face([])

View File

@ -88,6 +88,7 @@ class UnicornHat(object):
def set_matrix(self, matrix): def set_matrix(self, matrix):
self.buffer = matrix self.buffer = matrix
print(matrix)
self.show() self.show()