Added prototype of LuCI interface
This commit is contained in:
parent
609a2d6153
commit
773282a5c5
2 changed files with 19 additions and 0 deletions
11
LuCI/controller/CronosAgent/module.lua
Normal file
11
LuCI/controller/CronosAgent/module.lua
Normal file
|
@ -0,0 +1,11 @@
|
|||
module("CronosAgent", package.seeall)
|
||||
|
||||
function index()
|
||||
entry({ "CronosAgent", "Configure" }, cbi("CronosAgent/configure"), "Configure", 10)
|
||||
entry({ "CronosAgent", "Restart" }, call("restartCronosAgent"), "Restart", 20)
|
||||
end
|
||||
|
||||
function restartCronosAgent()
|
||||
luci.sys.init.stop("cronosagent")
|
||||
luci.sys.init.start("cronosagent")
|
||||
end
|
8
LuCI/model/cbi/CronosAgent/configure.lua
Normal file
8
LuCI/model/cbi/CronosAgent/configure.lua
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
local map = Map("cronosagent", "CronosAgent")
|
||||
local section = map:section(TypedSection, "configuration")
|
||||
|
||||
section:option(Value, "number", "Repeater ID", "DMR ID assigned to your repeater")
|
||||
section:option(Value, "repeaterAddress", "Repeater Address", "Address of your KAIROS repeater")
|
||||
section:option(Value, "serverAddress", "Server address", "Address of BrandMeister DMR Server")
|
||||
section:option(Value, "serverPassword", "Password", "Password to login")
|
Loading…
Add table
Reference in a new issue