Jump to content

Bobby g

Members
  • Posts

    3
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Bobby g's Achievements

Newbie

Newbie (1/6)

0

Reputation

  1. I followed the wiki to reset the Eisy, but it only seems to reinstall IoX. Customization to FreeBSD made via SSH (e.g. to /etc/rc.conf, pkg installs) are not reverted to default. How can I do a complete reset, including a fresh install of FreeBSD? Factory Reset Click the button 10 times Please wait 5 minutes after factory reset before attempting to reconnect to system. If System is not found by finder after the 5 minute wait period please reboot system by clicking the button 5 times and waiting one minute for system to come online.
  2. In searching, I have not found a way to schedule a reboot of the ISY994. I wrote this script (for macOS) to reboot every Sunday at noon (via crontab). Is there a better way? How often should the ISY994 be restarted? #!/bin/sh # Name: # ----- # restart_isy.sh # # Purpose: # -------- # This job will be used to restart ISY994 # # # Customization: # -------------- # # IP IP address of ISY994 # USERID Userid to use # PWD Password to use # # Crontab Example: # ---------------- # This example runs the job on Sundays at noon # # MIN HOUR MDAY MON DOW COMMAND # 0 12 * * 0 /Users/me/bin/restart_isy.sh &> /dev/null PWD=`cat $HOME/Boxcryptor/Boxcryptor-Encrypted/Keys/isy994.txt` USERID="mainuser" IP="168.1.1.201" /usr/bin/expect -f - << EOF spawn /usr/local/bin/telnet expect "telnet>" send "open $IP\r" sleep 1 expect "Username:" send "$USERID\r" sleep 1 expect "Password:" send "$PWD\r" sleep 1 expect "http://$IP>" send "RS\r" EOF
  3. We like having our mini-remotes and have one in several rooms in our house. However, any time we changed a scene related to a mini-remote, we would have to find all the mini-remotes and manually set them in update mode. Maybe we are lazy, but having to gather my three remotes every time we made adjustments was a pain. Instead, we created the following set of programs to control the buttons on a mini-remote. For each button, you need to create one scene and eight programs. You never have to put the mini-remotes in update mode. Scene: this has all the devices you want the button to control Programs: One to be used to tell if any of the devices in the scene are on or off. Seven Programs: to be used for ON, OFF, FAST ON, FAST OFF, FADE UP, FADE STOP, FADE DOWN Is this crazy? Or is there a better way to do this? ------- 1. Create a separate Scene for each button of the mini-remote. I use the eight-button remote and have each remote do the exact same function, and then in each of the scenes add the devices that you want to control. Here is what the scene for the "A" button looks like: 2. Next create a program for each button that is true if any light in that scene is on. This will be used in the following program to determine if the button press should turn the scene on or off. Here is what the program for the "A" Scene looks like: MiniRemote-A-Any-ON If 'Family Room / Family Room KeyPad / Family Room KeyPad-Outlets' Status is not Off Or 'Family Room / Family Room Outlets' Status is not Off Then No Actions - (To add one, press 'Action') Else No Actions - (To add one, press 'Action') 3. Finally, create a separate program for each button press. I created a program for ON, OFF, FAST ON, FAST OFF, FADE UP, FADE STOP, FADE DOWN: FadeDown There are three remotes at our house, so I need to check if an of the three remotes have a button press: MiniRemote-A-FadeDown If 'Mini Remotes / Mini Remote - 1 / Mini Remote-1-A' is switched Fade Down Or 'Mini Remotes / Mini Remote - 2 / Mini Remote-2-A' is switched Fade Down Or 'Mini Remotes / Mini Remote - 3 / Mini Remote-3-A' is switched Fade Down Then Repeat 2 times Set 'Scenes / Mini Remotes Scenes / Mini-Remote-A' Fade Down Else No Actions - (To add one, press 'Action') FadeStop MiniRemote-A-FadeStop If 'Mini Remotes / Mini Remote - 1 / Mini Remote-1-A' is switched Fade Stop Or 'Mini Remotes / Mini Remote - 2 / Mini Remote-2-A' is switched Fade Stop Or 'Mini Remotes / Mini Remote - 3 / Mini Remote-3-A' is switched Fade Stop Then Repeat 2 times Set 'Scenes / Mini Remotes Scenes / Mini-Remote-A' Fade Stop Else No Actions - (To add one, press 'Action') FadeUp MiniRemote-A-FadeUp If 'Mini Remotes / Mini Remote - 1 / Mini Remote-1-A' is switched Fade Up Or 'Mini Remotes / Mini Remote - 2 / Mini Remote-2-A' is switched Fade Up Or 'Mini Remotes / Mini Remote - 3 / Mini Remote-3-A' is switched Fade Up Then Repeat 2 times Set 'Scenes / Mini Remotes Scenes / Mini-Remote-A' Fade Up Else No Actions - (To add one, press 'Action') FastOff MiniRemote-A-FastOff If ( ( 'Mini Remotes / Mini Remote - 1 / Mini Remote-1-A' is switched Fast On Or 'Mini Remotes / Mini Remote - 1 / Mini Remote-1-A' is switched Fast Off ) Or ( 'Mini Remotes / Mini Remote - 2 / Mini Remote-2-A' is switched Fast On Or 'Mini Remotes / Mini Remote - 2 / Mini Remote-2-A' is switched Fast Off ) Or ( 'Mini Remotes / Mini Remote - 3 / Mini Remote-3-A' is switched Fast On Or 'Mini Remotes / Mini Remote - 3 / Mini Remote-3-A' is switched Fast Off ) ) And Program 'MiniRemote-A-Any-ON' is True Then Repeat 2 times Set 'Scenes / Mini Remotes Scenes / Mini-Remote-A' Fast Off Else No Actions - (To add one, press 'Action') FastOn MiniRemote-A-FastOn If ( ( 'Mini Remotes / Mini Remote - 1 / Mini Remote-1-A' is switched Fast On Or 'Mini Remotes / Mini Remote - 1 / Mini Remote-1-A' is switched Fast Off ) Or ( 'Mini Remotes / Mini Remote - 2 / Mini Remote-2-A' is switched Fast On Or 'Mini Remotes / Mini Remote - 2 / Mini Remote-2-A' is switched Fast Off ) Or ( 'Mini Remotes / Mini Remote - 3 / Mini Remote-3-A' is switched Fast On Or 'Mini Remotes / Mini Remote - 3 / Mini Remote-3-A' is switched Fast Off ) ) And Program 'MiniRemote-A-Any-ON' is False Then Repeat 2 times Set 'Scenes / Mini Remotes Scenes / Mini-Remote-A' Fast On Else No Actions - (To add one, press 'Action') Off MiniRemote-A-Off If ( ( 'Mini Remotes / Mini Remote - 1 / Mini Remote-1-A' is switched On Or 'Mini Remotes / Mini Remote - 1 / Mini Remote-1-A' is switched Off ) Or ( 'Mini Remotes / Mini Remote - 2 / Mini Remote-2-A' is switched On Or 'Mini Remotes / Mini Remote - 2 / Mini Remote-2-A' is switched Off ) Or ( 'Mini Remotes / Mini Remote - 3 / Mini Remote-3-A' is switched On Or 'Mini Remotes / Mini Remote - 3 / Mini Remote-3-A' is switched Off ) ) And Program 'MiniRemote-A-Any-ON' is True Then Repeat 2 times Set 'Scenes / Mini Remotes Scenes / Mini-Remote-A' Off Else No Actions - (To add one, press 'Action') On MiniRemote-A-On If ( ( 'Mini Remotes / Mini Remote - 1 / Mini Remote-1-A' is switched On Or 'Mini Remotes / Mini Remote - 1 / Mini Remote-1-A' is switched Off ) Or ( 'Mini Remotes / Mini Remote - 2 / Mini Remote-2-A' is switched On Or 'Mini Remotes / Mini Remote - 2 / Mini Remote-2-A' is switched Off ) Or ( 'Mini Remotes / Mini Remote - 3 / Mini Remote-3-A' is switched On Or 'Mini Remotes / Mini Remote - 3 / Mini Remote-3-A' is switched Off ) ) And Program 'MiniRemote-A-Any-ON' is False Then Repeat 2 times Set 'Scenes / Mini Remotes Scenes / Mini-Remote-A' On Else No Actions - (To add one, press 'Action')
×
×
  • Create New...