Hello,
I would like to make an event script on an alarm address. This script sent the status of the windows that would be open at this time. The problem in the script I could create is that as soon as the first window is open then the script stops.
alarm grp.getvalue = ( '...')
windows1 = grp.getvalue ( '...')
w2 =
w3 =
...
w50 =
if alarm == true and windows1 == true then
log (test)
elseif alarm == true and windows 2 == true then
log (test2) ..... etc
I would like to be able to send an email indicating the window 1, the window 2 and the window 32 are open.
Best regards.
As admin mention do it like that. Tag all windows and put tag in this script. Add description to windows object, this will be displayed in email as window name.
Code:
123456789101112
tagname = 'windows'windows=''fori, objectinipairs(grp.tag(tagname)) doifobject.valuethenwindows= windows .. object.comment..', 'endend-- make sure mail settings are set in user function library before using this functionsubject = 'E-mail test'message = 'open windows are '..windowsmail('user@example.com', subject, message)
(24.01.2019, 15:14)Daniel. Wrote: As admin mention do it like that. Tag all windows and put tag in this script. Add description to windows object, this will be displayed in email as window name.
Code:
123456789101112
tagname = 'windows'windows=''fori, objectinipairs(grp.tag(tagname)) doifobject.valuethenwindows= windows .. object.comment..', 'endend-- make sure mail settings are set in user function library before using this functionsubject = 'E-mail test'message = 'open windows are '..windowsmail('user@example.com', subject, message)
25.01.2019, 08:40 (This post was last modified: 25.01.2019, 09:28 by Gadjoken.)
I have a second question about comparing an address with its old value. I explain myself I have an event script (on TAG) with two addresses. I send an email as soon as the address goes to 10 (2 Byte signed integer). The value 10 indicates a fault. I would like to send the return to the proper functioning after the passage of 10 to some other value. For example value 10 then sending mail, change to value 5 (after value 10) then send a second mail. On the other hand passage from 5 to 0 or 0 to 5 we do nothing ...
FAULT1 = grp.getvalue('14/1/34') -- Status FAULT1
FAULT2 = grp.getvalue('13/1/34') -- Status FAULT2
subject = 'FAULT'
message = 'FAULT'
subject1 = 'OK'
message1 = 'OK'
if FAULT1 == 10 or FAULT2 == 10 then
mail('@', subject, message)
--elseif FAULT1 ~= 10 and FAULT2 ~= 10 then
-- mail('alertes@test', subject1, message1)
end
with this script the sending of the second mail is systematic during a change of state different from 10
Do you have to compare the event.dst value with the old value given that I have several group addresses on this tag? Thank you.
Best regards