add eb200 support

This commit is contained in:
Jakob Ketterl
2020-11-30 00:34:44 +01:00
parent 865ffb28af
commit 0614637342
4 changed files with 27 additions and 2 deletions

14
owrx/source/eb200.py Normal file
View File

@ -0,0 +1,14 @@
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(),
})
)