Files
iot-logic/src/sender/soundsender.py
Torma Kristóf 0956477831
All checks were successful
continuous-integration/drone/push Build is passing
skeletons are back in the closet
2020-08-24 20:38:38 +02:00

24 lines
478 B
Python

#!/usr/bin/env python3
from .abcsender import AbcSender
"""
Send a sound sample
"""
__author__ = "@tormakris"
__copyright__ = "Copyright 2020, Birbnetes Team"
__module_name__ = "soundsender"
__version__text__ = "1"
class SoundSender(AbcSender):
"""
SoundSender class, responsible for sending sound samples to the cloud.
"""
def sendvalue(self, value, decision):
"""
Send a sound sample to the cloud.
:return:
"""
pass