Files
2021-08-09 11:24:55 +02:00

25 lines
364 B
Lua

-- 2015/11/26 09:30:00
-- Comando accendi acqua
-- Intestazioni
require( 'EgtBase')
_ENV = EgtProtectGlobal()
EgtEnableDebug( false)
-- Tavola di passaggio valori
local CMD = {}
CMD.F=0
CMD.S=0
CMD.L1=0
CMD.L2=0
CMD.L3=0
CMD.R1=0
CMD.R2=0
CMD.CMDSTRING = ""
CMD.ERR = 0
_G.CMD = CMD
function CmdString()
CMD.CMDSTRING="M7 E30020=1"
end
_G.CmdString=CmdString