iot-platform-emulator/birbnetes_iot_platform_emul.../playback_stuff.py

17 lines
382 B
Python

import logging
class BirbnetesIoTPlatformPlaybackDriver:
@classmethod
def init(cls, folder: str = '/var/lib/birbnetes/enemy_soudns'):
logging.debug("Initializing dummy playback driver...")
@classmethod
def play_one_random(cls):
logging.debug("Dummy playback driver: Playing random sound....")
@classmethod
def cleanup(cls):
pass