iot-platform-raspberry/birbnetes_iot_platform_rasp.../playback_stuff.py

13 lines
214 B
Python
Raw Normal View History

2020-09-30 00:15:17 +02:00
from playsound import playsound
class BirbnetesIoTPlatformPlaybackDriver:
@classmethod
def init(cls):
pass
@classmethod
def play_audio(cls, audiofile: str):
playsound(audiofile)