File size: 150 Bytes
29cdc9d | 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"
|
29cdc9d | 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"
|