mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
16 lines
356 B
Python
16 lines
356 B
Python
|
|
from owrx.ism.rtl433 import Rtl433Module, JsonParser
|
||
|
|
from csdr.chain.demodulator import ServiceDemodulator
|
||
|
|
|
||
|
|
|
||
|
|
class Rtl433(ServiceDemodulator):
|
||
|
|
def getFixedAudioRate(self) -> int:
|
||
|
|
return 250000
|
||
|
|
|
||
|
|
def __init__(self):
|
||
|
|
super().__init__(
|
||
|
|
[
|
||
|
|
Rtl433Module(),
|
||
|
|
JsonParser(),
|
||
|
|
]
|
||
|
|
)
|