14 lines
327 B
Python
14 lines
327 B
Python
|
from typing import List
|
||
|
from owrx.controllers.settings.devices import SdrDeviceType
|
||
|
from owrx.form import Input, TextInput
|
||
|
|
||
|
|
||
|
class RtlSdrDeviceType(SdrDeviceType):
|
||
|
def getInputs(self) -> List[Input]:
|
||
|
return [
|
||
|
TextInput(
|
||
|
"test",
|
||
|
"This is a drill"
|
||
|
),
|
||
|
]
|