mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
12 lines
306 B
Python
12 lines
306 B
Python
from owrx.source.soapy import SoapyConnectorSource, SoapyConnectorDeviceDescription
|
|
|
|
|
|
class RadioberrySource(SoapyConnectorSource):
|
|
def getDriver(self):
|
|
return "radioberry"
|
|
|
|
|
|
class RadioberryDeviceDescription(SoapyConnectorDeviceDescription):
|
|
def getName(self):
|
|
return "RadioBerry"
|