Jump to content

Welcome to Smart Home Forum by FIBARO

Dear Guest,

 

as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.

 

As a member you can:

  •     Start new topics and reply to others
  •     Follow topics and users to get email updates
  •     Get your own profile page and make new friends
  •     Send personal messages
  •     ... and learn a lot about our system!

 

Regards,

Smart Home Forum by FIBARO Team


  • 0

simple function


julesmartens

Question

Hi

 

I'm trying to create an alarm via several scenes. I want to cleanup the code I have so far. This by using simple function(s).

Anybody suggestions? 

 

I found some advanced code in existing code which is too complex. I have very limited coding  experience and without some comments I cannot exactly tell what the code is doing.

So please add some comments in the code to explain what it does.

 

my alarm:

I have a scene that checks presence via GPS, wifi and iFTTT . If nobody home it will switch a global to armed.

I have a seperate scene to actually arm the devices I need to arm, this I'd like to cleanup using a function. If I understand the example of a function, I can reuse it elsewhere (hopefully ;-)).

 

 

if(             fibaro:getGlobalValue("AlarmMode") == "FullAlarm"          and 
                fibaro:getGlobalValue("AlarmState") == "Armed"             )then        
                
                -- Alarm warning LED
                local PIRState = fibaro:getValue(369, "armed")               
                if(    PIRState == "0") then 
                Debug(true, "Blue", " pre-alert LED notification started")
                fibaro:call(133, "startProgram", "116"); -- alarm was not on yet, notify user via led that arming process will start
                fibaro:sleep(10*1000);
                else
                Debug(true, "LightBlue", " NO pre-alert LED notification ")
                end  
               
               -- start arming process 
                fibaro:call(133, "startProgram", "214"); -- notify user by led alarm is armed.
                fibaro:call(PIR1, "setArmed", "1");
                fibaro:call(PIR2, "setArmed", "1");
                fibaro:call(PIR3, "setArmed", "1");
                fibaro:call(PIR4, "setArmed", "1");
                fibaro:call(PIR5, "setArmed", "1");
                fibaro:call(PIR6, "setArmed", "1");
                fibaro:call(PIR7, "setArmed", "1");
      
                fibaro:call(DW1, "setArmed", "1");
                fibaro:call(DW2, "setArmed", "1");
                fibaro:call(DW3, "setArmed", "1");
                fibaro:call(DW4, "setArmed", "1");
                fibaro:sleep(250);
    
                local PIRState = fibaro:getValue(PIR1, "Value")
                Debug(true, "Orange", " All PIR and Door sensors armed")  
                --Debug(true, "LightGreen", " AlarmMode has value: "..fibaro:getGlobalValue("AlarmMode"))
                --Debug(true, "LightGreen", " AlarmState has value: "..fibaro:getGlobalValue("AlarmState"))
       end    

 

thanks!

grtz

 

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...