openwebrx/csdr/chain/rtl433.py

19 lines
416 B
Python
Raw Normal View History

2024-01-30 02:12:23 +01:00
from owrx.ism.rtl433 import Rtl433Module, IsmParser
from csdr.chain.demodulator import ServiceDemodulator
class Rtl433(ServiceDemodulator):
def getFixedAudioRate(self) -> int:
return 1200000
def __init__(self):
super().__init__(
[
Rtl433Module(),
2024-01-30 02:12:23 +01:00
IsmParser(),
]
)
2023-09-16 06:14:36 +02:00
def supportsSquelch(self) -> bool:
return False