Rewrite: Functionality to write content to special display

This commit is contained in:
Jonas Zeunert
2022-06-06 17:52:12 +02:00
parent cfdcbcb5bd
commit 9b1c994b44
4 changed files with 13 additions and 5 deletions

View File

@@ -5,4 +5,7 @@ class Display:
self.name = name
def printScore(self, score):
networking.writeDisplayScore(self.name, score)
networking.writeDisplayScore(self.name, score)
def printContent(self, content):
networking.writeDisplayContent(self.name, content)