openwebrx/csdr/chain/rtl433.py
2023-09-03 23:48:56 +02:00

17 lines
384 B
Python

from csdr.module import JsonParser
from owrx.ism.rtl433 import Rtl433Module
from csdr.chain.demodulator import ServiceDemodulator
class Rtl433(ServiceDemodulator):
def getFixedAudioRate(self) -> int:
return 250000
def __init__(self):
super().__init__(
[
Rtl433Module(),
JsonParser("ISM"),
]
)