summaryrefslogtreecommitdiff
path: root/mesecons.lua
diff options
context:
space:
mode:
Diffstat (limited to 'mesecons.lua')
-rw-r--r--mesecons.lua32
1 files changed, 32 insertions, 0 deletions
diff --git a/mesecons.lua b/mesecons.lua
index 7064821..f505649 100644
--- a/mesecons.lua
+++ b/mesecons.lua
@@ -83,6 +83,14 @@ local outputoptions = {
needsfloor = false,
},
{
+ id = "swing",
+ desc = "Swing Operation",
+ func = function(mem)
+ return (mem.carstate == "swing")
+ end,
+ needsfloor = false,
+ },
+ {
id = "opening",
desc = "Doors Opening",
func = function(mem)
@@ -393,6 +401,30 @@ local inputoptions = {
end,
needsfloor = true,
},
+ {
+ id = "swingon",
+ desc = "Activate Swing Operation",
+ func_on = function(controllerpos)
+ celevator.controller.run(controllerpos,{
+ type = "remotemsg",
+ channel = "swing",
+ msg = true,
+ })
+ end,
+ needsfloor = false,
+ },
+ {
+ id = "swingoff",
+ desc = "Deactivate Swing Operation",
+ func_on = function(controllerpos)
+ celevator.controller.run(controllerpos,{
+ type = "remotemsg",
+ channel = "swing",
+ msg = false,
+ })
+ end,
+ needsfloor = false,
+ },
}
local dinputoptions = {