This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Email synax: messeage depending on the value of a group value
#4
Corrected version that will alert all objects that are below the threshold instead of only one:
Code:
message = ''

for i = 0, 30 do
  addr = '35/1/' .. i
  value = grp.getvalue(addr)
  
  if value < 85 then
    message = message .. 'Alert: ' .. addr .. ' = ' .. value .. '<br>\n'
  end
end

if message == '' then
  message = 'OK'
end
Reply


Messages In This Thread
RE: Email synax: messeage depending on the value of a group value - by admin - 18.04.2024, 05:51

Forum Jump: