Update linkedGet.lua

This commit is contained in:
erius0 2021-01-08 03:08:54 +03:00 committed by GitHub
parent c8ac167947
commit 97dcd6acfb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,19 +5,20 @@ local fs = require("filesystem")
local tunnel = component.tunnel
local TIME_ZONE = 2
local t_correction = TIME_ZONE * 3600
local function getTimeHost()
local file = io.open('/tmp/unix.tmp', 'w')
file:write('')
file:close()
local lastmod = tonumber(string.sub(fs.lastModified('UNIX.tmp'), 1, -4)) + t_correction
local date = os.date('%x', lastmod)
local time = os.date('%X', lastmod)
local dt = os.date('%Y.%m.%d %H:%M:%S', lastmod)
return dt
function os.dateRL(format)
if not fs.get("/").isReadOnly() then
local time = io.open("/tmp/.time", "w")
time:write()
time:close()
os.sleep(0.01)
return os.date(format, fs.lastModified("/tmp/.time") / 1002.7)
else
return os.date(format)
end
end
while true do
local _, _, _, _, _, message = event.pull("modem_message")
local date = getTimeHost()
local date = os.dateRL("%x %X")
print("[ "..date.." ]"..message)
tunnel.send("succes!")
end