openwebrx-clone/owrx/source/eb200.py

15 lines
353 B
Python
Raw Normal View History

2020-11-29 23:34:44 +00:00
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(),
})
)