mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
15 lines
353 B
Python
15 lines
353 B
Python
|
|
from owrx.source.connector import ConnectorSource
|
||
|
|
from owrx.command import Argument
|
||
|
|
|
||
|
|
|
||
|
|
class Eb200Source(ConnectorSource):
|
||
|
|
def getCommandMapper(self):
|
||
|
|
return (
|
||
|
|
super()
|
||
|
|
.getCommandMapper()
|
||
|
|
.setBase("eb200_connector")
|
||
|
|
.setMappings({
|
||
|
|
"remote": Argument(),
|
||
|
|
})
|
||
|
|
)
|