File size: 150 Bytes
f38488f | 1 2 3 4 5 6 | #!/usr/bin/env python3
from .base_sensor import BaseSensor
class AudioProcessor(BaseSensor):
def sense(self):
return "AUDIO_STREAM_INPUT"
|
f38488f | 1 2 3 4 5 6 | #!/usr/bin/env python3
from .base_sensor import BaseSensor
class AudioProcessor(BaseSensor):
def sense(self):
return "AUDIO_STREAM_INPUT"
|