4
Fork 0
CronosAgent/LuCI/model/cbi/cronosagent.lua
2016-08-01 22:57:51 +03:00

15 lines
744 B
Lua

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