wire it all together
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-08-25 01:40:09 +02:00
parent 5d9e815407
commit 15f369446c
8 changed files with 114 additions and 12 deletions

View File

@ -15,9 +15,11 @@ class SoundSensor(AbcSensor):
"""
SoundSensor class. Responsible for sound retrieval from any microphones present.
"""
def getvalue(self):
def getvalue(self) -> str:
"""
Retrieve a 5 second sound clip from a microphone.
:return:
"""
pass
# Recieve sound from microphone and save it to a file on the filesystem.
# Then return the filename
return "filename.wav"