
ldrinc
Members-
Posts
104 -
Joined
-
Last visited
Everything posted by ldrinc
-
-
Can someone help me understand what the grayed out symbol means in the image attached?
-
Thanks all... Your suggestions fixed my issue. Thanks again.
-
Hi All Need help with a simple program. I'd like my hidden door sensor to trigger a hallway light to come for 5 minutes when the sensor is switched on. This is what I have so far test sensor - [ID 014B][Parent 0032] If Status '32.7A.4D.1 - Door Sensor' is Off Then Set 'Master Bedroom / M/Bedroom light' On Else - No Actions - (To add one, press 'Action')
-
ok, I figured it out everything works as it should. Here is what I did. The settings for the IP2SL should be as follows. Serial Parameters : Multiple Ports Enabled Baud Rate 57.600 Flow Control None Stop Bits 1 Parity None Data Bits 8 Frame Errors "0" Parity Errors "0" Overflow Errors "0" Previously, I had "Multiple Ports" disabled
-
I am having trouble creating a resource for powering on/off my KD 4x4 Matrix Switcher. Can anyone help me with how to setup and format the command in the resource. attached are some particulars from the KD manual. Also, I am using a Global Cache Itach IP2SL to transmit the command via the ISY. I have setup the IP2SL with the following parameters. Baud rate: 57,600 Data Bits: 8 Parity: None Stop Bits: 1 Flow Control: None Carriage Return: Required Following is the network resource that I have created. TCP 192.168.1.16 Port = 4999 timeout = 500 ms C-Escaped Body = PF\r\n Actual = PF The error in the ISY log is as follow: [TCP-Conn] -1/-140002, Net Module Rule: 226 What am I missing?
-
That is correct. I am talking about a potential failure of the A/C system not the thermostat in this case.
-
The TSTAT is located in my vacation home three hundred miles away. The program that I was suggesting is to prevent further damage (if any) until I can have the unit checked out.
-
I have three Venstar thermostats in my home. All three have the Insteon Venstar Adapters attached to them. In the past I have had a situation where my hvac units where failing causing the temperature on the thermostat to rise higher which made the AC unit run non stop. I would like to put a protect program in the isy to have the TStats turn off if the AC if temperature in the home reaches a certain point in the summer. Below is my attempt at this programming. Am I on the right track with programming? Is there anything that you could add/subtract? If Status 'First Floor Thermostat' > Mode Cool And Status 'First Floor Thermostat' > 77° (Temperature) Then Set 'First Floor Thermostat' Mode Off Send Notification to 'Default' content 'First Floor Thermostat' Else - No Actions - (To add one, press 'Action')
-
Can someone help me with the command structure(syntax) for issuing an RS232 command via the ISY. I already have the ISY994i with the networking module installed and I know how to create the resource but not so sure what to use to execute the command (http, tcp, etc). Any help would be appreciated. The device that I am trying to control is my Key Digital Matrix Switch. When I set up the GC IP2SL the manufacturer suggests that the following settings be applied: » Baud rate: 57,600 » Data Bits: 8 » Parity: None » Stop Bits: 1 » Flow Control: None » Carriage Return: Required » Line Feed: Required The command that I would like to use to create an ISY resource for will switch Output 3 to Input 1. The command that I should use is SPO01SI03. How do I write this command in the isy resource?
-
When moving to the configuration tab in my isy admin console. I get the following messages in the event viewer. Wed 04/22/2015 09:58:40 PM : [FileOpen ] Open failed for [/CONF/ELK.CNF] ® Wed 04/22/2015 09:58:42 PM : [FileOpen ] Open failed for [/CONF/ELK.CNF] ® Wed 04/22/2015 09:58:43 PM : [FileOpen ] Open failed for [/CONF/ELK.CNF] ® Wed 04/22/2015 09:58:44 PM : [FileOpen ] Open failed for [/CONF/ELK.CNF] ® Is this normal? If not, how do I fix this?
-
All, I have one thing to say.... FANTASTIC!!! You guys are awesome. Turns out that I had a corrupt sd card. I changed it out for a new one and restored a backup. Everything is back the way it was. Thank you very much for your prompt responses...
-
Not sure if you can identify the problem by the lights but I have 3 solid blue lights (power, rx, tx) on and 1 red flashing led dl
-
Did that.... Same thing. Blinking Red LED
-
Updated to the latest RC thinking that it would solve problems that I was having with "Options" not showing up on the admin console. When that didnt help I wanted to go back to the previous stable firmware.
-
After an unsuccessful attempt to restore my isy to a previous file. the red light keeps blinking and I am unable to connect to my isy. Please advise. I have done a power cycle but have not had any luck with it.
-
Michel, I am using a voice control software by the name of VoxCommando. Currently, I have it executing programs and commands in my ISY nicely. I'd like to have the VoxCommando software monitor events that take place in the isy such as when a motion detector is triggered so that it will speak to me when it does.
-
I am trying to use a program to watch for events in order to trigger a program. Is there a way to have this program subscribe to my ISY for events?
-
Ok, I think I understand now. My apology for not being clear. I am working from a different computer and off of my memory at the moment and I do not have remote access to my isy to see the program that I created. That said, I will post a reply this evening when I get access to my isy.
-
Xathros, Thanks for the reply. Not sure I understand your question. The only program that calls the resource is as follows: Open XBMC (program) run if if MCE = 0 and XBMC = 0 Then Resouce XBMC (Open XBMC)
-
Looking for help with writing a program in my isy994i that will identify the state, when and if a program was executed. In a nutshell, I have two applications that I controll via my isy... XBMC and Windows MCE. Using network resources I have successfully created a program that will launch and close both applications. The problem that I am running into is that I'm not able to identify the state of these programs. Nonetheless, After doing some reading through the wiki and some threads I don't fully understand how to use the variable options that are available. My ultimate goal is to prevent both XBMC and MCE from running at the same time. Here is what I have tried so far that doesn't seem to work. Network Resources that were created include: * Open XBMC XBMC variable state = 1 * Close XBMC XBMC variable state = 0 * Open MCE MCE variable state = 1 * Close MCE MCE variable state = 0 Program created *Open XBMC IF MCE = 0 and XBMC = 0 Then Resouce XBMC (Open XBMC) When I run the if statement all it does is open and closes both applications repeatedly and it won't stop until I reset the HTPC. Any help with resolving this looping issue would be appreciated.