diff --git a/fullykiosk/__init__.py b/fullykiosk/__init__.py index 9cd1e34..21122d5 100644 --- a/fullykiosk/__init__.py +++ b/fullykiosk/__init__.py @@ -82,6 +82,9 @@ async def playSound(self, url, stream=None): async def stopSound(self): await self.sendCommand("stopSound") + async def textToSpeech(self): + await self.sendCommand("textToSpeech", text="", locale="", engine="") + async def toForeground(self): await self.sendCommand("toForeground")