Jump to content

dpayeur

Members
  • Posts

    5
  • Joined

  • Last visited

dpayeur's Achievements

Newbie

Newbie (1/6)

0

Reputation

  1. Thanks for the replies. I got it working now. I was stomped by the program's ability to quit if its conditions turn false during the execution ... I guess I had too much of a 'procedural' programming minding. Thanks to all Donald
  2. ergodic, thanks for your reply. But what happens if the light goes to 50% and I bring it back up to ON during the 10 secs wait. It'll force it to OFF after the wait. I really need the program to check that the lamp is still at 50% before it turns it OFF... thanks Donald
  3. I installed 2.7.6 and indeed the REST interfaces are working. I thought it was provided in earlier 2.7 builds too. Oh Well. Sorry for the noise. Thank you. Donald
  4. Hello al, I'm trying to interact with my ISY99i (2.7) via the REST interface and I'm having problems. Calling http://1.2.3.4/rest/nodes from firefox gives me a blank page. From IE it says the page cannot be found (http 404). And using wget it says ERROR 404. In all cases I entered the proper credentials. Am I missing something ? thank you Donald
  5. Hello all (first post here), I have a new ISY-99i (2.7) and I love it! After fighting with mControl, HouseLinc and some home made solutions using SDM, the ISY works like a charm and does what you expect it would. Thank you UD. Now for a small problem ... I want my bedroom table lamp to turn off in two steps, to allow me to put my book down before it goes full off. Something like this: if(lamp is ON) { set lamp = 50% wait 10 seconds if(lamp is 50%) { set lamp = OFF } } I add the first 'if' to make sure that if the lamp is already OFF it doesn't go to 50% for a few seconds and then back OFF. And the second 'if' to allow me to 'override' by turning it back ON during the wait to read a bit longer. To do that with the ISY, I made two programs: "Bedroom OFF" A like this(approx): If Time Is 10:15:00pm And Status 'Lamp' is ON Then Set 'lamp' 50% Wait 10 seconds Run Program 'Bedroom B' (Then Path) Else - No Actions And "Bedroom B" like this (approx): If Status 'Lamp' is 50% Then Set 'lamp' Off Else - No Actions The problem is the 'Wait' command does not seem to work. It does wait because the status of program A says it's running for a little while but it goes right on and run program B, while waiting. I found some references to that in the forums but no solutions. Is there a (better) way to accomplish this simple need ? thank you Donald
×
×
  • Create New...