Added client with interface to have the possibility to react to emotions

This commit is contained in:
DJE98
2023-09-30 15:56:17 +02:00
parent 7a68a8cb74
commit 60b8fe71db
3 changed files with 66 additions and 0 deletions

5
hackathon/robot.py Normal file
View File

@@ -0,0 +1,5 @@
class Robot:
update_interval = 0.5
def update(self, image, emotions):
raise NotImplementedError()