openwebrx/owrx/dab/dablin.py

12 lines
260 B
Python
Raw Normal View History

from pycsdr.modules import ExecModule
from pycsdr.types import Format
class DablinModule(ExecModule):
def __init__(self):
super().__init__(
Format.CHAR,
Format.FLOAT,
["dablin", "-s", "0x15DC", "-p"]
)