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

HC3 problem z prostą sceną oświtlenia


PiotrSebL

Question

Witam,

Przesiadłem się z HCL na HC3 wszystko muszę zrobić od początku i mam problem z najprostszą sceną.

Scena składa się z dwóch urządzeń: 1. Fibaro montion sensor = ID 58, ten sam montion sensor tylko pomiar oświetlenia ID = 60 oraz fibaro switch ID = 21

 

Zapalanie światła ma mieć miejsce kiedy oświetlenie spada po niżeli 20 lux i czujka wykryje ruch wtedy światło załącza się na 30 sek. Problem w tym, że program się nie uruchamia kiedy ma część odnośnie oświetlenia. Tan. wykrywa ruch i włącza światło jak dodaję część związaną z pomiarem oświetlenia to program nie włącza światła i nic się nie dzieje.

 

Bardzo proszę o pomoc co robię nie tak.

 

DEKLARACJE (Warunki/Wyzwalacze)

{
  conditions = { {
      id = 60,
      isTrigger = false,
      operator = "<=",
      property = "value",
      type = "device",
      value = 20
    }, {
      id = 21,
      isTrigger = false,
      operator = "==",
      property = "state",
      type = "device",
      value = false
    }, {
      id = 58,
      isTrigger = true,
      operator = "==",
      property = "value",
      type = "device",
      value = true
    } },
  operator = "all"
}
 
AKCJE
fibaro.call(21'turnOn')
ficaro.sleep(6*5000)
fibaro.call(21'turnOff')

 

Dzięki,

Piotr

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Witam.

Nie wiem czy pomogę, ale ja bym to zrobił mniej więcej tak:

 

DEKLARACJE (Warunki/Wyzwalacze)

{
  conditions = {  {
      id = 21,
      isTrigger = false,
      operator = "==",
      property = "state",
      type = "device",
      value = false
    }, {
      id = 58,
      isTrigger = true,
      operator = "==",
      property = "value",
      type = "device",
      value = true
    } },
  operator = "all"
}
 
AKCJE
if tonumber(fibaro.getValue(60, "value")) < 20 then
    fibaro.call(21'turnOn')
    ficaro.sleep(30*1000)
    fibaro.call(21'turnOff')
end
 
Pozdrawiam
Link to comment
Share on other sites

  • 0

Również mam problem z prostą sceną oświetleniową. Przesiadłem się z HCL i tam nie miałem problemu. Na HCL ustawione miałem, że jak wykryje ruch to ma uruchomić światło na 45s. Na HC3 nie działa to tak jak chcę. Oczywiści chodzi o sceny blokowe. W HC3 musze ustawić, że jak wykryje ruch to ma włączyć światło a następnie wyłączyć z opóźnieniem 45s. Niestety się to nie sprawdza gdyż zawsze po 45 s wyłącza światło nawet jak ruch trwa. Pierwsze wykrycie uruchamia scenę i nieuchronnie światło jest wyłączane po 45s. Zrobiłem więc dwie sceny blokowe. Jedna uruchamia światło gdy wykryje ruch a druga gdy światło jest włączone i nie wykrywa ruchu to ma wyłączyć po 45s. Również się nie sprawdza gdyż po wykryciu ruchu uruchamia się scena gaszenia i nawet pojawienie ruchu tego nie zatrzyma więc światło gaśnie jak ktoś jest w środku. W HCL była prosta zależność gdy przez 45 s nie wykryjesz ruchu to zgaś światło. Czy jest coś takiego możliwe w HC3?  góry dziękuje za wskazówki.

Link to comment
Share on other sites

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...