Jump to content

MrBill

Members
  • Posts

    4669
  • Joined

  • Last visited

Everything posted by MrBill

  1. This can’t work for eisy/ISY. The alternate email address can be used by a device connected to iMessage eco system (i.e. an Apple device logged into iMessage). If a non-Apple device sends a text message to the alternate address it will either fail, or end up being converted email and land in the email box i.e. the dummy gmail you suggest creating. I’ve used Pushover since long before the Notification plugin, but if you’re insistent not using a 3rd party install the UD mobile app and use the Notification feature.
  2. A few improvements, a variable isn’t really needed. ------------------------------------------------- Motion turns On Switch If 'Motion Detector' is switched On (Control) Then Set 'Test Switch' On Wait 1 minute Set 'Test Switch' Off ------------------------------------------------- Override - Stop the Timer If 'Test Switch' is switched On (Control) And ‘Test Switch’ status is On Then Disable ‘Motion turns on Switch’ Stop program 'Motion turns on Switch' ** if light is on and on toggle is pressed ** I’m not sure you need both disable and stop, but disable is definitely needed. (Disable may or may not also stop, try it I can’t remember off the top of my head.) point to consider: the way you had the program, even tho you stopped the program, it would still retrigger next time there is motion. ------------------------------------------------- Set Variable >>>> (to prevent motion restarting timer) If 'Test Switch' is switched off And 'Test Switch' Status is off. Then Wait 10 seconds Enable program ‘Motion turns on switch’ ** if light is turned off once, the motion will not be reenabled, and light will stay off. ** If switch is turned off, then turned off again, then re-enable the motion. ** to always re-enable to motion just delete the “and” line in the if statement. ** the wait 10 seconds lets you get away without the motion turning the light on for 1 minute. ------------------------------------------------- Disable is under Programs on the menu. Without Disabling the program addition motion will retrigger it. Stop only interrupts the wait, and prevents the off statement from being run. another consideration: I assume you’re using an Insteon motion (which I don’t have) batttery powered motions typically don’t retransmit often to save battery. I’m not sure if the delay can be adjusted. But keep that in mind when figuring out the delay the light stays on, it must be at least as long as the time period the motion waits to transmit again.
  3. Are you utilizing the portal geofence? With perhaps Locative? Or the UD mobile App then YES the program should run when KBM Home changes state. So leaving and anrriving and time triggers will both trigger the program. I’d change the end time to 11:59:59 pm, for one it’s easier to understand at a glance, second there was once wonkyness with 12:00:00 AM and next day/same day. I don’t remember the details but I think it got fixed.
  4. I’ve been thinking about this issue and only have two suggestions left: leave it alone and don’t fiddle with it as @paulbates suggests. If that doesn’t solve it, then please delete the saved programs, then click save, close the admin console, delete the admin console, clear the Java cache, redownload and install a fresh copy of the admin console, then configure the time zone in the admin console and add a test program, save it and leave it alone. also please create an integer variable called test or something and have the then statement set test = test + 1 so that you can determine the program is in fact not firing. Maybe the underlying problem is the program is running but there’s a communication issue.
  5. You might open a ticket with support, it should work easily. Been using it for many years—so the function does indeed work.
  6. Right, in each case the first ‘if’ element makes the program true, which causes ‘then’ to run. The second ‘if’ element makes the program false, which causes ‘else’ to run.
  7. Add to program: schedule change “time is” to “from” “To” will magic appear, allowing something like ‘from sunset for 4 hours”
  8. In the upper right corner of the first screenshot it shows your next sunset to be at 7:52 pm, I’m not sure why with the offset you have set it would show about 30 min after, but it looks correct. BTW, if you haven’t discovered this: if Sunset to Sunrise then Turn on something else Turn off something “then” will run at sunset, “else” will run at sunrise. those two things are the only things the program does, specifically it does not enforce that “something” will remain on during that time, it only send 1 on command and one off command at the times listed. obviously, something like sunset to 11pm will work just fine too.
  9. @CWM please check your chain of folders above this program. If any are disabled folders (IF condition in folder if is false) the program will not run either automatically or manually selecting “run then”. I suspect you have that issue. also check your time zone in the configuration section and then reboot the ISY. @Ross thanks for the kind words.
  10. Please right click the program name in the program tree and choose copy to clipboard. Paste that here in a reply.
  11. 5.3.0 is pretty old. many bugs have been repaired since. at some point you should consider upgrading. The most important question is what happens when you attempt to turn the scene on or off via the buttons in the admin console? does it work from there? Next move to the programs tab and click then right click the program name, choose Run Then and then do it again and Choose Run Else. did it work from here?
  12. to add to @Brian H comments, the fastest way to know if you have Pro vs non-pro is to look at the admin console ribbon... if you see these two buttons at the end of the ribbon you have pro, if they are missing you have non-pro. The second fastest way to check is Help>About.... the section about product will contain the word "pro" probably on the first line of that section. If you don't have pro, it can't be added anymore because the 994 is deprecated.
  13. that sounds like a GUI defect.... please open a ticket to best document for UDI. Include screenshots and virtually the same report you've made here. https://www.universal-devices.com/my-tickets/
  14. MrBill

    ISY backup fails

    If you read many HA forum or reddit posts, someone will inevitably say they use a SD card on a Pi4 for HA... and the replies will go nuts with people posting that it is an insane practice to even think about running HA on an SD card, and that the only correct method is to use an NVMe SSD. That said, I run HA on a microSD card... first one failed after about 18 months, second one is a better quality card. At my son's house his first failed after about 12 months, the second a better quality card failed in under 30 days (I'm guessing that was manufacturing defect). One thing about HA tho is I always have a current backup because they occur every night automatically and upload to google drive. (there's a nice add on for that) the ISY994 is on it's way out. but in general I've been harping for 4 or 5 years that a high quality card with an A1 rating should be used. Watch out for the fake claims and fake names made by manufacturers tho, the memory card industry using fancy marketing names to attract and upgrade buyers.... A1 rating is the thing to look for.
  15. MrBill

    ISY backup fails

    I disagree. With an ISY994 it's not a question of IF, but WHEN. The most problematic thing an ISY is constantly write and re-write log files. Over time that will result in failure. New larger cards with the A1 rating will help, but not completely alleviate the issue. (note the ISY doesn't have the hardware component to take advantage of A2 rating features, A1 is fine which is what most 32gb and smaller cards have anyway.) It's also worth noting that my logfile turnovers were much smaller prior to node servers. Prior to nodeserver the log file had months worth of entries. After nodeservers the logfile held less than 24 hours.
  16. When I'm helping someone debug their programs, its defiantly better if they are posted into the forum as TEXT. Why because it's easier to copy and paste the program then make changes to it.... If I actually have to type what's in your screenshot to share a proposed change it may not happen. If I can copy and paste it's much more efficient.
  17. also, what node server is it specifically, in slot 2?
  18. I agree, and I would suggest body... i can't remember why I think this, but it seems like there is/was/might be a long standing bug around displaying variables in the subject line. Once it's working them move to putting it where you want it.
  19. Excuse me, but this doesn't answer the question. Nor does it help people scrolling thru the forum in the near or distant future trying to figure out there own problem. I've seen people in this very forum later reply, "sorry I assumed since the unit had the lastest firmware because it was just shipped to me. I've also seen, I didn't know we had a 5.6.3 I thought it was 5.3.0. Look at the admin console Help > About and answer the question. Also verify that firmware and UI versions are identical. </rant off> this simply must be programs. I can't explain why they behave differently today than they used to without seeing your programs. Yours is also a one-off complaint.... meaning out of 1000's you're the only one reporting this problem, that fact also points to your programs. When a change or bug comes thru that effect the way things have worked for years... we hear about it from 100's of users and those of use who help people in the forum get tired of typing the same thing over and over again... that's not happening here. One person is complaining that on-level suddenly and magically gets changed somehow. Most of us are happy to help you figure it out, but you'll have to play the game too.
  20. Does it work if you try the same variable in the body instead? (this will suggest if there's an issue with where it's used and opposed to not working at all.)
  21. MrBill

    Blue Iris

    @pyrorobert https://blueirissoftware.com/Forum/viewtopic.php?t=3092 https://blueirissoftware.com/forum/viewtopic.php?t=2986 https://blueirissoftware.com/forum/viewtopic.php?t=2802
  22. Three possibilities... the On-level is actually changing, this is likely a program changing the on-level. The On-level is not actually changing but for some reason the admin console is displaying it as zero. In this case clear the java cache including installed applications and applets, remove any copie of start.jnlp or admin.jnlp that are laying around your filesystem, download a new copy of start.jnlp and double click it. When you're setting the on-level in the admin column you are not setting the value in dropdown and then Pressing the On_level button to the left of the dropdown.
  23. you must delete the .state files as linked by @Geddy they are corrupt. the admin console is opening outside the visible window for some reason. I'm not certain you needed to change your MicroSD card, you might retry the old one after your get your admin console issue resolved. FYI, With a new unused MicroSD card installed, the firmware bootloader burned onto the ISY994 is only a partial firmware image and is very old at that, to be operational you MUST use Help > Manually Upgrade ISY and load a complete firmware file.
  24. Reboot your ISY. If that doesn't solve it, clear your java cache including installed apps and applets. delete any files you have laying around named start.jnlp, download a fresh copy of start.jnlp. and run it. if your on a mac you may need admin.jnlp instead.
  25. Internet Access Disabled on Help > About doesn't actually mean that internet access is disabled. In short it means something else entirely, and perhaps should be labeled "UPnP disabled". To be clear: Internet Access on Help > About should say disabled, unless you're trying to use UPnP to expose your ISY to the internet, which might have been something people were doing when the 994 was invented, but not a safe or best practice in 2023. On to your problem.... what happens when you log into the portal? does the green Online circle show? in the admin console, Configuration tab, Portals Sub tab does it show Online and Registered? back in the portal, Select Tool > Information > ISY Portal Access License... has your subscription expired?
×
×
  • Create New...