mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-01-23 00:30:21 +01:00
12 lines
325 B
Python
12 lines
325 B
Python
from pycsdr.modules import ExecModule
|
|
from pycsdr.types import Format
|
|
|
|
|
|
class Rtl433Module(ExecModule):
|
|
def __init__(self):
|
|
super().__init__(
|
|
Format.COMPLEX_FLOAT,
|
|
Format.CHAR,
|
|
["rtl_433", "-r", "cf32:-", "-F", "json", "-M", "time:unix", "-C", "si", "-s", "1200000"]
|
|
)
|