Jump to content

ndfan77

Members
  • Posts

    22
  • Joined

  • Last visited

Everything posted by ndfan77

  1. Ah, and so it does. Thanks!
  2. I'm trying to setup a Caddy reverse proxy (which does automatic certificates) in front Polyglot. What's the right/supported method to configure Polyglot to use http instead of https? TIA...
  3. I might be missing something, but I'd like my mini remote to toggle the *current* state of a scene (not toggle whatever state the mini controller last sent). From what I can tell, the mini remote has three modes: 4 button (the two buttons in each row act as absolute on or off -- which seems like a waste of a button). 8 button -- toggle (sends codes that are opposite whatever state the mini remote last issued -- which may not coincide with the state the scene is actually in) 8 button (always send the on code, which won't work to turn off a scene when directly linked as a controller) So how do you get a single button on a mini remote to toggle the *current* state of the scene? Say for instance, I have some backyard floods already controlled by an on/off switch, and a button on a 8-button dimmer. If the flood light has been turned on by the 8-button dimmer, how do I toggle them off with a button on the mini-remote (or vice-versa) reliably with just one button push? Seems like this has to be done with an ISY994i program (in order to know real time status of the scene), because when the mini remote is a controller for a scene it has no way to know what has happened to the scene other than whatever codes it has sent -- which may not be accurate when other devices are also controllers, right? Or am I missing something? Thanks in advance!
  4. Is this still the case?
  5. Wouldn't the net effect of that logic be to only send one notification (after the first 25 hour period expired without a heartbeat), but then nothing more after another 25 hours, etc. ? And, also, isn't it dependent on the heartbeat firing at least once to start the 25 hour wait? I switched to a "two-part" approach. Instead of the two lines above in the "Then" section I'm simply resetting a watchdog variable ($Int_1), and then using another program (Leak Sensor HB Monitor) that has the Run at Startup flag set and runs continuously (incrementing the watchdog variable every hour; if it exceeds 26 send a notification, reset the variable, wait an hour, and start over; otherwise increment the variable, wait an hour, and start over): Program: Leak Sensor Heartbeat If Control 'Leak Sensor-Heartbeat' is switched On Or Control 'Leak Sensor-Heartbeat' is switched Off Then $Int_1 = 0 Else - No Actions - (To add one, press 'Action') Program: Leak Sensor HB Monitor If $Int_1 > 26 Then $Int_1 = 0 Send Notification to 'HeartbeatMissing' Wait 1 hour Run Program 'Leak Sensor HB Monitor' (If) Else $Int_1 += 1 Wait 1 hour Run Program 'Leak Sensor HB Monitor' (If)
×
×
  • Create New...