Files moved
This commit is contained in:
parent
9eb85e01d8
commit
bf22e37565
2 changed files with 0 additions and 0 deletions
15
LuCI/model/cbi/cronosagent.lua
Normal file
15
LuCI/model/cbi/cronosagent.lua
Normal file
|
@ -0,0 +1,15 @@
|
|||
|
||||
local map = Map("cronosagent", "CronosAgent")
|
||||
local section = map:section(TypedSection, "global", "", "Configuration")
|
||||
|
||||
local number = section:option(Value, "number", "Repeater ID", "DMR ID assigned to your repeater" )
|
||||
local repeater = section:option(Value, "repeaterAddress", "Repeater Address", "Address of your KAIROS repeater" )
|
||||
local server = section:option(Value, "serverAddress", "Server address", "Address of BrandMeister DMR Server")
|
||||
local password = section:option(Value, "serverPassword", "Password", "Password to login" )
|
||||
|
||||
number.datatype = "range(1,16777215)"
|
||||
repeater.datatype = "ip4addr"
|
||||
|
||||
server.datatype = "host"
|
||||
password.datatype = "string"
|
||||
password.password = true
|
Loading…
Add table
Add a link
Reference in a new issue