Everything posted by Techman
-
Can't Access Motion Sensor Options in Admin Console
The 2420M is discontinued, the current version is the 2842-222. v.41 is the firmware version. I think v.21 is the device hardware version The Insteon Address ID should be on a label inside the motion sensor. Run a Topology report, it's found under Tools | Generate Topology. That will create a list of all your devices along with their Insteon Address, firmware version, etc.
-
Can't Access Motion Sensor Options in Admin Console
If your ISY is showing the device firmware at 00 then it didn't install correctly, you should delete and then reinstall it. You'll need to manually put it into the linking mode. Make sure the sensor is within range of a dual band device. Write a program similar to the one below. Program the changes you want into the ISY, then walk in front of the motion sensor and the changes should be written to the device. If Status 'your motion sensor' is On Then Set 'your motion sensor' Write Device Updates Else - No Actions - (To add one, press 'Action')
-
Insteon Wireless Thermostat power supply recommendations
The thermostat will report temperature changes to the ISY of approximately 2 degrees. If it's on an external power supply you're also able to query the thermostat
-
Help programming a switch
Another option is to use a 6 button keypad. The 4 buttons could be used to control scenes which could then control other lights in the house while the two main buttons would the kitchen light. http://www.smarthome.com/insteon-2334-232-keypad-dimmer-switch-dual-band-6-button-white.html
-
Insteon Wireless Thermostat power supply recommendations
You can query the 2441ZTH, and make changes to its settings if it's running on an external power supply. If it's running only on batteries then you can only query or make changes if it's in the linking mode..
-
Where in Wiki for Program Icon definitions?
Take a look at this post http://forum.universal-devices.com/topic/17614-program-icons-color-codes/?hl=icon&do=findComment&comment=158584 Right click on a program and select "status icons" then click on "detailed"
-
Programs still run in folder that fails conditional check....
Is your alarmtype variable a State or a Integer variable? It should be a State variable
-
2441zth thermostat not sending updates
What's the date code and firmware version on the problem unit?
-
2441zth thermostat not sending updates
I tried everything to no avail. I ended up doing a RMA.
-
2441zth thermostat not sending updates
I just ran across the same problem with a 2441ZTH Hardware version 1.50 Firmware version 0E It reports humidity but not temperature. A factory reset didn't resolve the problem. I have several other 2441ZTH with earlier hardware and firmware that work perfectly. I'm doing an RMA on this one. The current 2441ZTH is hardware version 1.6, Hopefully they corrected a flaw in the previous release.
-
Program Device status is not responding?
A "not responding" will give you immediate results if the device does not respond to the "not responding" It's probably not a good idea to run a lot of queries as creates a lot of Insteon traffic and might interfere with your normal operation The "3:00 AM query all" does exactly that, it queries all your devices. It runs at 3 am so not to interfere with programs, etc. that may be running in earlier time slots. Is there a particular problem that you're trying resolve?
-
solder vs wire connector
when soldering you have to be careful not to apply too much heat as you can damage the relay case and the relay. I normally use an IC socket, solder to the pins on the socket then plug in the relay, or if you're inclined to solder directly to the relay pins then use a heat sink between the relay and your solder joint
-
Program question - Press on turns off, press off turns off?
add an off statement to the Else clause and change control to status in the IF statement ELSE set keypad to 0
-
Adding 2852-222 leak sensor -> comes up as Triggerlinc instead
The ISY queries the sensor to get its firmware version so it sounds like the sensor is defective. The date code indicates that they were built in January 2014. Not sure if those units even had a .40 firmware. Sensors built in late 2014 had a .43 firmware.
-
Adding 2852-222 leak sensor -> comes up as Triggerlinc instead
Do your other leak sensors also show a firmware version of v.40 Did you buy them all at the same time
-
Adding 2852-222 leak sensor -> comes up as Triggerlinc instead
Did you first delete the sensor from the ISY before you tried to add it back in, if not try doing that.
-
Adding 2852-222 leak sensor -> comes up as Triggerlinc instead
A possibility is that the Leak Sensor was programmed with the wrong firmware at the factory What's the date code and hardware version on the sensor?
-
Motion Sensor not resetting lighting
You could write a program that limits the MS turning on the lights only during the evening hours IF Time is between 7:00 pm and 7::00 am next day and MS is on and light is not on Then Turn on lights Else
-
Adding 2852-222 leak sensor -> comes up as Triggerlinc instead
After the factory reset try using auto discover rather than selecting the device type.
-
Hidden Door Sensor won't Link
The device is most likely not supported in your firmware version. The hidden door sensor has only been available for a short time. Which ISY do you have 99i or 994?, If it's the 99i then it is not longer supported and you'll need to upgrade to the 994.
-
Hidden Door Sensor won't Link
Factory reset the device then try to add it to the ISY using the auto discover option. Make sure that the sensor is first put into the linking mode. What version of the ISY firmware and UI are you running?.
-
Communication failure detection?
Other program options are CONTROL and STATUS, which respond based on a device either being physically changed or the status of a device being changed by a program or condition. Take a look at the UDI Wiki which has a lot of programming suggestions If you have a particular task that you want to accomplish just post it in the forum and you'll always get a quick answer. .
-
Communication failure detection?
Can you give an example of what it is you'd like to do. The ISY allows for a lot of creative options.
-
Communication failure detection?
I just ran some tests, it's not necessary to issue a query first in order for the program to detect a failure and send a notification. When you run the IF clause the "not responding" statement sends a query.
-
Communication failure detection?
If the IF statement in the program evaluates as true then the THEN statement will run thus sending you a notification, if it evaluates as false then the ELSE statement will run, which in this case is null. You can test the program by tripping the GFI to verify that you'll get a notification.