Aller au contenu

Clabbe

Membres confirmés
  • Compteur de contenus

    10
  • Inscription

  • Dernière visite

À propos de Clabbe

  • Date de naissance 22/09/1980

Profile Information

  • Sexe :
    Male
  • Ville :
    Gothenburg
  • Box
    Home Center 2
  • Version
    2

Clabbe's Achievements

Newbie

Newbie (1/14)

2

Réputation sur la communauté

  1. Clabbe

    Support Gea

    Ooooh thank you very very VERY much.. I had 32 triggers, and when I looked throu them all I saw that one that I dont have anymore.. So now I have 31 triggers, and all seams to work,,,, Thanks again...
  2. Clabbe

    Support Gea

    It hasnt changed. Since I can se that it registers movement when I use 1, but not -1 So something in the new Beta dosent let GEA use -1??
  3. Clabbe

    Support Gea

    Haha sorry, I can promise you that I wrote everything in english. (everyone that can swedish, can se that what I wrote before is not "real" swedish) I think I pushed, "Review" before I posted my comment, and when I reviewed it I maybe had translate on in my Google Chrome =) But I will write again sorry. My GEA wont work since I updated my HC2 to Beta 4.062 Easy lines like this dont work any more. GEA.add(id["PIR_KOK"], -1, "", {{"Time", "19:20", "21:00"}, {"turnOn", id["KOK_LAMPA"]}}) Nothing shows up in the DEBUG window when the Fibaro Eye register a movement. Its like nothing happens at all, it wont trigger the script. But I also have som lines form my alarm, and theese works.. local SensorGroup1 = { id["KITCHEN_DOOR"], id["HALL_DOOR"], id['LIVING_DOOR'], id["PIR_VRUM"], id["PIR_KOK"], id["PIR_UPPE"], } GEA.add (true, 1, "", {{"Global", "SensorGroup1", "Safe"}, {"Repeat"}}) for _,v in ipairs(SensorGroup1) do GEA.add (v, 1, "", {{"Global", "SensorGroup1", "Breached"}, {"Repeat"}}) end And these lines shows up in the debug window when the same fibaro eye triggers. But as I said before, it wont trigger the light.. And now when I have looked furter, it seams to work if I write GEA.add(id["PIR_KOK"], 1, "", {{"Time", "19:20", "21:00"}, {"turnOn", id["KOK_LAMPA"]}}) whitout the -1 But it takes long time for the light to turn on then. Kind regards
  4. Clabbe

    Support Gea

    Min GEA fungerar inte eftersom jag uppdaterat min HC2 till den senaste Beta. "Beta 4,062" Là¤tt rader som denna arbetar inte là¤ngre. GEA.add (id ["PIR_KOK"], -1 "," {{"Time", "11:00", "Soluppgà¥ng"}, {"TURNON" id ["TVRUM_LAMPA"]}}) Ingenting visar upp i felsà¶kningsfà¶nstret, nà¤r registret Fibaro Eye rà¶relse .... dess som det finns nà¥gon rà¶relse alls. Mà¥l Jag har ocksॠfà¶ljande tà¤vlingar linjer fà¶r larm systemet. Lokal SensorGroup1 = { id ["KITCHEN_DOOR"] id ["PIR_KOK"] id ["PIR_UPPE"] } GEA.add (sant, 1 ",", {{"Global", "SensorGroup1", "Safe"}, {"Repeat"}}) fà¶r _, v i ipairs (SensorGroup1) gà¶ra GEA.add (v, 1, "", {{"Global", "SensorGroup1", "à¥sidosatt"}, {"Repeat"}}) à¤nde GEA.add (sant, 1 ",", {{"VirtualDevice" id ["VD_LARM"], "5"}, {"Repeat"}}) Fà¶ljande tà¤vlingar dyker upp i Debug fà¶nstret, sॠnà¤r jag stà¤lla in den till ett globalt och omfattande Kontrollera sedan sà¶mmarna att arbeta, jag kan inte syftet slॠpॠljuset med den fà¶rsta raden?
  5. Clabbe

    Support Gea

    Hi, its 258pages here now, and I have looked at many of them. but I havent seen a simple solution for this.. I have a VD "alarmclock" this VD sets a global "alarmtime" to lets say "07:10". And then I whant GEA to use this global. Like this.. GEA.add(true, 30, "", {{"Time", alarmtime, alarmtime+2 }, {"turnOn", id["LAMP"]}}) but it dont work, is there a simple solution for this? Because I whant to be able to alter the timeschedule for some lamps, via my VD that sets the time. Kind regards
  6. Hello I got it to work 2-3 times. But now it aint working again. And also when it worked.. It was looping, I heard the same message 3-4 times =(
  7. Clabbe

    Support Gea

  8. Clabbe

    Support Gea

    --ALARM-------------------- local SensorGroup1 = { id["KITCHEN_DOOR"], id["HALL_DOOR"], id['LIVING_DOOR'], id["PIR_VRUM"], id["PIR_KOK"], } GEA.add (true, 1, "", {{"Global", "SensorGroup1", "Safe"}, {"Repeat"}}) for _,v in ipairs(SensorGroup1) do GEA.add (v, 1, "", {{"Global", "SensorGroup1", "Breached"}, {"Repeat"}}) end GEA.add ({"Global", "SensorGroup1", "Safe"}, 20*60, "All safe for #duration#, activate shell alarm", {{"Time", "22:06", "05:30"},{"Portable", 77}}) GEA.add(id["PIR_UPPE"], -1, "Movement on upperfloor Deactivate shell alarm", {{"Time", "23:00", "Sunrise"},{"Portable", 77}}) Hi thanks a lot. At least Im able to save the lines without GEA complaining =) So i think this will work. (Yes. Im just sending push for now, I will change this to push a bottom in a VD instead, when all tests are done) But on thing im also wondering. Can I do like this. GEA.add ({"Global","Alarm","Deactivated"},{"Global", "SensorGroup1", "Safe"}, 20*60, "All safe for #duration#, activate shell alarm", {{"Time", "22:06", "05:30"},{"Portable", 77}}) GEA.add({"Global","Alarm","ShellAlarm"},id["PIR_UPPE"], -1, "Movement on upperfloor Deactivate shell alarm", {{"Time", "23:00", "Sunrise"},{"Portable", 77}}) Because I dont want this to happen if the alarm is already set as activated. So first line should only happen if Global "Alarm" is set to Deacitvated and second line only if Global "Alarm" is set to ShellAlarm, because the alarm should not be deactivated if the Alarm is set to Activated. Kind regards.
  9. Clabbe

    Support Gea

    Hi, I can admit that I havent read all 198pages, but many of them. And I cant find a solution to my problem. Im wondering if I can do something like... If doormagnet is safe and motiondetector is safe then send push. Im trying with lines like this below, but it dont work. GEA.add( {id["KITCHEN_DOOR"], id["MOTION_KITCHEN"]}, 5*60,"", {{"Inverse"}, {"Time", "23:06", "Sunrise+20"},"Activate Alarm? (#date# #time#)",{"Portable", 77}}) The thing that I really want to do, is to check if 3doors and 2motiondetectors is safe for 30minutes and a global variabel "Alarm" is "deactivated" and the time is between 23:00->05:30 then push button.(to arm alarm. And also, If globalvariabel "Alarm" is "Bottomfloor" and motiondetector in stars (id["MOTION_STAIRS"]) have movement, push button to deactivate the alarm. (Someone is going down from the upper floor in the middle of the night and the alarm should not start) So my main concern is if I can check multiple motiondetectors, and how its done. Kind regards
  10. Hello Im new to fibaro and GEA. Have had it for 2months now, and the start wasnt nice. 1,5month with just problems... But finally when fibaro did the beta version, everything started to work. And now Im on GEA. and having som difficulties. =( And.. Im from Sweden. =)
×
×
  • Créer...