-- obi200_daily_restart.lua -- This script restarts an obi200 device at a specified time each day local http = require("socket.http") local ltn12 = require("ltn12") local os = require("os") -- Configuration local OBI_IP = "192.168.1.124" -- Replace with your obi200's IP address local OBI_PASSWORD = "admin" -- Replace with your obi200's admin password local RESTART_HOUR = 11 -- Hour to restart (24-hour format) local RESTART_MINUTE = 30 -- Minute to restart -- Function to restart the obi200 local function restart_obi200() local url = string.format("http://%s/reboot.cgi", OBI_IP) local request_body = string.format("page=reboot&password=%s", OBI_PASSWORD) local response_body = {} local request, code, response_headers = http.request{ url = url, method = "POST", headers = { ["Content-Type"] = "application/x-www-form-urlencoded", ["Content-Length"] = #request_body }, source = ltn12.source.string(request_body), sink = ltn12.sink.table(response_body) } if code == 200 then print("obi200 restart command sent successfully") else print("Failed to send restart command. HTTP Status: " .. tostring(code)) end end -- Main loop while true do local current_time = os.date("*t") -- Check if it's time to restart if current_time.hour == RESTART_HOUR and current_time.min == RESTART_MINUTE then print("It's time to restart the obi200") restart_obi200() -- Wait for 60 seconds to avoid multiple restarts os.execute("sleep 60") end -- Wait for 30 seconds before checking again os.execute("sleep 30") end
Write, Run & Share Lua code online using OneCompiler's Lua online compiler for free. It's one of the robust, feature-rich online compilers for Lua language, running the latest Lua version 5.3. Getting started with the OneCompiler's Lua editor is easy and fast. The editor shows sample boilerplate code when you choose language as Lua and start coding.
OneCompiler's Lua online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample Lua program which takes name as input and prints hello message with your name.
name = io.read("*a")
print ("Hello ", name)
Lua is a light weight embeddable scripting language which is built on top of C. It is used in almost all kind of applications like games, web applications, mobile applications, image processing etc. It's a very powerful, fast, easy to learn, open-source scripting language.
-- global variables
a = 10
-- local variables
local x = 30
Value Type | Description |
---|---|
number | Represents numbers |
string | Represents text |
nil | Differentiates values whether it has data or not |
boolean | Value can be either true or false |
function | Represents a sub-routine |
userdata | Represents arbitary C data |
thread | Represents independent threads of execution. |
table | Can hold any value except nil |
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
while(condition)
do
--code
end
Repeat-Until is also used to iterate a set of statements based on a condition. It is very similar to Do-While, it is mostly used when you need to execute the statements atleast once.
repeat
--code
until( condition )
For loop is used to iterate a set of statements based on a condition.
for init,max/min value, increment
do
--code
end
Function is a sub-routine which contains set of statements. Usually functions are written when multiple calls are required to same set of statements which increase re-usuability and modularity.
optional_function_scope function function_name( argument1, argument2, argument3........, argumentn)
--code
return params with comma seperated
end