<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.mios.com/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.mios.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mcvdaniel</id>
		<title>MiOS - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.mios.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mcvdaniel"/>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Special:Contributions/Mcvdaniel"/>
		<updated>2026-06-03T02:51:07Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.8</generator>

	<entry>
		<id>http://wiki.mios.com/index.php/ModifyUserData</id>
		<title>ModifyUserData</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/ModifyUserData"/>
				<updated>2015-06-11T13:28:20Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:User Instructions]]&lt;br /&gt;
&lt;br /&gt;
ModifyUserData is the action used to change information like adding rooms, renaming devices, scenes and so on.&lt;br /&gt;
&lt;br /&gt;
It works as a UPNP POST request to http://IP/port_49451/upnp/control/hag which contains an XML envelope:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;s:envelope s:encodingStyle=&amp;quot;http://schemas.xmlsoap.org/soap/encoding/&amp;quot; xmlns:s=&amp;quot;http://schemas.xmlsoap.org/soap/envelope/&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;s:body&amp;gt;	&lt;br /&gt;
	&amp;lt;u:modifyuserdata xmlns:u=&amp;quot;urn:schemas-micasaverde-org:service:HomeAutomationGateway:1&amp;quot;&amp;gt;		&lt;br /&gt;
	&amp;lt;inuserdata&amp;gt;{&amp;quot;devices&amp;quot;: {    &lt;br /&gt;
  },&lt;br /&gt;
  &amp;quot;scenes&amp;quot;: {&lt;br /&gt;
    &amp;quot;scenes_1000001&amp;quot;: {&lt;br /&gt;
      &amp;quot;id&amp;quot;: 1000001,&lt;br /&gt;
      &amp;quot;name&amp;quot;: &amp;quot;New scene&amp;quot;,&lt;br /&gt;
      &amp;quot;posx&amp;quot;: 0,&lt;br /&gt;
      &amp;quot;posy&amp;quot;: 0,&lt;br /&gt;
      &amp;quot;room&amp;quot;: 0&lt;br /&gt;
    }&lt;br /&gt;
  },&lt;br /&gt;
  &amp;quot;sections&amp;quot;: {    &lt;br /&gt;
  },&lt;br /&gt;
  &amp;quot;rooms&amp;quot;: [    &lt;br /&gt;
  ],&lt;br /&gt;
  &amp;quot;users&amp;quot;: {    &lt;br /&gt;
  }&lt;br /&gt;
  }&amp;lt;/inuserdata&amp;gt;		&lt;br /&gt;
  		&amp;lt;dataformat&amp;gt;json&amp;lt;/dataformat&amp;gt;  &lt;br /&gt;
	&amp;lt;/u:modifyuserdata&amp;gt;&lt;br /&gt;
	&amp;lt;/s:body&amp;gt;&lt;br /&gt;
  &amp;lt;/s:envelope&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The objects from the JSON object are added if they contain the tag &amp;quot;json_action&amp;quot;: &amp;quot;add&amp;quot;, deleted if they contain &amp;quot;json_action&amp;quot;: &amp;quot;del&amp;quot; or merged if neither one of those is contained (default action).&lt;br /&gt;
&lt;br /&gt;
For example, assume that the data is currently like this: &lt;br /&gt;
&lt;br /&gt;
  &amp;quot;Room&amp;quot;: {&lt;br /&gt;
        &amp;quot;PK_Room_1&amp;quot;: {&lt;br /&gt;
            &amp;quot;Description&amp;quot;: &amp;quot;Living Room&amp;quot;,&lt;br /&gt;
            &amp;quot;FK_Section&amp;quot;: &amp;quot;1&amp;quot; &lt;br /&gt;
        },&lt;br /&gt;
        &amp;quot;PK_Room_2&amp;quot;: {&lt;br /&gt;
            &amp;quot;Description&amp;quot;: &amp;quot;Bedroom&amp;quot;,&lt;br /&gt;
            &amp;quot;FK_Section&amp;quot;: &amp;quot;1&amp;quot; &lt;br /&gt;
        } &lt;br /&gt;
&lt;br /&gt;
You want to remove the bedroom and add a new room called &amp;quot;Den&amp;quot; and change the Living Room to be called Kitchen. You put the following in the parm post: &lt;br /&gt;
&lt;br /&gt;
{ &lt;br /&gt;
&lt;br /&gt;
    &amp;quot;Room&amp;quot;: {&lt;br /&gt;
        &amp;quot;PK_Room_2&amp;quot;: {&lt;br /&gt;
            &amp;quot;json_action&amp;quot;: &amp;quot;del&amp;quot; &lt;br /&gt;
        },&lt;br /&gt;
        &amp;quot;PK_Room_1&amp;quot;: {&lt;br /&gt;
            &amp;quot;Description&amp;quot;: &amp;quot;Kitchen&amp;quot;,&lt;br /&gt;
        },&lt;br /&gt;
        &amp;quot;PK_Room_1000002&amp;quot;: {&lt;br /&gt;
            &amp;quot;Description&amp;quot;: &amp;quot;Den&amp;quot;,&lt;br /&gt;
            &amp;quot;FK_Section&amp;quot;: &amp;quot;1&amp;quot;,&lt;br /&gt;
            &amp;quot;json_action&amp;quot;: &amp;quot;add&amp;quot; &lt;br /&gt;
        } &lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
Note that Sections, Rooms, Devices, and Scenes are all numbered: PK_Room_1, scene_2, etc. When are adding new Sections, Rooms, Devices, and Scenes, use a number that is very high (&amp;amp;gt; 1,000,000) to prevent conflicts. Note that Room uses a really large ID. You don't want to use the next available ID, like 3, because that might already have been created by another user, and, since the ID # is the key to merging, your new room would be preserved and there would be 2 room 3's if json_action=add, or your changes would be merged and overwrite room 3 otherwise. When you use large id's &amp;amp;gt; 1m, then on save, the system automatically re-numbers them and re-outputs the renumbered result. This includes relationships as well. So if you are submitting a new scene, device, room, etc., the device may be id 1m, and reference room 2, so it goes into room 2, and a new device id 1m + 1 may reference room 1m. In this case both device id's would be renumbered, and the room 1m would be renumbered, and the reference in the device id 1m + 1 would be changed to reflect this.&lt;br /&gt;
&lt;br /&gt;
If ModifyUserData fails, it return an UPNP error.&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/AlternateEventServer</id>
		<title>AlternateEventServer</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/AlternateEventServer"/>
				<updated>2015-01-14T19:59:38Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Services]]&lt;br /&gt;
Vera calls MiOS's event servers to report events, like sensor tripped, triggers, etc. MiOS's event servers send out text messages and emails to report these events. &lt;br /&gt;
&lt;br /&gt;
Some very advanced users have asked to setup their own event server that Vera will call to report events. If you add your own, alternate event server, Vera will still send events to MiOS's event server unchanged, however Vera will also post the same event to the alternate server of your choice. &lt;br /&gt;
&lt;br /&gt;
== UI5 ==&lt;br /&gt;
* On '''UI5''' Vera will send the event as a standard HTTPS (secure) GET to &amp;lt;tt&amp;gt;yourserver/alert&amp;lt;/tt&amp;gt; with the arguments passed on the URL, like this (assuming your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;): &lt;br /&gt;
&lt;br /&gt;
  https://myserver.me.com/alert?&lt;br /&gt;
 PK_AccessPoint=[serial number of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_pk_accesspoint luup.pk_accesspoint]]&lt;br /&gt;
 &amp;amp;amp;HW_Key=[hardware key of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_hw_key luup.hw_key]]&lt;br /&gt;
 &amp;amp;amp;DeviceID=[device id that is associated with the alert]&lt;br /&gt;
 &amp;amp;amp;LocalDate=[the time the alert happened as human readable text]&lt;br /&gt;
 &amp;amp;amp;LocalTimestamp=[the time the alert happened as a unix timestamp in UTC]&lt;br /&gt;
 &amp;amp;amp;AlertType=[one of the alert types below]]&lt;br /&gt;
 &amp;amp;amp;SourceType=[one of the source types below]&lt;br /&gt;
 &amp;amp;amp;Argument=[an optional argument depending on the alert type]&lt;br /&gt;
 &amp;amp;amp;Format=[a file format, not normally used]&lt;br /&gt;
 &amp;amp;amp;Code=[a code for the alert, usually the variable that changed]&lt;br /&gt;
 &amp;amp;amp;Value=[the value corresponding to the code above]&lt;br /&gt;
 &amp;amp;amp;Description=[a human readable description of the event, or comments regarding it]&lt;br /&gt;
 &amp;amp;amp;Users=[a comma separated list of user id's that should be notified of the event]&lt;br /&gt;
&lt;br /&gt;
The page on your event server must respond with a plain text response which should look like this:&lt;br /&gt;
 HTTP/1.1 200 OK&lt;br /&gt;
 Content-Length: n&lt;br /&gt;
 &lt;br /&gt;
 PK_Alert:x&lt;br /&gt;
&lt;br /&gt;
- '''x''' is some number to identify the alert recorded on the server. It can be any number, and just ''PK_Alert:0'' if you don't assign a number to the alert.  Whatever it is will be put in Vera's logs along with the alert for cross reference.&amp;lt;br /&amp;gt;&lt;br /&gt;
- '''n''' is the content length, which is 9 plus the length of '''x''' (e.g. for ''PK_Alert:0'' the content length is ''10''). The ''Content-Length'' parameter is optional.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== UI7 ==&lt;br /&gt;
* On '''UI7''' Vera will send the event as a standard HTTPS (secure) POST to &amp;lt;tt&amp;gt;yourserver/event/event/event&amp;lt;/tt&amp;gt; passing the data as a json, like this (assuming your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;): &lt;br /&gt;
&lt;br /&gt;
  https://myserver.me.com/event/event/event&lt;br /&gt;
&amp;lt;br /&amp;gt;{&amp;quot;PK_Device&amp;quot;:,  [serial number of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_pk_accesspoint luup.pk_accesspoint]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;PK_Account&amp;quot;:,  [account id on which the Vera unit was assigned]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;LocalDate&amp;quot;:&amp;quot;&amp;quot;,  [the time the alert happened as human readable text]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Severity&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;EventType&amp;quot;:,  [one of the alert types below]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;SourceType&amp;quot;:,  [one of the source types below]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Argument&amp;quot;:,  [an optional argument depending on the alert type]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Code&amp;quot;:&amp;quot;&amp;quot;,  [a code for the alert, usually the variable that changed]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;NewValue&amp;quot;:&amp;quot;&amp;quot;,  [the value corresponding to the code above]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Description&amp;quot;:&amp;quot;&amp;quot;,  [a human readable description of the event, or comments regarding it]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Users&amp;quot;:&amp;quot;&amp;quot;,  [a comma separated list of user id's that should be notified of the event]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Icon&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;LocalTimestamp&amp;quot;:,  [the time the alert happened as a unix timestamp in UTC]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceID&amp;quot;:,  [device id that is associated with the alert]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceName&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceType&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Room&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Category&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;SubCategory&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Expiration&amp;quot;:&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;br /&amp;gt;}&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The page on your event server must respond with a plain text response which should look like this:&amp;lt;br /&amp;gt;&lt;br /&gt;
{&amp;quot;PK_Event&amp;quot; : 1234, &amp;quot;Key&amp;quot;:&amp;quot;1234&amp;quot;}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
To use this alternate event logging set the top level user_data tag &amp;quot;AltEventServer&amp;quot; to the domain of your server. If your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;, do this by changing the 'ip' to be the IP of Vera, and opening this URL: &lt;br /&gt;
&lt;br /&gt;
 http://ip:3480/data_request?id=variableset&amp;amp;amp;Variable=AltEventServer&amp;amp;amp;Value=myserver.me.com &lt;br /&gt;
&lt;br /&gt;
Then click ''Reload'' in Vera's UI to reload the engine with the changes. You can watch Vera send the data by logging into Vera's console as explained in [[Logon Vera SSH]] and then typing: &lt;br /&gt;
&lt;br /&gt;
 tail -f /var/log/cmh/LuaUPnP.log | grep 'RAServerSync::SendAlert' &lt;br /&gt;
&lt;br /&gt;
To stop logging to your own server, call the &amp;lt;tt&amp;gt;variableset&amp;lt;/tt&amp;gt; again but leave the Value empty. &lt;br /&gt;
&lt;br /&gt;
==== Alert Types ====&lt;br /&gt;
&lt;br /&gt;
*  '''1''': ALERT_IMAGE&lt;br /&gt;
*  '''2''': ALERT_VIDEO&lt;br /&gt;
*  '''3''': ALERT_TRIGGER&lt;br /&gt;
*  '''4''': ALERT_VARIABLE&lt;br /&gt;
*  '''5''': ALERT_LOGON&lt;br /&gt;
*  '''6''': ALERT_GATEWAY_CONNECTED (Sent if the external IP changes or if it's been more than 24 hours since the last report.)&lt;br /&gt;
*  '''7''': ALERT_SYS_ERROR&lt;br /&gt;
*  '''8''': ALERT_VALIDATE_EMAIL&lt;br /&gt;
*  '''9''': ALERT_VALIDATE_SMS&lt;br /&gt;
* '''10''': ALERT_SYS_MESSAGE&lt;br /&gt;
* '''11''': ALERT_TEST_SMS_EMAIL&lt;br /&gt;
&lt;br /&gt;
==== Source Types ====&lt;br /&gt;
&lt;br /&gt;
* '''1''': SOURCE_USER&lt;br /&gt;
* '''2''': SOURCE_TIMER&lt;br /&gt;
* '''3''': SOURCE_TRIGGER&lt;br /&gt;
* '''4''': SOURCE_VARIABLE&lt;br /&gt;
&lt;br /&gt;
==== File Formats ====&lt;br /&gt;
&lt;br /&gt;
* '''1''': FORMAT_JPEG&lt;br /&gt;
* '''2''': FORMAT_MJPEG&lt;br /&gt;
* '''3''': FORMAT_MP4&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/AlternateEventServer</id>
		<title>AlternateEventServer</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/AlternateEventServer"/>
				<updated>2015-01-14T19:56:09Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Services]]&lt;br /&gt;
Vera calls MiOS's event servers to report events, like sensor tripped, triggers, etc. MiOS's event servers send out text messages and emails to report these events. &lt;br /&gt;
&lt;br /&gt;
Some very advanced users have asked to setup their own event server that Vera will call to report events. If you add your own, alternate event server, Vera will still send events to MiOS's event server unchanged, however Vera will also post the same event to the alternate server of your choice. &lt;br /&gt;
&lt;br /&gt;
* On '''UI5''' Vera will send the event as a standard HTTPS (secure) GET to &amp;lt;tt&amp;gt;yourserver/alert&amp;lt;/tt&amp;gt; with the arguments passed on the URL, like this (assuming your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;): &lt;br /&gt;
&lt;br /&gt;
  https://myserver.me.com/alert?&lt;br /&gt;
 PK_AccessPoint=[serial number of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_pk_accesspoint luup.pk_accesspoint]]&lt;br /&gt;
 &amp;amp;amp;HW_Key=[hardware key of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_hw_key luup.hw_key]]&lt;br /&gt;
 &amp;amp;amp;DeviceID=[device id that is associated with the alert]&lt;br /&gt;
 &amp;amp;amp;LocalDate=[the time the alert happened as human readable text]&lt;br /&gt;
 &amp;amp;amp;LocalTimestamp=[the time the alert happened as a unix timestamp in UTC]&lt;br /&gt;
 &amp;amp;amp;AlertType=[one of the alert types below]]&lt;br /&gt;
 &amp;amp;amp;SourceType=[one of the source types below]&lt;br /&gt;
 &amp;amp;amp;Argument=[an optional argument depending on the alert type]&lt;br /&gt;
 &amp;amp;amp;Format=[a file format, not normally used]&lt;br /&gt;
 &amp;amp;amp;Code=[a code for the alert, usually the variable that changed]&lt;br /&gt;
 &amp;amp;amp;Value=[the value corresponding to the code above]&lt;br /&gt;
 &amp;amp;amp;Description=[a human readable description of the event, or comments regarding it]&lt;br /&gt;
 &amp;amp;amp;Users=[a comma separated list of user id's that should be notified of the event]&lt;br /&gt;
&lt;br /&gt;
The page on your event server must respond with a plain text response which should look like this:&lt;br /&gt;
 HTTP/1.1 200 OK&lt;br /&gt;
 Content-Length: n&lt;br /&gt;
 &lt;br /&gt;
 PK_Alert:x&lt;br /&gt;
&lt;br /&gt;
- '''x''' is some number to identify the alert recorded on the server. It can be any number, and just ''PK_Alert:0'' if you don't assign a number to the alert.  Whatever it is will be put in Vera's logs along with the alert for cross reference.&amp;lt;br /&amp;gt;&lt;br /&gt;
- '''n''' is the content length, which is 9 plus the length of '''x''' (e.g. for ''PK_Alert:0'' the content length is ''10''). The ''Content-Length'' parameter is optional.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* On '''UI7''' Vera will send the event as a standard HTTPS (secure) POST to &amp;lt;tt&amp;gt;yourserver/event/event/event&amp;lt;/tt&amp;gt; passing the data as a json, like this (assuming your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;): &lt;br /&gt;
&lt;br /&gt;
  https://myserver.me.com/event/event/event&lt;br /&gt;
&amp;lt;br /&amp;gt;{&amp;quot;PK_Device&amp;quot;:,  [serial number of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_pk_accesspoint luup.pk_accesspoint]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;PK_Account&amp;quot;:,  [account id on which the Vera unit was assigned]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;LocalDate&amp;quot;:&amp;quot;&amp;quot;,  [the time the alert happened as human readable text]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Severity&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;EventType&amp;quot;:,  [one of the alert types below]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;SourceType&amp;quot;:,  [one of the source types below]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Argument&amp;quot;:,  [an optional argument depending on the alert type]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Code&amp;quot;:&amp;quot;&amp;quot;,  [a code for the alert, usually the variable that changed]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;NewValue&amp;quot;:&amp;quot;&amp;quot;,  [the value corresponding to the code above]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Description&amp;quot;:&amp;quot;&amp;quot;,  [a human readable description of the event, or comments regarding it]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Users&amp;quot;:&amp;quot;&amp;quot;,  [a comma separated list of user id's that should be notified of the event]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Icon&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;LocalTimestamp&amp;quot;:,  [the time the alert happened as a unix timestamp in UTC]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceID&amp;quot;:,  [device id that is associated with the alert]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceName&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceType&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Room&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Category&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;SubCategory&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Expiration&amp;quot;:&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;br /&amp;gt;}&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The page on your event server must respond with a plain text response which should look like this:&amp;lt;br /&amp;gt;&lt;br /&gt;
{&amp;quot;PK_Event&amp;quot; : 1234, &amp;quot;Key&amp;quot;:&amp;quot;1234&amp;quot;}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To use this alternate event logging set the top level user_data tag &amp;quot;AltEventServer&amp;quot; to the domain of your server. If your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;, do this by changing the 'ip' to be the IP of Vera, and opening this URL: &lt;br /&gt;
&lt;br /&gt;
 http://ip:3480/data_request?id=variableset&amp;amp;amp;Variable=AltEventServer&amp;amp;amp;Value=myserver.me.com &lt;br /&gt;
&lt;br /&gt;
Then click ''Reload'' in Vera's UI to reload the engine with the changes. You can watch Vera send the data by logging into Vera's console as explained in [[Logon Vera SSH]] and then typing: &lt;br /&gt;
&lt;br /&gt;
 tail -f /var/log/cmh/LuaUPnP.log | grep 'RAServerSync::SendAlert' &lt;br /&gt;
&lt;br /&gt;
To stop logging to your own server, call the &amp;lt;tt&amp;gt;variableset&amp;lt;/tt&amp;gt; again but leave the Value empty. &lt;br /&gt;
&lt;br /&gt;
==== Alert Types ====&lt;br /&gt;
&lt;br /&gt;
*  '''1''': ALERT_IMAGE&lt;br /&gt;
*  '''2''': ALERT_VIDEO&lt;br /&gt;
*  '''3''': ALERT_TRIGGER&lt;br /&gt;
*  '''4''': ALERT_VARIABLE&lt;br /&gt;
*  '''5''': ALERT_LOGON&lt;br /&gt;
*  '''6''': ALERT_GATEWAY_CONNECTED (Sent if the external IP changes or if it's been more than 24 hours since the last report.)&lt;br /&gt;
*  '''7''': ALERT_SYS_ERROR&lt;br /&gt;
*  '''8''': ALERT_VALIDATE_EMAIL&lt;br /&gt;
*  '''9''': ALERT_VALIDATE_SMS&lt;br /&gt;
* '''10''': ALERT_SYS_MESSAGE&lt;br /&gt;
* '''11''': ALERT_TEST_SMS_EMAIL&lt;br /&gt;
&lt;br /&gt;
==== Source Types ====&lt;br /&gt;
&lt;br /&gt;
* '''1''': SOURCE_USER&lt;br /&gt;
* '''2''': SOURCE_TIMER&lt;br /&gt;
* '''3''': SOURCE_TRIGGER&lt;br /&gt;
* '''4''': SOURCE_VARIABLE&lt;br /&gt;
&lt;br /&gt;
==== File Formats ====&lt;br /&gt;
&lt;br /&gt;
* '''1''': FORMAT_JPEG&lt;br /&gt;
* '''2''': FORMAT_MJPEG&lt;br /&gt;
* '''3''': FORMAT_MP4&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/AlternateEventServer</id>
		<title>AlternateEventServer</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/AlternateEventServer"/>
				<updated>2015-01-14T11:57:21Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Services]]&lt;br /&gt;
Vera calls MiOS's event servers to report events, like sensor tripped, triggers, etc. MiOS's event servers send out text messages and emails to report these events. &lt;br /&gt;
&lt;br /&gt;
Some very advanced users have asked to setup their own event server that Vera will call to report events. If you add your own, alternate event server, Vera will still send events to MiOS's event server unchanged, however Vera will also post the same event to the alternate server of your choice. &lt;br /&gt;
&lt;br /&gt;
* On '''UI5''' Vera will send the event as a standard HTTPS (secure) GET to &amp;lt;tt&amp;gt;yourserver/alert&amp;lt;/tt&amp;gt; with the arguments passed on the URL, like this (assuming your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;): &lt;br /&gt;
&lt;br /&gt;
  https://myserver.me.com/alert?&lt;br /&gt;
 PK_AccessPoint=[serial number of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_pk_accesspoint luup.pk_accesspoint]]&lt;br /&gt;
 &amp;amp;amp;HW_Key=[hardware key of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_hw_key luup.hw_key]]&lt;br /&gt;
 &amp;amp;amp;DeviceID=[device id that is associated with the alert]&lt;br /&gt;
 &amp;amp;amp;LocalDate=[the time the alert happened as human readable text]&lt;br /&gt;
 &amp;amp;amp;LocalTimestamp=[the time the alert happened as a unix timestamp in UTC]&lt;br /&gt;
 &amp;amp;amp;AlertType=[one of the alert types below]]&lt;br /&gt;
 &amp;amp;amp;SourceType=[one of the source types below]&lt;br /&gt;
 &amp;amp;amp;Argument=[an optional argument depending on the alert type]&lt;br /&gt;
 &amp;amp;amp;Format=[a file format, not normally used]&lt;br /&gt;
 &amp;amp;amp;Code=[a code for the alert, usually the variable that changed]&lt;br /&gt;
 &amp;amp;amp;Value=[the value corresponding to the code above]&lt;br /&gt;
 &amp;amp;amp;Description=[a human readable description of the event, or comments regarding it]&lt;br /&gt;
 &amp;amp;amp;Users=[a comma separated list of user id's that should be notified of the event]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* On '''UI7''' Vera will send the event as a standard HTTPS (secure) POST to &amp;lt;tt&amp;gt;yourserver/event/event/event&amp;lt;/tt&amp;gt; passing the data as a json, like this (assuming your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;): &lt;br /&gt;
&lt;br /&gt;
  https://myserver.me.com/event/event/event&lt;br /&gt;
&amp;lt;br /&amp;gt;{&amp;quot;PK_Device&amp;quot;:,  [serial number of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_pk_accesspoint luup.pk_accesspoint]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;PK_Account&amp;quot;:,  [account id on which the Vera unit was assigned]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;LocalDate&amp;quot;:&amp;quot;&amp;quot;,  [the time the alert happened as human readable text]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Severity&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;EventType&amp;quot;:,  [one of the alert types below]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;SourceType&amp;quot;:,  [one of the source types below]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Argument&amp;quot;:,  [an optional argument depending on the alert type]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Code&amp;quot;:&amp;quot;&amp;quot;,  [a code for the alert, usually the variable that changed]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;NewValue&amp;quot;:&amp;quot;&amp;quot;,  [the value corresponding to the code above]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Description&amp;quot;:&amp;quot;&amp;quot;,  [a human readable description of the event, or comments regarding it]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Users&amp;quot;:&amp;quot;&amp;quot;,  [a comma separated list of user id's that should be notified of the event]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Icon&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;LocalTimestamp&amp;quot;:,  [the time the alert happened as a unix timestamp in UTC]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceID&amp;quot;:,  [device id that is associated with the alert]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceName&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceType&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Room&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Category&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;SubCategory&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Expiration&amp;quot;:&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;br /&amp;gt;}&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The page on your event server must respond with a plain text response which should look like this:&lt;br /&gt;
 HTTP/1.1 200 OK&lt;br /&gt;
 Content-Length: n&lt;br /&gt;
 &lt;br /&gt;
 PK_Alert:x&lt;br /&gt;
&lt;br /&gt;
* '''x''' is some number to identify the alert recorded on the server. It can be any number, and just ''PK_Alert:0'' if you don't assign a number to the alert.  Whatever it is will be put in Vera's logs along with the alert for cross reference.&lt;br /&gt;
* '''n''' is the content length, which is 9 plus the length of '''x''' (e.g. for ''PK_Alert:0'' the content length is ''10''). The ''Content-Length'' parameter is optional.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To use this alternate event logging set the top level user_data tag &amp;quot;AltEventServer&amp;quot; to the domain of your server. If your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;, do this by changing the 'ip' to be the IP of Vera, and opening this URL: &lt;br /&gt;
&lt;br /&gt;
 http://ip:3480/data_request?id=variableset&amp;amp;amp;Variable=AltEventServer&amp;amp;amp;Value=myserver.me.com &lt;br /&gt;
&lt;br /&gt;
Then click ''Reload'' in Vera's UI to reload the engine with the changes. You can watch Vera send the data by logging into Vera's console as explained in [[Logon Vera SSH]] and then typing: &lt;br /&gt;
&lt;br /&gt;
 tail -f /var/log/cmh/LuaUPnP.log | grep 'RAServerSync::SendAlert' &lt;br /&gt;
&lt;br /&gt;
To stop logging to your own server, call the &amp;lt;tt&amp;gt;variableset&amp;lt;/tt&amp;gt; again but leave the Value empty. &lt;br /&gt;
&lt;br /&gt;
==== Alert Types ====&lt;br /&gt;
&lt;br /&gt;
*  '''1''': ALERT_IMAGE&lt;br /&gt;
*  '''2''': ALERT_VIDEO&lt;br /&gt;
*  '''3''': ALERT_TRIGGER&lt;br /&gt;
*  '''4''': ALERT_VARIABLE&lt;br /&gt;
*  '''5''': ALERT_LOGON&lt;br /&gt;
*  '''6''': ALERT_GATEWAY_CONNECTED (Sent if the external IP changes or if it's been more than 24 hours since the last report.)&lt;br /&gt;
*  '''7''': ALERT_SYS_ERROR&lt;br /&gt;
*  '''8''': ALERT_VALIDATE_EMAIL&lt;br /&gt;
*  '''9''': ALERT_VALIDATE_SMS&lt;br /&gt;
* '''10''': ALERT_SYS_MESSAGE&lt;br /&gt;
* '''11''': ALERT_TEST_SMS_EMAIL&lt;br /&gt;
&lt;br /&gt;
==== Source Types ====&lt;br /&gt;
&lt;br /&gt;
* '''1''': SOURCE_USER&lt;br /&gt;
* '''2''': SOURCE_TIMER&lt;br /&gt;
* '''3''': SOURCE_TRIGGER&lt;br /&gt;
* '''4''': SOURCE_VARIABLE&lt;br /&gt;
&lt;br /&gt;
==== File Formats ====&lt;br /&gt;
&lt;br /&gt;
* '''1''': FORMAT_JPEG&lt;br /&gt;
* '''2''': FORMAT_MJPEG&lt;br /&gt;
* '''3''': FORMAT_MP4&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/AlternateEventServer</id>
		<title>AlternateEventServer</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/AlternateEventServer"/>
				<updated>2015-01-14T11:54:27Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Services]]&lt;br /&gt;
Vera calls MiOS's event servers to report events, like sensor tripped, triggers, etc. MiOS's event servers send out text messages and emails to report these events. &lt;br /&gt;
&lt;br /&gt;
Some very advanced users have asked to setup their own event server that Vera will call to report events. If you add your own, alternate event server, Vera will still send events to MiOS's event server unchanged, however Vera will also post the same event to the alternate server of your choice. &lt;br /&gt;
&lt;br /&gt;
* On '''UI5''' Vera will send the event as a standard HTTPS (secure) GET to &amp;lt;tt&amp;gt;yourserver/alert&amp;lt;/tt&amp;gt; with the arguments passed on the URL, like this (assuming your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;): &lt;br /&gt;
&lt;br /&gt;
  https://myserver.me.com/alert?&lt;br /&gt;
 PK_AccessPoint=[serial number of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_pk_accesspoint luup.pk_accesspoint]]&lt;br /&gt;
 &amp;amp;amp;HW_Key=[hardware key of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_hw_key luup.hw_key]]&lt;br /&gt;
 &amp;amp;amp;DeviceID=[device id that is associated with the alert]&lt;br /&gt;
 &amp;amp;amp;LocalDate=[the time the alert happened as human readable text]&lt;br /&gt;
 &amp;amp;amp;LocalTimestamp=[the time the alert happened as a unix timestamp in UTC]&lt;br /&gt;
 &amp;amp;amp;AlertType=[one of the alert types below]]&lt;br /&gt;
 &amp;amp;amp;SourceType=[one of the source types below]&lt;br /&gt;
 &amp;amp;amp;Argument=[an optional argument depending on the alert type]&lt;br /&gt;
 &amp;amp;amp;Format=[a file format, not normally used]&lt;br /&gt;
 &amp;amp;amp;Code=[a code for the alert, usually the variable that changed]&lt;br /&gt;
 &amp;amp;amp;Value=[the value corresponding to the code above]&lt;br /&gt;
 &amp;amp;amp;Description=[a human readable description of the event, or comments regarding it]&lt;br /&gt;
 &amp;amp;amp;Users=[a comma separated list of user id's that should be notified of the event]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* On '''UI7''' Vera will send the event as a standard HTTPS (secure) POST to &amp;lt;tt&amp;gt;yourserver/event/event/event&amp;lt;/tt&amp;gt; passing the data as a json, like this (assuming your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;): &lt;br /&gt;
&lt;br /&gt;
  https://myserver.me.com/event/event/event&lt;br /&gt;
&amp;lt;br /&amp;gt;{&amp;quot;PK_Device&amp;quot;:,  [serial number of Vera; in Lua you can get it with [http://wiki.micasaverde.com/index.php/Luup_Lua_extensions#variable:_pk_accesspoint luup.pk_accesspoint]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;PK_Account&amp;quot;:,  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;LocalDate&amp;quot;:&amp;quot;&amp;quot;,  [the time the alert happened as human readable text]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Severity&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;EventType&amp;quot;:,  [one of the alert types below]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;SourceType&amp;quot;:,  [one of the source types below]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Argument&amp;quot;:,  [an optional argument depending on the alert type]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Code&amp;quot;:&amp;quot;&amp;quot;,  [a code for the alert, usually the variable that changed]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;NewValue&amp;quot;:&amp;quot;&amp;quot;,  [the value corresponding to the code above]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Description&amp;quot;:&amp;quot;&amp;quot;,  [a human readable description of the event, or comments regarding it]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Users&amp;quot;:&amp;quot;&amp;quot;,  [a comma separated list of user id's that should be notified of the event]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Icon&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;LocalTimestamp&amp;quot;:,  [the time the alert happened as a unix timestamp in UTC]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceID&amp;quot;:,  [device id that is associated with the alert]&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceName&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;DeviceType&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Room&amp;quot;:&amp;quot;&amp;quot;,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Category&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;SubCategory&amp;quot;:,&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;quot;Expiration&amp;quot;:&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;br /&amp;gt;}&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The page on your event server must respond with a plain text response which should look like this:&lt;br /&gt;
 HTTP/1.1 200 OK&lt;br /&gt;
 Content-Length: n&lt;br /&gt;
 &lt;br /&gt;
 PK_Alert:x&lt;br /&gt;
&lt;br /&gt;
* '''x''' is some number to identify the alert recorded on the server. It can be any number, and just ''PK_Alert:0'' if you don't assign a number to the alert.  Whatever it is will be put in Vera's logs along with the alert for cross reference.&lt;br /&gt;
* '''n''' is the content length, which is 9 plus the length of '''x''' (e.g. for ''PK_Alert:0'' the content length is ''10''). The ''Content-Length'' parameter is optional.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To use this alternate event logging set the top level user_data tag &amp;quot;AltEventServer&amp;quot; to the domain of your server. If your server is &amp;lt;tt&amp;gt;myserver.me.com&amp;lt;/tt&amp;gt;, do this by changing the 'ip' to be the IP of Vera, and opening this URL: &lt;br /&gt;
&lt;br /&gt;
 http://ip:3480/data_request?id=variableset&amp;amp;amp;Variable=AltEventServer&amp;amp;amp;Value=myserver.me.com &lt;br /&gt;
&lt;br /&gt;
Then click ''Reload'' in Vera's UI to reload the engine with the changes. You can watch Vera send the data by logging into Vera's console as explained in [[Logon Vera SSH]] and then typing: &lt;br /&gt;
&lt;br /&gt;
 tail -f /var/log/cmh/LuaUPnP.log | grep 'RAServerSync::SendAlert' &lt;br /&gt;
&lt;br /&gt;
To stop logging to your own server, call the &amp;lt;tt&amp;gt;variableset&amp;lt;/tt&amp;gt; again but leave the Value empty. &lt;br /&gt;
&lt;br /&gt;
==== Alert Types ====&lt;br /&gt;
&lt;br /&gt;
*  '''1''': ALERT_IMAGE&lt;br /&gt;
*  '''2''': ALERT_VIDEO&lt;br /&gt;
*  '''3''': ALERT_TRIGGER&lt;br /&gt;
*  '''4''': ALERT_VARIABLE&lt;br /&gt;
*  '''5''': ALERT_LOGON&lt;br /&gt;
*  '''6''': ALERT_GATEWAY_CONNECTED (Sent if the external IP changes or if it's been more than 24 hours since the last report.)&lt;br /&gt;
*  '''7''': ALERT_SYS_ERROR&lt;br /&gt;
*  '''8''': ALERT_VALIDATE_EMAIL&lt;br /&gt;
*  '''9''': ALERT_VALIDATE_SMS&lt;br /&gt;
* '''10''': ALERT_SYS_MESSAGE&lt;br /&gt;
* '''11''': ALERT_TEST_SMS_EMAIL&lt;br /&gt;
&lt;br /&gt;
==== Source Types ====&lt;br /&gt;
&lt;br /&gt;
* '''1''': SOURCE_USER&lt;br /&gt;
* '''2''': SOURCE_TIMER&lt;br /&gt;
* '''3''': SOURCE_TRIGGER&lt;br /&gt;
* '''4''': SOURCE_VARIABLE&lt;br /&gt;
&lt;br /&gt;
==== File Formats ====&lt;br /&gt;
&lt;br /&gt;
* '''1''': FORMAT_JPEG&lt;br /&gt;
* '''2''': FORMAT_MJPEG&lt;br /&gt;
* '''3''': FORMAT_MP4&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/MIMOlite</id>
		<title>MIMOlite</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/MIMOlite"/>
				<updated>2014-12-31T16:30:49Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Plugins]]&lt;br /&gt;
The MIMOlite device supports multiple functions. This plugin adds 3 child devices that can be used in scenes and triggers like a normal device. To fully support MIMOlite in VERA the following steps are required: &lt;br /&gt;
&lt;br /&gt;
*Make sure you have at least version 1.5.622 on your unit &lt;br /&gt;
*Go to Apps -&amp;amp;gt; Install Apps &lt;br /&gt;
*Login if needed &lt;br /&gt;
*Search for &amp;quot;MIMOlite&amp;quot; and install it &lt;br /&gt;
*After the plugin is installed a new generic device will be installed&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:MIMOlite1.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*Go to the Advanced tab and locate the '''MIMO_Devices''' variable&amp;lt;br&amp;gt;&lt;br /&gt;
*If the variable isn't there you may need to reload the Lua engine, or add the variable manually using service ID: '''urn:micasaverde-com:serviceId:MimoSensor1''' &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:MIMOlite2.png]]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*Fill in the Device #ID of the physical MIMOlite device, which you already included in the network &lt;br /&gt;
*You can find the Device #ID by clicking on the wrench key on your physical MiMolite device and you will find it under Settings tab.&lt;br /&gt;
[[Image:Device_id.JPG]]&amp;lt;br&amp;gt; &lt;br /&gt;
*New child devices will be created which you can use in scenes and triggers&lt;br /&gt;
&lt;br /&gt;
[[Image:MIMOlite3.png]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/ThermostatModes</id>
		<title>ThermostatModes</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/ThermostatModes"/>
				<updated>2014-05-19T12:17:48Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The user interface exposes the basic commonly used thermostat modes.  However, there are some extra modes which some thermostats may support that are not shown in the UI.  To use them, you will need to create a scene, and under the Advanced tab, choose the thermostat, then for the list of commands, under the heading &amp;quot;urn:upnp-org:serviceId:HVAC_UserOperatingMode1&amp;quot; choose the action &amp;quot;SetModeTarget&amp;quot;, and in the variable &amp;quot;NewModeTarget&amp;quot;, enter one of the following strings without the &amp;quot; marks.  You can then run the scene to go into the mode.:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Auxiliary&amp;quot; which is ZWave thermostat mode #4&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Resume&amp;quot; which is ZWave thermostat mode #5&lt;br /&gt;
&lt;br /&gt;
&amp;quot;FanOnly&amp;quot; which is ZWave thermostat mode #6&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Furnace&amp;quot; which is ZWave thermostat mode #7&lt;br /&gt;
&lt;br /&gt;
&amp;quot;DryAir&amp;quot; which is ZWave thermostat mode #8&lt;br /&gt;
&lt;br /&gt;
&amp;quot;MoistAir&amp;quot; which is ZWave thermostat mode #9&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Auto2&amp;quot; which is ZWave thermostat mode #10&lt;br /&gt;
&lt;br /&gt;
&amp;quot;EnergySaveHeat&amp;quot; which is ZWave thermostat mode #11&lt;br /&gt;
&lt;br /&gt;
&amp;quot;EnergySaveCool&amp;quot; which is ZWave thermostat mode #12&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Away&amp;quot; which is ZWave thermostat mode #13&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Apps.mios_Developer%27s_Guide</id>
		<title>Apps.mios Developer's Guide</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Apps.mios_Developer%27s_Guide"/>
				<updated>2013-12-02T17:03:19Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''[http://apps.mios.com apps.mios.com]''' is the new MiOS plugins marketplace for plugins compatible with UI5. It allows developers to easily create and publish their plugins. &lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
=== Plugin Info ===&lt;br /&gt;
&lt;br /&gt;
==== Plugin Information  ====&lt;br /&gt;
&lt;br /&gt;
*Description: The description that will appear next to the title in the Marketplace. &lt;br /&gt;
*Instructions URL: URL to the documentation page of this plugin, which should contain instructions for plugin configuration and usage notes. &lt;br /&gt;
*Visibility: For plugins intended to be made available to the public, the visibility should be '''''public'''''. '''&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;Note:&amp;lt;/span&amp;gt;'''&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt; the other visibility types are not implemented yet.&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt; &lt;br /&gt;
*License: [http://en.wikipedia.org/wiki/Gpl GPL3], [http://en.wikipedia.org/wiki/BSD_licenses BSD], [http://en.wikipedia.org/wiki/Proprietary_software proprietary]&lt;br /&gt;
&lt;br /&gt;
==== UPnP Data ====&lt;br /&gt;
&lt;br /&gt;
This is the necessary information for creating the plugin device.&amp;amp;nbsp; If your plugin will have more than one device file, MiOS will use the information here to create the main plugin device.&amp;amp;nbsp; For the ''Elk Alarm Panel Plugin'' the main device is the panel device. &lt;br /&gt;
&lt;br /&gt;
[[Image:UPnP Data.png]] &lt;br /&gt;
&lt;br /&gt;
=== UPnP ===&lt;br /&gt;
&lt;br /&gt;
==== Plugin Devices ====&lt;br /&gt;
&lt;br /&gt;
*The first three fields are the ones from UPnP Data.&amp;amp;nbsp; This is the necessary information for creating the plugin device.&amp;amp;nbsp; If your plugin will have more than one device file, MiOS will use the information here to create the main plugin device.&amp;amp;nbsp; For the ''Elk Alarm Panel Plugin'' the main device is the panel device. &lt;br /&gt;
*Invisible: An invisible device is ''for internal use only'' and won't be presented to the user. An example for this is the ''Insteon Network'' device.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Plugin Files  ===&lt;br /&gt;
&lt;br /&gt;
Here you can add, remove, edit, upload and download the files used by the plugin.&amp;amp;nbsp; This is an interface for the SVN repository where the files are stored.&amp;amp;nbsp; To revert the files to a previous version, open the log and select which version to revert to. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;'''IMPORTANT:''' &amp;lt;/span&amp;gt;When you add .lua files to the plugin, add them as '''Miscellaneous files'''.&amp;amp;nbsp; Do not add them as Lua files because if you do, LuaUPnP will load them into their lua state and run them as stand alone files in addition to merging them into the implementation. &lt;br /&gt;
&lt;br /&gt;
[[Image:Apps mios plugin files.png]] &lt;br /&gt;
&lt;br /&gt;
Pressing the Edit button will open the editor. For the device, service and implementation files there are wizards available for editing the files.&lt;br /&gt;
&lt;br /&gt;
=== Versions ===&lt;br /&gt;
&lt;br /&gt;
==== Releases ====&lt;br /&gt;
&lt;br /&gt;
This is the list with all the released or pending for approval plugin versions. &lt;br /&gt;
&lt;br /&gt;
==== Add Release  ====&lt;br /&gt;
&lt;br /&gt;
*Platform: The target platform for the plugin. While most plugins will very likely target all the platforms, some plugins need separate versions for different platforms. &lt;br /&gt;
*Compatible firmware: Some plugins require features present only in newer firmwares versions to run. Others did things that were later incorporated in MiOS, so are now obsolete. These versions must be specified here. &lt;br /&gt;
*Dev, Alpha, Beta, RC: these are some of the software development phases. Only '''RC (Release Candidate)''' versions can be submitted for approval. &amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;'''Note:''' the other release types are not implemented yet.&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After the version has been added to the Releases list, RC versions can be submitted for approval. Someone from Mi Casa Verde will have a look at the plugin and check for malicious code, and test it a little to make sure that it doesn't affect the stability or proper functioning of MiOS. If everything is OK, the plugin will be approved and it will become available to install for the targeted public (selected in the ''Visibility'' drop-down).&lt;br /&gt;
&lt;br /&gt;
==== Versions ====&lt;br /&gt;
&lt;br /&gt;
Versions are snapshots of the plugin, i.e. how the plugin looked at a particular SVN revision. It's recommended to create a version for every milestone or development phase reached, so that you can go back to it if something went wrong in the subsequent revisions. &lt;br /&gt;
&lt;br /&gt;
==== Publish  ====&lt;br /&gt;
&lt;br /&gt;
Here you can publish the plugin in its current state and assign it a version. The comments will be added after the version so that you can create versions like ''1.4 Holiday Edition''. If a file contains sensitive data (e.g. a PIN code) it is recommended to encrypt it. &lt;br /&gt;
&lt;br /&gt;
The '''Destination path''' is were the file will be downloaded on Vera. The path is relative to '''/etc/cmh-ludl''', which is the default path. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;'''Note:''' The path '''must''' start and end with ''''/''' '.&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
e.g. If I want a file to go in ''/www/cmh/skins/default/icons'', the path will be: '''''/../../www/cmh/skins/default/icons/'''''&lt;br /&gt;
&lt;br /&gt;
== Steps for releasing a plugin ==&lt;br /&gt;
&lt;br /&gt;
#After you created the plugin and uploaded the files open the '''Versions''' page. &lt;br /&gt;
#On the bottom of the page enter the ''Major'' version number, the ''Minor'' version number and optionally a version ''comment'', then click '''Publish'''. The published version will appear in the ''Versions'' box. &lt;br /&gt;
#In the '''Add Release''' box select the published version from the ''RC'' drop-down list and optionally select a ''Platform'' and enter a ''Compatible firmware''. Click '''Add Release'''. The release will appear in the ''Releases'' box. &lt;br /&gt;
#In the '''Releases''' box click on '''Request approval'''. &lt;br /&gt;
#Someone from Mi Casa Verde will check the plugin for malicious code or poorly written code that will affect the MiOS stability, and if everything is OK it will be approved.&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Schlage_BE469</id>
		<title>Schlage BE469</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Schlage_BE469"/>
				<updated>2013-09-18T14:40:30Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hardware]]&lt;br /&gt;
There have been reported compatibility issues with the Schlage Touchscreen Deadbolt BE 469 and MiCasaVerde controllers. This has been corrected in lock firmware version 5.7 and higher. With lock firmware version 5.6 and earlier, the lock may become unresponsive until batteries are disconnected.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The firmware version can be checked on the stickers from the back of the door-lock and if you have a door-lock with that firmware installed it is recommended to contact Schlage for a replacement.&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/IP_Cameras</id>
		<title>IP Cameras</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/IP_Cameras"/>
				<updated>2013-07-24T22:23:10Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you buy an IP camera from Mi Casa Verde, we will pre-configure it to work with Vera right out of the box. If you get the camera yourself, and it's a model that is 'Plug and Play' compatible with Vera (see 'Supported Cameras' below), then you should be sure the camera is configured to get an IP address automatically, and that the username is set to: '''dceadmin''' and the password is set to: '''dcepass'''. Vera will add the camera automatically and fill in the settings. (Specific info for users of [[Panasonic IP Cameras|Panasonic IP Cameras]])&amp;amp;nbsp; When adding a camera that is not on the supported list, see the section ''''Manually adding a camera'''' below. &lt;br /&gt;
&lt;br /&gt;
=== '''Supported Cameras'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Mi Casa Verde &lt;br /&gt;
| IP&amp;amp;nbsp;Camera &lt;br /&gt;
| Vistacam &lt;br /&gt;
| all &lt;br /&gt;
| &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| The VistaCam comes pre-configured with the Vera unit so when you connect the camera to the network it should be shown on the Dashboard automatically.&lt;br /&gt;
|-&lt;br /&gt;
| Panasonic &lt;br /&gt;
| IP Camera &lt;br /&gt;
| BL-C131/BL-C30 &lt;br /&gt;
| all &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &lt;br /&gt;
The Panasonic IP cameras work well with Vera. However, for unknown reasons, the Panasonic camera will not get an IP address on your LAN until you run the Windows software supplied with it. You do not need to install the software; just insert the CD and tell the camera to get an IP address automatically (DHCP). If you buy the camera from the Mi Casa Verde web shop we do this before we ship it so the camera will work out of the box. Mac/Linux users who buy the camera elsewhere will need a Windows PC to 'activate' the camera. Set the default username/password on the camera to: dceadmin and dcepass for Vera to detect the camera automatically, or, if you use your own username/password, add the camera to Vera manually and provide Vera your username/password to access the camera. &lt;br /&gt;
&lt;br /&gt;
Update: For Mac users please access this [http://www.networkwebcams.com/ip-camera-learning-center/2008/05/16/howto-set-up-a-panasonic-ip-camera-using-a-mac/ link] and setup your camera. &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that work'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Foscam [http://www.foscam.us/] [http://www.foscam.com/] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://foscam.us/foscam-fi8918w-wireless-ip-camera-11.html?gclid=CPDxx_v5trECFYrP3wodpHgAwQ FI8908/FI8908W] &lt;br /&gt;
| firmware 11.14.1.46 / 2.4.8.12 &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| /snapshot.cgi &lt;br /&gt;
| [http://www.amazon.com/Wireless-Windows-compatible-Installation-Included/product-reviews/B0030FR08W/ref=dp_top_cm_cr_acr_txt?ie=UTF8&amp;amp;showViewpoints=1 Customer reviews] &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Use the Foscam IP Camera Tool for initial setup, then copy IP address and path into Vera setup fields.&amp;lt;br&amp;gt;For Pan, Tilt, Patrol support use the attached file [http://forum.micasaverde.com/index.php/topic,8832.msg68515.html#msg68515 here].&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://homesupport.cisco.com/en-us/wireless/lbc/WVC54GCA/download WVC54GCA] &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive camera with moderate image quality. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.cisco.com/en/US/products/ps9948/index.html WVC210] &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and pan/tilt ability. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://homesupport.cisco.com/en-us/wireless/lbc/WVC80N?referrer=www.linksysbycisco.com WVC80N] &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi?size=2&amp;amp;amp;quality=1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and wireless N. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera. &lt;br /&gt;
Size can be (160 x 120 = 1,320 x 240 = 2,640 x 480 = 3) and Quality can be (Very High= 1,High= 2,Normal= 3,Low= 4,Very Low= 5) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| iCamView &lt;br /&gt;
| IP Camera Server &lt;br /&gt;
| [http://icamview.com/icv22.htm iCV-22], [http://icamview.com/icv32.htm iCV-32] &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=1&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=2&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich IP camera server, supports up to two compatible USB cameras, optional WiFi support, USB storage, USB hubs, motion; works with range of cameras, see icamview.co.uk. Excellent modular solution. They do ship to North America.&lt;br /&gt;
|-&lt;br /&gt;
| SmartHome.com.au SmartEye [http://www.wansview.com/ Wansview] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.smarthome.com.au/zseries/wirelesssecuritycamera.php Z~Series Wireless Camera] [http://www.ipcam-central.com IPCAM Central SmartEye NC532W] &lt;br /&gt;
| all &lt;br /&gt;
| 2009 [http://www.ipcam-central.com/Smarteye-NC532W-FTP-p/nc532w-ftp.htm 2011]&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor and [http://www.ipcam-central.com/Smarteye-NC532W-FTP-p/nc532w-ftp.htm Outdoor H.264 w/FTP/email/SD] &lt;br /&gt;
| Static URL /tmpfs/auto.jpg (small) OR /tmpfs/snap.jpg (large) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Inexpensive IP security camera designed for the Australian and New Zealand Z-Wave users, but shipping world wide. Luup file available from [http://www.ipcam-central.com] but not needed unless need PTZ. Despite Vera only displaying small images use snap.jpg to get larger images in Home Buddy for Android. Informational: QT URL for IE http://x.x.x.x/iphone/11.qt?user:password&amp;amp;amp; which reveals RTSP RTP URL rtsp://x.x.x.x/iphone/11 (credentials required though)&lt;br /&gt;
|-&lt;br /&gt;
| [http://global.level1.com LevelOne] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://global.level1.com/product_d.php?id=54 WCS-2030] &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| cgi-bin/video.jpg &lt;br /&gt;
| [http://reviews.cnet.com/search-results/levelone-camcon-wcs-2030/1707-5_7-31972011.html CNET review] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive IP camera with good image quality. Can be connected wired or wirelessly. Most LevelOne cameras use the same path for the JPEG image, so most of their line (both low and high end) should be compatible. Video and audio also stream over RTSP, which can be customized through the camera's web interface.&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.asante.com/products/SecureNetCam/Voyager1.asp Voyager I] &lt;br /&gt;
| firmware 2.02 and above &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive&amp;amp;nbsp;IP&amp;amp;nbsp;camera that is very feature rich, has good image quality, night vision capabilities, motion detection, two-way audio, video streaming over TCP, UDP, or HTTP, and other configurable features. In firmware version 2.02, Asante added the capability to retrieve an image via a URL (however, it is delayed by 3 seconds). Offers a full-featured web interface in IE using an ActiveX plug-in (limited capabilites in other browsers).&lt;br /&gt;
|-&lt;br /&gt;
| TrendNet &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.trendnet.com/products/proddetail.asp?prod=155_TV-IP512WN&amp;amp;cat=149 TV-IP512WN] &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| /image/jpeg.cgi OR /cgi/jpg/image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich inexpensive IP camera with good image quality, features 802.11n, GPIO ports, not bad optics&lt;br /&gt;
|-&lt;br /&gt;
| D-Link &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.dlink.com/products/?pid=DCS-950G DCS-950G] &lt;br /&gt;
| firmware 1.07 &lt;br /&gt;
| &amp;amp;nbsp;? &lt;br /&gt;
| Indoor &lt;br /&gt;
| /_gCVimage.jpg &lt;br /&gt;
| [http://www.amazon.com/D-Link-Securicam-DCS-950G-Wireless-Internet/product-reviews/B0006GDCD0/ref=dp_top_cm_cr_acr_txt?ie=UTF8&amp;amp;showViewpoints=1 Customer reviews] &lt;br /&gt;
| Ap15e &lt;br /&gt;
| It takes about 9(!) seconds to get the jpg file from the camera, but Vera's generic Luup IP camera plugin times out after 5 seconds by default. Starting with Ui4 a timeout option was added to the device settings for the camera, which you can increase to 10.&lt;br /&gt;
|-&lt;br /&gt;
| D-Link &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.dlink.com/products/?pid=664 DCS-920] (also DCS-930 and DCS-932) &lt;br /&gt;
| firmware 1.05? &lt;br /&gt;
| &amp;amp;nbsp;? &lt;br /&gt;
| Indoor &lt;br /&gt;
| /image/jpeg.cgi &lt;br /&gt;
&amp;lt;br&amp;gt; /image.jpg &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| futzle &lt;br /&gt;
| Standard timeout (5 seconds) works. It may be necessary to turn on access control (username/password) on the camera's web configuration, and set Vera to use the username/password.&lt;br /&gt;
|-&lt;br /&gt;
| Wanscam &lt;br /&gt;
| IP Camera &lt;br /&gt;
| aj-c2wa-c198 &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| Indoor &lt;br /&gt;
| /videostream.cgi &lt;br /&gt;
| &lt;br /&gt;
| mcvdaniel &lt;br /&gt;
| It may be necessary to use the original software that came with the camera to find it on the network.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Aviosys (Yoics)&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera server&amp;lt;/span&amp;gt; &lt;br /&gt;
| [http://www.aviosys.com/downloads/manuals/video/9100%28A%29%20Plus%20Manual-NB%20-V2.37.pdf &amp;lt;span style=&amp;quot;font-size: small;&amp;quot;&amp;gt;9100a&amp;lt;/span&amp;gt;] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Indoor/Outdoor&amp;lt;/span&amp;gt; &lt;br /&gt;
| &lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;/usr/yoics0.jpg&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;/usr/yoics1.jpg&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;/usr/yoics2.jpg&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small; line-height: 1.5em;&amp;quot;&amp;gt;/usr/yoics3.jpg&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;mcvadi&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;The number for the URL depends on the port that the camera is connected to (/usr/yoics1.jpg is for port 2 on the server). Each camera uses the same IP address (the one from the camera server).&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;IPUX&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;ICS 2330&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;/cgi/mjpg/mjpg.cgi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;mcvanne&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Camera must be setup to use MJPEG compression from the camera configuration page.&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Hikvison&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;DS-2CD7153-E&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;All&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;2012&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;line-height: 1.5em;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Indoor/Outdoor&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;/Streaming/channels/1/picture&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;ndwalters&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Perform initial setup via web interface.&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Hikvison&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;DS-2CD852MF-E&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;All&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;2012&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Indoor/Outdoor&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;/Streaming/channels/1/picture&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;ndwalters&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Perform initial setup via web interface.&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Dahua&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IPC-Hx2xxxP&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Firmware 2.103.0000.0.T.20130220&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;2013&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Indoor/Outdoor&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif;&amp;quot;&amp;gt;/cgi-bin/snapshot.cgi?channel=&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif;&amp;quot;&amp;gt;0&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;ndwalters&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Perform initial setup via web interface.&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Dahua&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IPC-Hx3xxxP&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Firmware 2.103.0000.0.T.20121219&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;2013&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Indoor/Outdoor&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif;&amp;quot;&amp;gt;/cgi-bin/snapshot.cgi?channel=&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif;&amp;quot;&amp;gt;0&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;ndwalters&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Perform initial setup via web interface.&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;font color=&amp;quot;#222222&amp;quot; face=&amp;quot;arial, sans-serif&amp;quot; size=&amp;quot;2&amp;quot;&amp;gt;Edimax&amp;lt;/font&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;font color=&amp;quot;#222222&amp;quot; face=&amp;quot;arial, sans-serif&amp;quot; size=&amp;quot;2&amp;quot;&amp;gt;IC-71110W&amp;lt;/font&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;2013&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;font color=&amp;quot;#222222&amp;quot; face=&amp;quot;arial, sans-serif&amp;quot; size=&amp;quot;2&amp;quot;&amp;gt;/snapshot.jpg&amp;lt;/font&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;mcvanne&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;font color=&amp;quot;#222222&amp;quot; face=&amp;quot;arial, sans-serif&amp;quot; size=&amp;quot;2&amp;quot;&amp;gt;Go to camera's control panel -&amp;amp;gt; Network -&amp;amp;gt; LoginFree and set the filename to snapshot.jpg&amp;lt;/font&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that don't work'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Trendnet &lt;br /&gt;
| IP Camera &lt;br /&gt;
| TV-IP100W &lt;br /&gt;
| all &lt;br /&gt;
| 2007&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| none&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This camera can only serve images using DirectX or Java. The workaround is complex: &amp;quot;using a PC you can use MPlayer to strip out a JPG image from the video stream (asf). You can then store the JPG snapshot on a PC, then run a web server and vera can then &amp;quot;fetch&amp;quot; the image from the PC instead of the camera.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WCW100 &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| none &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ray &lt;br /&gt;
| This camera does not give an IP address out of the box. In order for it work, it needs to be activated using the Schlage LiNK system. Without paying for the Schlage LiNK membership, this camera cannot be used with Vera unless there's a way of forcing the activation. &lt;br /&gt;
Update: The camera might work after a firmware update. More info here: [http://forum.micasaverde.com/index.php?topic=6581.0] and here [http://forum.micasaverde.com/index.php?topic=5841.15] &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Voyager I &lt;br /&gt;
| firmware 2.00 &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| none &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ray &lt;br /&gt;
| This camera is inexpensive, very feature rich, has very good image quality, and has night vision capabilities. However, there is no publicly accessible URL to grab a live JPG from the camera. The web interface requires an ActiveX plug-in to view the live video feed and there is a snapshot button that will deliver a JPG. Asante is reportedly making changes to their camera in the next version of the firmware that should resolve some of these issues.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== '''DVR's that work'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| EverFocus &lt;br /&gt;
| DVR &lt;br /&gt;
| &lt;br /&gt;
| all &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
/m/camera1.jpg &lt;br /&gt;
&lt;br /&gt;
/m/live.htm?camera=1 &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvgeorge&amp;lt;br&amp;gt; &lt;br /&gt;
| &lt;br /&gt;
The path needs to be changed for each camera, the tested DVR had 9 cameras (1-9). &lt;br /&gt;
&lt;br /&gt;
It works only with the firmware which allows digest authentification (newer than 1.5.622). &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== '''Manually adding a camera'''  ===&lt;br /&gt;
&lt;br /&gt;
==== '''UI5'''  ====&lt;br /&gt;
&lt;br /&gt;
The instructions are here: http://docs5.mios.com/doc.php?language=1&amp;amp;amp;manual=1&amp;amp;amp;platform=3Lite&amp;amp;amp;page=ip_cameras &lt;br /&gt;
&lt;br /&gt;
==== '''UI4'''  ====&lt;br /&gt;
&lt;br /&gt;
Install the &amp;quot;Generic IP Camera&amp;quot; or &amp;quot;Panasonic IP Camera with Pan/Tilt/Zoom&amp;quot; plugin from the MIOS Marketplace (click on the &amp;quot;+&amp;quot; button from your Dashboard), depending on the camera type, then fill in the blank boxes with the information below(*). To add a new camera just click on the already installed plugin and then press on Create another button. &lt;br /&gt;
&lt;br /&gt;
[[Image:UI4 camera2.png|547x406px|UI4 camera2.png]]&amp;amp;nbsp; [[Image:UI4 camera1.jpg|812x492px|UI4 camera1.jpg]] &lt;br /&gt;
&lt;br /&gt;
In most cases, IP cameras have a URL method for obtaining a SNAPSHOT or JPG image from the camera. If your camera supports this method, you can then use it with Vera and you can archive these snapshots over time for security purposes. Most IP/Network cameras made in the past few years will have a JPG Snapshot mode. Some examples from Linksys are WVC54GCA, WVC200/WVC210.&amp;amp;nbsp; D-link, Trend-Net, and many others make similar cameras. &lt;br /&gt;
&lt;br /&gt;
You will need to specify: &lt;br /&gt;
&lt;br /&gt;
*the IP address or domain name of the camera &lt;br /&gt;
*the URL or path to retrieve the current image from the camera as a JPEG file &lt;br /&gt;
*any username and password to retrieve the JPEG file&lt;br /&gt;
&lt;br /&gt;
The URL (your camera's manual may denote this as &amp;quot;path&amp;quot; or &amp;quot;snapshot address&amp;quot;) needs to retrieve the actual JPEG file, not just an HTML page that has the JPEG file somewhere on it. For example, if you can view a JPEG file from your camera with this URL: '''http://192.168.81.5/Snapshot.JPG?Quality=Standard''', then put in these settings: &lt;br /&gt;
&lt;br /&gt;
IP Address: '''192.168.81.5'''&amp;lt;br&amp;gt; Path: '''Snapshot.JPG?Quality=Standard''' &lt;br /&gt;
&lt;br /&gt;
and be sure to provide the username/password if one is needed. After you specify this information, click the red 'Save' button, and then you can see the camera by clicking the 'View Camera' option. &lt;br /&gt;
&lt;br /&gt;
==== '''UI2'''  ====&lt;br /&gt;
&lt;br /&gt;
In Vera's setup page click Devices, Luup plugins, Install/uninstall plugins, and click 'install' next to either the 'Generic IP Camera' plugin, or, if you see a plugin for your particular camera, such as 'Panasonic IP Camera with Pan/Tilt/Zoom' use that instead. If you have more than one camera, you can click &amp;quot;install another&amp;quot; to have multiple instances of the plugin. If your camera is not a 'Plug and Play' model or not on the supported list, you need to specify the settings for the camera by going to the 'Devices' tab on Vera's setup page, adding the camera if it's not already there, and clicking the '+' icon to edit the camera's settings. &lt;br /&gt;
&lt;br /&gt;
[[Image:Camera1.jpg|thumb|center|512px]] [[Image:Camera2.jpg|thumb|center|512px|Camera2.jpg]] &lt;br /&gt;
&lt;br /&gt;
=== '''Configuring the Panasonic IP camera to connect wirelessly to Vera'''  ===&lt;br /&gt;
&lt;br /&gt;
The Panasonic IP Cameras have a switch on the bottom: WIRED/WIRELESS. In order to connect your camera wirelessly to Vera, you'll need to follow these steps: &lt;br /&gt;
&lt;br /&gt;
    - set the switch to WIRED&lt;br /&gt;
 - connect your camera to Vera's LAN port using an Ethernet cable&lt;br /&gt;
 - turn the camera on, confirm Vera's LAN LED turns orange, and wait for the IP Cam LED to turn green&lt;br /&gt;
 - wait for the camera to be detected in Devices -&amp;amp;gt; Unassigned Device&lt;br /&gt;
 - assign the camera to a 'Room' and click 'Save'&lt;br /&gt;
 (for the camera to be detected it should have the default username/password: dceadmin/dcepass and listen on port 80)&lt;br /&gt;
 - confirm that you can see images from the camera&lt;br /&gt;
 - click on the &amp;quot;+&amp;quot; sign near your camera and note its IP address (e.g. 192.168.81.200)&lt;br /&gt;
&lt;br /&gt;
    - connect your computer to the same network as your camera&lt;br /&gt;
 - open your web browser and type in: http://camera1_ip (in this example, http://192.168.81.200)&lt;br /&gt;
 - login with the default camera username: dceadmin and password: dcepass&lt;br /&gt;
 - go to Setup -&amp;amp;gt; Wireless and set SSID, Cipher and Password to Vera's wireless settings&lt;br /&gt;
 which can be found an the bottom of Vera. (default Cipher is WPA2-PSK)&lt;br /&gt;
 - click 'Save Settings'&lt;br /&gt;
 - turn the camera's bottom switch to WIRELESS and reboot your camera by cycling its power&lt;br /&gt;
&lt;br /&gt;
Your camera should now connect wirelessly to Vera. If you change your Vera's wireless settings you'll have first to update them on your cameras, so you won't lose connection to them. &lt;br /&gt;
&lt;br /&gt;
=== Example of using a Linksys WVC54GCA or WVC210 camera with Vera  ===&lt;br /&gt;
&lt;br /&gt;
For example, if you can view a JPEG file from your camera with this URL: http://192.168.81.5/img/snapshot.cgi, then put in these settings: &amp;lt;br&amp;gt;Domain or IP: 192.168.81.5 (or ''YourDomain.MyLinksysCam.com'' if remote access is enabled)&amp;lt;br&amp;gt; Path: img/snapshot.cgi&amp;lt;br&amp;gt;A username and password must be used unless all users are allowed in the USERS section.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*If you have more than one camera, you will be using the PORT as part of the URL. If your second camera is on PORT 1024 and the IP is 192.168.81.6, you would use 192.168.81.6:1024 or YourDomain.MyLinksysCam.com:1024&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== iCAMView and some Lorex network cameras  ===&lt;br /&gt;
&lt;br /&gt;
For [http://www.icamview.co.uk iCAMView] based cameras, including a few Lorex-branded ones, the path would be: &amp;lt;br&amp;gt; &amp;lt;tt&amp;gt;showimg_pda.cgi?cam=1 for the first camera&amp;lt;/tt&amp;gt; &amp;lt;br&amp;gt; &amp;lt;tt&amp;gt;showimg_pda.cgi?cam=2 for the second camera&amp;lt;/tt&amp;gt; &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Older models may require slightly different path: &amp;lt;br&amp;gt; &amp;lt;tt&amp;gt;pda.cgi?cam=1 for the first camera&amp;lt;/tt&amp;gt; &amp;lt;br&amp;gt; &amp;lt;tt&amp;gt;pda.cgi?cam=2 for the second camera&amp;lt;/tt&amp;gt; &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Other parameters would be the same as above. &lt;br /&gt;
&lt;br /&gt;
=== Axis IP Cameras  ===&lt;br /&gt;
&lt;br /&gt;
Path: axis-cgi/jpg/image.cgi (or ''lastshot.jpg'' depending of the model) &amp;lt;br&amp;gt; More information here: &amp;lt;br&amp;gt; [http://www.axis.com/techsup/cam_servers/tech_notes/live_snapshots.htm Axis live_snapshots] &amp;lt;br&amp;gt; [http://www.axis.com/techsup/cam_servers/cam_200p/techoverview.htm Axis techoverview] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Trendnet IP camera, TV-IP110W'''  ===&lt;br /&gt;
&lt;br /&gt;
Path: /cgi/jpg/image.cgi &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== '''VistaCam'''  ==&lt;br /&gt;
&lt;br /&gt;
VistaCam by Mi Casa Verde is a compact Indoor IP camera that supports both wired and wireless installation. Mi Casa Verde Technical Support Team pre-provisions each VistaCam so it works right out of the box with Vera! Set-up doesn’t get any easier. Whether for Home, Business, Facility surveillance, or just for fun, the VistaCam easy to install and has all the features users need at an affordable price!&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
There are 2 basic ways to setup the VistaCam to work with Vera in wireless mode. Here is what you need to do:&amp;lt;br&amp;gt; '''A''') if you have a main router in the house and Vera and your computer are connected to it (we presume that Vera has been already configured)&amp;lt;br&amp;gt; 1) connect the vista Cam to the same router;&amp;lt;br&amp;gt; 2) after a minute or so Vera will auto detect the camera and install the necessary plugin;&amp;lt;br&amp;gt; 3) after the plugin is installed you should be able to see an image when you press the little wrench key from the camera's icon on the dashboard;&amp;lt;br&amp;gt; 4) go to the Settings tab and scroll down to the last option, IP;&amp;lt;br&amp;gt; 5) copy that IP address and paste it into your browser's address bar and hit the Enter key (it will open the administration page for the camera);&amp;lt;br&amp;gt; 6) on the camera's administration page go to wireless options and set up the SSID and the password (the SSID is usually &amp;quot;'''vera_xxxxx'''&amp;quot; [where xxxxx is Vera's Serial Number]; you can find the Serial number and the password on the back side of Vera[password is WiFi pass or Home ID]) and Save;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;'''Note: Vera's SSID is starting with a small letter, not a capital one: vera_xxxxx'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Note: The password should be listed as ''''Shared Key' '''under the 'Security' section and will show up after you select the '''encryption protocol:&amp;amp;nbsp;WPA2'''.&amp;lt;br&amp;gt; 7) remove the Internet cable connection and power cycle the camera;&amp;lt;br&amp;gt; 8) go to the dashboard and check for image from the camera.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''B''') if by any reason you can't see the camera after you connect it to your main router here is what you need to do (we presume that Vera has been already configured):&amp;lt;br&amp;gt; 1) go to Advanced &amp;amp;gt; Net &amp;amp;amp; WiFi tab and select the '''Through another gateway on my network. MiOS is a switch''' option and then ''Save and apply'' from the bottom of that page;&amp;lt;br&amp;gt; 2) connect your camera to the '''ETH2 port''' on Vera(now Vera should &amp;quot;see&amp;quot; the camera and you should be able to see pictures);&amp;lt;br&amp;gt; 3) go to the Settings tab and scroll down to the last option, IP;&amp;lt;br&amp;gt; 4) copy that IP address and paste it into your browser's address bar and hit the Enter key (it will open the administration page for the camera);&amp;lt;br&amp;gt; 5) on the camera's administration page go to wireless options and set up the SSID and the password (the SSID is usually &amp;quot;'''vera_xxxxx'''&amp;quot; [where xxxxx is Vera's Serial Number]; you can find the Serial number and the password on the back side of Vera[password is WiFi pass or Home ID]) and Save; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;'''Note: Vera's SSID is starting with a small letter, not a capital one: vera_xxxxx'''&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Note: The password should be listed as ''''Shared Key' '''under the 'Security' section and will show up after you select the '''encryption protocol:&amp;amp;nbsp;WPA2'''.&amp;lt;br&amp;gt; 6) remove the Internet cable connection and power cycle the camera;&amp;lt;br&amp;gt; 7) go to the Dashboard and check if you receive images from the camera. &lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/IP_Cameras</id>
		<title>IP Cameras</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/IP_Cameras"/>
				<updated>2013-07-24T22:21:18Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you buy an IP camera from Mi Casa Verde, we will pre-configure it to work with Vera right out of the box. If you get the camera yourself, and it's a model that is 'Plug and Play' compatible with Vera (see 'Supported Cameras' below), then you should be sure the camera is configured to get an IP address automatically, and that the username is set to: '''dceadmin''' and the password is set to: '''dcepass'''. Vera will add the camera automatically and fill in the settings. (Specific info for users of [[Panasonic IP Cameras|Panasonic IP Cameras]])&amp;amp;nbsp; When adding a camera that is not on the supported list, see the section ''''Manually adding a camera'''' below. &lt;br /&gt;
&lt;br /&gt;
=== '''Supported Cameras'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Mi Casa Verde &lt;br /&gt;
| IP&amp;amp;nbsp;Camera &lt;br /&gt;
| Vistacam &lt;br /&gt;
| all &lt;br /&gt;
| &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| The VistaCam comes pre-configured with the Vera unit so when you connect the camera to the network it should be shown on the Dashboard automatically.&lt;br /&gt;
|-&lt;br /&gt;
| Panasonic &lt;br /&gt;
| IP Camera &lt;br /&gt;
| BL-C131/BL-C30 &lt;br /&gt;
| all &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &lt;br /&gt;
The Panasonic IP cameras work well with Vera. However, for unknown reasons, the Panasonic camera will not get an IP address on your LAN until you run the Windows software supplied with it. You do not need to install the software; just insert the CD and tell the camera to get an IP address automatically (DHCP). If you buy the camera from the Mi Casa Verde web shop we do this before we ship it so the camera will work out of the box. Mac/Linux users who buy the camera elsewhere will need a Windows PC to 'activate' the camera. Set the default username/password on the camera to: dceadmin and dcepass for Vera to detect the camera automatically, or, if you use your own username/password, add the camera to Vera manually and provide Vera your username/password to access the camera. &lt;br /&gt;
&lt;br /&gt;
Update: For Mac users please access this [http://www.networkwebcams.com/ip-camera-learning-center/2008/05/16/howto-set-up-a-panasonic-ip-camera-using-a-mac/ link] and setup your camera. &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that work'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Foscam [http://www.foscam.us/] [http://www.foscam.com/] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://foscam.us/foscam-fi8918w-wireless-ip-camera-11.html?gclid=CPDxx_v5trECFYrP3wodpHgAwQ FI8908/FI8908W] &lt;br /&gt;
| firmware 11.14.1.46 / 2.4.8.12 &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| /snapshot.cgi &lt;br /&gt;
| [http://www.amazon.com/Wireless-Windows-compatible-Installation-Included/product-reviews/B0030FR08W/ref=dp_top_cm_cr_acr_txt?ie=UTF8&amp;amp;showViewpoints=1 Customer reviews] &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Use the Foscam IP Camera Tool for initial setup, then copy IP address and path into Vera setup fields.&amp;lt;br&amp;gt;For Pan, Tilt, Patrol support use the attached file [http://forum.micasaverde.com/index.php/topic,8832.msg68515.html#msg68515 here].&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://homesupport.cisco.com/en-us/wireless/lbc/WVC54GCA/download WVC54GCA] &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive camera with moderate image quality. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.cisco.com/en/US/products/ps9948/index.html WVC210] &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and pan/tilt ability. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://homesupport.cisco.com/en-us/wireless/lbc/WVC80N?referrer=www.linksysbycisco.com WVC80N] &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi?size=2&amp;amp;amp;quality=1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and wireless N. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera. &lt;br /&gt;
Size can be (160 x 120 = 1,320 x 240 = 2,640 x 480 = 3) and Quality can be (Very High= 1,High= 2,Normal= 3,Low= 4,Very Low= 5) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| iCamView &lt;br /&gt;
| IP Camera Server &lt;br /&gt;
| [http://icamview.com/icv22.htm iCV-22], [http://icamview.com/icv32.htm iCV-32] &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=1&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=2&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich IP camera server, supports up to two compatible USB cameras, optional WiFi support, USB storage, USB hubs, motion; works with range of cameras, see icamview.co.uk. Excellent modular solution. They do ship to North America.&lt;br /&gt;
|-&lt;br /&gt;
| SmartHome.com.au SmartEye [http://www.wansview.com/ Wansview] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.smarthome.com.au/zseries/wirelesssecuritycamera.php Z~Series Wireless Camera] [http://www.ipcam-central.com IPCAM Central SmartEye NC532W] &lt;br /&gt;
| all &lt;br /&gt;
| 2009 [http://www.ipcam-central.com/Smarteye-NC532W-FTP-p/nc532w-ftp.htm 2011]&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor and [http://www.ipcam-central.com/Smarteye-NC532W-FTP-p/nc532w-ftp.htm Outdoor H.264 w/FTP/email/SD] &lt;br /&gt;
| Static URL /tmpfs/auto.jpg (small) OR /tmpfs/snap.jpg (large) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Inexpensive IP security camera designed for the Australian and New Zealand Z-Wave users, but shipping world wide. Luup file available from [http://www.ipcam-central.com] but not needed unless need PTZ. Despite Vera only displaying small images use snap.jpg to get larger images in Home Buddy for Android. Informational: QT URL for IE http://x.x.x.x/iphone/11.qt?user:password&amp;amp;amp; which reveals RTSP RTP URL rtsp://x.x.x.x/iphone/11 (credentials required though)&lt;br /&gt;
|-&lt;br /&gt;
| [http://global.level1.com LevelOne] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://global.level1.com/product_d.php?id=54 WCS-2030] &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| cgi-bin/video.jpg &lt;br /&gt;
| [http://reviews.cnet.com/search-results/levelone-camcon-wcs-2030/1707-5_7-31972011.html CNET review] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive IP camera with good image quality. Can be connected wired or wirelessly. Most LevelOne cameras use the same path for the JPEG image, so most of their line (both low and high end) should be compatible. Video and audio also stream over RTSP, which can be customized through the camera's web interface.&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.asante.com/products/SecureNetCam/Voyager1.asp Voyager I] &lt;br /&gt;
| firmware 2.02 and above &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive&amp;amp;nbsp;IP&amp;amp;nbsp;camera that is very feature rich, has good image quality, night vision capabilities, motion detection, two-way audio, video streaming over TCP, UDP, or HTTP, and other configurable features. In firmware version 2.02, Asante added the capability to retrieve an image via a URL (however, it is delayed by 3 seconds). Offers a full-featured web interface in IE using an ActiveX plug-in (limited capabilites in other browsers).&lt;br /&gt;
|-&lt;br /&gt;
| TrendNet &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.trendnet.com/products/proddetail.asp?prod=155_TV-IP512WN&amp;amp;cat=149 TV-IP512WN] &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| /image/jpeg.cgi OR /cgi/jpg/image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich inexpensive IP camera with good image quality, features 802.11n, GPIO ports, not bad optics&lt;br /&gt;
|-&lt;br /&gt;
| D-Link &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.dlink.com/products/?pid=DCS-950G DCS-950G] &lt;br /&gt;
| firmware 1.07 &lt;br /&gt;
| &amp;amp;nbsp;? &lt;br /&gt;
| Indoor &lt;br /&gt;
| /_gCVimage.jpg &lt;br /&gt;
| [http://www.amazon.com/D-Link-Securicam-DCS-950G-Wireless-Internet/product-reviews/B0006GDCD0/ref=dp_top_cm_cr_acr_txt?ie=UTF8&amp;amp;showViewpoints=1 Customer reviews] &lt;br /&gt;
| Ap15e &lt;br /&gt;
| It takes about 9(!) seconds to get the jpg file from the camera, but Vera's generic Luup IP camera plugin times out after 5 seconds by default. Starting with Ui4 a timeout option was added to the device settings for the camera, which you can increase to 10.&lt;br /&gt;
|-&lt;br /&gt;
| D-Link &lt;br /&gt;
| IP Camera &lt;br /&gt;
| [http://www.dlink.com/products/?pid=664 DCS-920] (also DCS-930 and DCS-932) &lt;br /&gt;
| firmware 1.05? &lt;br /&gt;
| &amp;amp;nbsp;? &lt;br /&gt;
| Indoor &lt;br /&gt;
| /image/jpeg.cgi &lt;br /&gt;
&amp;lt;br&amp;gt; /image.jpg &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| futzle &lt;br /&gt;
| Standard timeout (5 seconds) works. It may be necessary to turn on access control (username/password) on the camera's web configuration, and set Vera to use the username/password.&lt;br /&gt;
|-&lt;br /&gt;
| Wanscam &lt;br /&gt;
| IP Camera &lt;br /&gt;
| aj-c2wa-c198 &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| Indoor &lt;br /&gt;
| /videostream.cgi &lt;br /&gt;
| &lt;br /&gt;
| mcvdaniel &lt;br /&gt;
| It may be necessary to use the original software that came with the camera to find it on the network.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Aviosys (Yoics)&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera server&amp;lt;/span&amp;gt; &lt;br /&gt;
| [http://www.aviosys.com/downloads/manuals/video/9100%28A%29%20Plus%20Manual-NB%20-V2.37.pdf &amp;lt;span style=&amp;quot;font-size: small;&amp;quot;&amp;gt;9100a&amp;lt;/span&amp;gt;] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Indoor/Outdoor&amp;lt;/span&amp;gt; &lt;br /&gt;
| &lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;/usr/yoics0.jpg&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;/usr/yoics1.jpg&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;/usr/yoics2.jpg&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small; line-height: 1.5em;&amp;quot;&amp;gt;/usr/yoics3.jpg&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;mcvadi&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;The number for the URL depends on the port that the camera is connected to (/usr/yoics1.jpg is for port 2 on the server). Each camera uses the same IP address (the one from the camera server).&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;IPUX&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;ICS 2330&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;/cgi/mjpg/mjpg.cgi&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;mcvanne&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Camera must be setup to use MJPEG compression from the camera configuration page.&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Hikvison&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;DS-2CD7153-E&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;All&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;2012&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;line-height: 1.5em;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Indoor/Outdoor&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;/Streaming/channels/1/picture&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;ndwalters&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Perform initial setup via web interface.&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Hikvison&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;DS-2CD852MF-E&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;All&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;2012&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Indoor/Outdoor&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;/Streaming/channels/1/picture&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;ndwalters&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Perform initial setup via web interface.&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Dahua&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IPC-Hx2xxxP&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Firmware 2.103.0000.0.T.20130220&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;2013&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Indoor/Outdoor&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif;&amp;quot;&amp;gt;/cgi-bin/snapshot.cgi?channel=&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;amp;lt;wbr style=&amp;quot;font-size: 11px; color: rgb(34, 34, 34); font-family: arial, sans-serif;&amp;quot;&amp;amp;gt;&amp;amp;lt;/wbr&amp;amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif;&amp;quot;&amp;gt;0&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;ndwalters&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Perform initial setup via web interface.&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Dahua&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IPC-Hx3xxxP&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Firmware 2.103.0000.0.T.20121219&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;2013&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;Indoor/Outdoor&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif;&amp;quot;&amp;gt;/cgi-bin/snapshot.cgi?channel=&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;amp;lt;wbr style=&amp;quot;font-size: 11px; color: rgb(34, 34, 34); font-family: arial, sans-serif;&amp;quot;&amp;amp;gt;&amp;amp;lt;/wbr&amp;amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif;&amp;quot;&amp;gt;0&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;ndwalters&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;Perform initial setup via web interface.&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;font color=&amp;quot;#222222&amp;quot; face=&amp;quot;arial, sans-serif&amp;quot; size=&amp;quot;2&amp;quot;&amp;gt;Edimax&amp;lt;/font&amp;gt;&lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;IP Camera&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;font color=&amp;quot;#222222&amp;quot; face=&amp;quot;arial, sans-serif&amp;quot; size=&amp;quot;2&amp;quot;&amp;gt;IC-71110W&amp;lt;/font&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;2013&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;font color=&amp;quot;#222222&amp;quot; face=&amp;quot;arial, sans-serif&amp;quot; size=&amp;quot;2&amp;quot;&amp;gt;/snapshot.jpg&amp;lt;/font&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;span style=&amp;quot;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: small;&amp;quot;&amp;gt;mcvanne&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;font color=&amp;quot;#222222&amp;quot; face=&amp;quot;arial, sans-serif&amp;quot; size=&amp;quot;2&amp;quot;&amp;gt;Go to camera's control panel -&amp;amp;gt; Network -&amp;amp;gt; LoginFree and set the filename to snapshot.jpg&amp;lt;/font&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that don't work'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Trendnet &lt;br /&gt;
| IP Camera &lt;br /&gt;
| TV-IP100W &lt;br /&gt;
| all &lt;br /&gt;
| 2007&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| none&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This camera can only serve images using DirectX or Java. The workaround is complex: &amp;quot;using a PC you can use MPlayer to strip out a JPG image from the video stream (asf). You can then store the JPG snapshot on a PC, then run a web server and vera can then &amp;quot;fetch&amp;quot; the image from the PC instead of the camera.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WCW100 &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| none &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ray &lt;br /&gt;
| This camera does not give an IP address out of the box. In order for it work, it needs to be activated using the Schlage LiNK system. Without paying for the Schlage LiNK membership, this camera cannot be used with Vera unless there's a way of forcing the activation. &lt;br /&gt;
Update: The camera might work after a firmware update. More info here: [http://forum.micasaverde.com/index.php?topic=6581.0] and here [http://forum.micasaverde.com/index.php?topic=5841.15] &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Voyager I &lt;br /&gt;
| firmware 2.00 &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| none &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ray &lt;br /&gt;
| This camera is inexpensive, very feature rich, has very good image quality, and has night vision capabilities. However, there is no publicly accessible URL to grab a live JPG from the camera. The web interface requires an ActiveX plug-in to view the live video feed and there is a snapshot button that will deliver a JPG. Asante is reportedly making changes to their camera in the next version of the firmware that should resolve some of these issues.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== '''DVR's that work'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| EverFocus &lt;br /&gt;
| DVR &lt;br /&gt;
| &lt;br /&gt;
| all &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
/m/camera1.jpg &lt;br /&gt;
&lt;br /&gt;
/m/live.htm?camera=1 &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvgeorge&amp;lt;br&amp;gt; &lt;br /&gt;
| &lt;br /&gt;
The path needs to be changed for each camera, the tested DVR had 9 cameras (1-9). &lt;br /&gt;
&lt;br /&gt;
It works only with the firmware which allows digest authentification (newer than 1.5.622). &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== '''Manually adding a camera'''  ===&lt;br /&gt;
&lt;br /&gt;
==== '''UI5'''  ====&lt;br /&gt;
&lt;br /&gt;
The instructions are here: http://docs5.mios.com/doc.php?language=1&amp;amp;amp;manual=1&amp;amp;amp;platform=3Lite&amp;amp;amp;page=ip_cameras &lt;br /&gt;
&lt;br /&gt;
==== '''UI4'''  ====&lt;br /&gt;
&lt;br /&gt;
Install the &amp;quot;Generic IP Camera&amp;quot; or &amp;quot;Panasonic IP Camera with Pan/Tilt/Zoom&amp;quot; plugin from the MIOS Marketplace (click on the &amp;quot;+&amp;quot; button from your Dashboard), depending on the camera type, then fill in the blank boxes with the information below(*). To add a new camera just click on the already installed plugin and then press on Create another button. &lt;br /&gt;
&lt;br /&gt;
[[Image:UI4 camera2.png|547x406px|UI4 camera2.png]]&amp;amp;nbsp; [[Image:UI4 camera1.jpg|812x492px|UI4 camera1.jpg]] &lt;br /&gt;
&lt;br /&gt;
In most cases, IP cameras have a URL method for obtaining a SNAPSHOT or JPG image from the camera. If your camera supports this method, you can then use it with Vera and you can archive these snapshots over time for security purposes. Most IP/Network cameras made in the past few years will have a JPG Snapshot mode. Some examples from Linksys are WVC54GCA, WVC200/WVC210.&amp;amp;nbsp; D-link, Trend-Net, and many others make similar cameras. &lt;br /&gt;
&lt;br /&gt;
You will need to specify: &lt;br /&gt;
&lt;br /&gt;
*the IP address or domain name of the camera &lt;br /&gt;
*the URL or path to retrieve the current image from the camera as a JPEG file &lt;br /&gt;
*any username and password to retrieve the JPEG file&lt;br /&gt;
&lt;br /&gt;
The URL (your camera's manual may denote this as &amp;quot;path&amp;quot; or &amp;quot;snapshot address&amp;quot;) needs to retrieve the actual JPEG file, not just an HTML page that has the JPEG file somewhere on it. For example, if you can view a JPEG file from your camera with this URL: '''http://192.168.81.5/Snapshot.JPG?Quality=Standard''', then put in these settings: &lt;br /&gt;
&lt;br /&gt;
IP Address: '''192.168.81.5'''&amp;lt;br&amp;gt; Path: '''Snapshot.JPG?Quality=Standard''' &lt;br /&gt;
&lt;br /&gt;
and be sure to provide the username/password if one is needed. After you specify this information, click the red 'Save' button, and then you can see the camera by clicking the 'View Camera' option. &lt;br /&gt;
&lt;br /&gt;
==== '''UI2'''  ====&lt;br /&gt;
&lt;br /&gt;
In Vera's setup page click Devices, Luup plugins, Install/uninstall plugins, and click 'install' next to either the 'Generic IP Camera' plugin, or, if you see a plugin for your particular camera, such as 'Panasonic IP Camera with Pan/Tilt/Zoom' use that instead. If you have more than one camera, you can click &amp;quot;install another&amp;quot; to have multiple instances of the plugin. If your camera is not a 'Plug and Play' model or not on the supported list, you need to specify the settings for the camera by going to the 'Devices' tab on Vera's setup page, adding the camera if it's not already there, and clicking the '+' icon to edit the camera's settings. &lt;br /&gt;
&lt;br /&gt;
[[Image:Camera1.jpg|thumb|center|512px|Camera1.jpg]] [[Image:Camera2.jpg|thumb|center|512px]] &lt;br /&gt;
&lt;br /&gt;
=== '''Configuring the Panasonic IP camera to connect wirelessly to Vera'''  ===&lt;br /&gt;
&lt;br /&gt;
The Panasonic IP Cameras have a switch on the bottom: WIRED/WIRELESS. In order to connect your camera wirelessly to Vera, you'll need to follow these steps: &lt;br /&gt;
&lt;br /&gt;
    - set the switch to WIRED&lt;br /&gt;
 - connect your camera to Vera's LAN port using an Ethernet cable&lt;br /&gt;
 - turn the camera on, confirm Vera's LAN LED turns orange, and wait for the IP Cam LED to turn green&lt;br /&gt;
 - wait for the camera to be detected in Devices -&amp;amp;gt; Unassigned Device&lt;br /&gt;
 - assign the camera to a 'Room' and click 'Save'&lt;br /&gt;
 (for the camera to be detected it should have the default username/password: dceadmin/dcepass and listen on port 80)&lt;br /&gt;
 - confirm that you can see images from the camera&lt;br /&gt;
 - click on the &amp;quot;+&amp;quot; sign near your camera and note its IP address (e.g. 192.168.81.200)&lt;br /&gt;
&lt;br /&gt;
    - connect your computer to the same network as your camera&lt;br /&gt;
 - open your web browser and type in: http://camera1_ip (in this example, http://192.168.81.200)&lt;br /&gt;
 - login with the default camera username: dceadmin and password: dcepass&lt;br /&gt;
 - go to Setup -&amp;amp;gt; Wireless and set SSID, Cipher and Password to Vera's wireless settings&lt;br /&gt;
 which can be found an the bottom of Vera. (default Cipher is WPA2-PSK)&lt;br /&gt;
 - click 'Save Settings'&lt;br /&gt;
 - turn the camera's bottom switch to WIRELESS and reboot your camera by cycling its power&lt;br /&gt;
&lt;br /&gt;
Your camera should now connect wirelessly to Vera. If you change your Vera's wireless settings you'll have first to update them on your cameras, so you won't lose connection to them. &lt;br /&gt;
&lt;br /&gt;
=== Example of using a Linksys WVC54GCA or WVC210 camera with Vera  ===&lt;br /&gt;
&lt;br /&gt;
For example, if you can view a JPEG file from your camera with this URL: http://192.168.81.5/img/snapshot.cgi, then put in these settings: &amp;lt;br&amp;gt;Domain or IP: 192.168.81.5 (or ''YourDomain.MyLinksysCam.com'' if remote access is enabled)&amp;lt;br&amp;gt; Path: img/snapshot.cgi&amp;lt;br&amp;gt;A username and password must be used unless all users are allowed in the USERS section.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*If you have more than one camera, you will be using the PORT as part of the URL. If your second camera is on PORT 1024 and the IP is 192.168.81.6, you would use 192.168.81.6:1024 or YourDomain.MyLinksysCam.com:1024&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== iCAMView and some Lorex network cameras  ===&lt;br /&gt;
&lt;br /&gt;
For [http://www.icamview.co.uk iCAMView] based cameras, including a few Lorex-branded ones, the path would be: &amp;lt;br&amp;gt; &amp;lt;tt&amp;gt;showimg_pda.cgi?cam=1 for the first camera&amp;lt;/tt&amp;gt; &amp;lt;br&amp;gt; &amp;lt;tt&amp;gt;showimg_pda.cgi?cam=2 for the second camera&amp;lt;/tt&amp;gt; &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Older models may require slightly different path: &amp;lt;br&amp;gt; &amp;lt;tt&amp;gt;pda.cgi?cam=1 for the first camera&amp;lt;/tt&amp;gt; &amp;lt;br&amp;gt; &amp;lt;tt&amp;gt;pda.cgi?cam=2 for the second camera&amp;lt;/tt&amp;gt; &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Other parameters would be the same as above. &lt;br /&gt;
&lt;br /&gt;
=== Axis IP Cameras  ===&lt;br /&gt;
&lt;br /&gt;
Path: axis-cgi/jpg/image.cgi (or ''lastshot.jpg'' depending of the model) &amp;lt;br&amp;gt; More information here: &amp;lt;br&amp;gt; [http://www.axis.com/techsup/cam_servers/tech_notes/live_snapshots.htm Axis live_snapshots] &amp;lt;br&amp;gt; [http://www.axis.com/techsup/cam_servers/cam_200p/techoverview.htm Axis techoverview] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Trendnet IP camera, TV-IP110W'''  ===&lt;br /&gt;
&lt;br /&gt;
Path: /cgi/jpg/image.cgi &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== '''VistaCam'''  ==&lt;br /&gt;
&lt;br /&gt;
VistaCam by Mi Casa Verde is a compact Indoor IP camera that supports both wired and wireless installation. Mi Casa Verde Technical Support Team pre-provisions each VistaCam so it works right out of the box with Vera! Set-up doesn’t get any easier. Whether for Home, Business, Facility surveillance, or just for fun, the VistaCam easy to install and has all the features users need at an affordable price!&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
There are 2 basic ways to setup the VistaCam to work with Vera in wireless mode. Here is what you need to do:&amp;lt;br&amp;gt; '''A''') if you have a main router in the house and Vera and your computer are connected to it (we presume that Vera has been already configured)&amp;lt;br&amp;gt; 1) connect the vista Cam to the same router;&amp;lt;br&amp;gt; 2) after a minute or so Vera will auto detect the camera and install the necessary plugin;&amp;lt;br&amp;gt; 3) after the plugin is installed you should be able to see an image when you press the little wrench key from the camera's icon on the dashboard;&amp;lt;br&amp;gt; 4) go to the Settings tab and scroll down to the last option, IP;&amp;lt;br&amp;gt; 5) copy that IP address and paste it into your browser's address bar and hit the Enter key (it will open the administration page for the camera);&amp;lt;br&amp;gt; 6) on the camera's administration page go to wireless options and set up the SSID and the password (the SSID is usually &amp;quot;'''vera_xxxxx'''&amp;quot; [where xxxxx is Vera's Serial Number]; you can find the Serial number and the password on the back side of Vera[password is WiFi pass or Home ID]) and Save;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;'''Note: Vera's SSID is starting with a small letter, not a capital one: vera_xxxxx'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Note: The password should be listed as ''''Shared Key' '''under the 'Security' section and will show up after you select the '''encryption protocol:&amp;amp;nbsp;WPA2'''.&amp;lt;br&amp;gt; 7) remove the Internet cable connection and power cycle the camera;&amp;lt;br&amp;gt; 8) go to the dashboard and check for image from the camera.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''B''') if by any reason you can't see the camera after you connect it to your main router here is what you need to do (we presume that Vera has been already configured):&amp;lt;br&amp;gt; 1) go to Advanced &amp;amp;gt; Net &amp;amp;amp; WiFi tab and select the '''Through another gateway on my network. MiOS is a switch''' option and then ''Save and apply'' from the bottom of that page;&amp;lt;br&amp;gt; 2) connect your camera to the '''ETH2 port''' on Vera(now Vera should &amp;quot;see&amp;quot; the camera and you should be able to see pictures);&amp;lt;br&amp;gt; 3) go to the Settings tab and scroll down to the last option, IP;&amp;lt;br&amp;gt; 4) copy that IP address and paste it into your browser's address bar and hit the Enter key (it will open the administration page for the camera);&amp;lt;br&amp;gt; 5) on the camera's administration page go to wireless options and set up the SSID and the password (the SSID is usually &amp;quot;'''vera_xxxxx'''&amp;quot; [where xxxxx is Vera's Serial Number]; you can find the Serial number and the password on the back side of Vera[password is WiFi pass or Home ID]) and Save; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;'''Note: Vera's SSID is starting with a small letter, not a capital one: vera_xxxxx'''&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Note: The password should be listed as ''''Shared Key' '''under the 'Security' section and will show up after you select the '''encryption protocol:&amp;amp;nbsp;WPA2'''.&amp;lt;br&amp;gt; 6) remove the Internet cable connection and power cycle the camera;&amp;lt;br&amp;gt; 7) go to the Dashboard and check if you receive images from the camera. &lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Supported_Hardware</id>
		<title>Supported Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Supported_Hardware"/>
				<updated>2013-07-24T22:16:48Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a page for Supported Z-Wave devices. &lt;br /&gt;
&lt;br /&gt;
Alternative hardware pages exist for &lt;br /&gt;
&lt;br /&gt;
*[[ZWave Add Controller|Z-Wave Handheld Remote Controls, Gateways and Scene Controllers]] &lt;br /&gt;
*[[IP Cameras|IP Enabled Cameras]] &lt;br /&gt;
*[[Insteon Supported Hardware|Insteon/X10 devices]] &lt;br /&gt;
*USB, or USB-Serial, [[Serial Supported Hardware|Interface devices]]&lt;br /&gt;
&lt;br /&gt;
In general, any device with the Z-Wave logo should work with Vera. A list of tested Z-Wave devices is below, with specific notes for each type of device. This is a wiki, so feel free to add to the page. To learn about Z-Wave routing and fixing routing problems see: [[Heal Network]] &lt;br /&gt;
&lt;br /&gt;
== Hardware Reported to Work  ==&lt;br /&gt;
&lt;br /&gt;
*We strongly encourage users to list any and all products they tested and installed. &lt;br /&gt;
*If a product works but you did not like it, please list it anyway. It may be the only product available to some users.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT! The devices listed here have been added by installers, technicians and users like yourself. Results may vary upon installations. MiCasaVerde does not guarantee operation and compatibility with your installation. The listed devices were found to work with their specific installation. Mixing different series and brands of equipment is not guaranteed in any way to work with other series and brands. It is very likely that users have not fully tested all features of the devices, so it is possible that a device listed here as compatible, will not prove compatible with your hardware. If you are editing this wiki DO NOT REMOVE a listed working device if it hasn't worked for you. Seek help to get the device to work under your individual circumstance. If you are adding to this wiki, please provide links to data for the device and add any tips you feel may benefit someone wanting to implement the device into an installation.''' &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Lighting Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Dimmer Switch &lt;br /&gt;
| ZDW120 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, easy to install, LED is a very bright blue....can be programmed to be off when the light is off or on. &amp;quot;series 200&amp;quot; model supports Group Associations 2 &amp;amp;amp; 3. (The older &amp;quot;series 100&amp;quot; supported Groups 1-4, but is no longer available.)&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| ZDW103 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, LED is a very bright blue....can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-wire Dimmer Switch &lt;br /&gt;
| ZDW232 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jul 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5198 Newb] &lt;br /&gt;
| Wall-mount, 230v, 500W, 2-Wire (no neutral), works well. Can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Relay Switch &lt;br /&gt;
| ZRW113 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Controls Florescent Lamps very well! No humming at all.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Companion Switch &lt;br /&gt;
| AS101 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, The trick here is to install this device where the power comes in.&lt;br /&gt;
|-&lt;br /&gt;
| ACT&amp;lt;br&amp;gt; &lt;br /&gt;
| 3-way Dimmer Switch, 2 rocker&amp;lt;br&amp;gt; &lt;br /&gt;
| ZDM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZDM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| Dimmer, Wall-mount, 230v, 500W,&amp;lt;br&amp;gt;3-way, 3 Wire, 2 rocker&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Relay Switch, 2 rocker &lt;br /&gt;
| ZRM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZRM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Relay, Wall-mount, 230v, 6A,&amp;lt;br&amp;gt; 3-way, 3 Wire, 2 rocker - '''Status polling does not work with Vera'''&amp;lt;br&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cooper &lt;br /&gt;
| Accessory (3-way slave) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[Cooper Accessory Slave]]&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 2 wire dimmer &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 05431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall switch.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 06431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| The newer in-wall Düwi switch (also designated Düwi.me), marked with a green sticker on the housing. This switch supports status push.&lt;br /&gt;
|-&lt;br /&gt;
| Fibar &lt;br /&gt;
| 3 wire double switch &lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| This device is designed to use (and be mounted behind) existing light switches. Supports status push. Also available: single switch, dimmer, blind control.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Lamp Module w/Dimmer &lt;br /&gt;
| 45602 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with most incandescent bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Fluorescent Light &amp;amp;amp; Appliance Module &lt;br /&gt;
| 45603 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Outdoor Switch Module &lt;br /&gt;
| 45604 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off/Dim Dimmer Switch &lt;br /&gt;
| 45606 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45606-Manual-Eng.pdf Link] [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Dimmer-Switch-63p555.htm Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Discontinued, See 45612. Requires neutral lead. Works fine with most bulbs. With Philips AmbientLED, flickers at &amp;amp;gt;95% brightness. Supports beaming. Flickers at low-levels with dimmable LED.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| 45607 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off Switch &lt;br /&gt;
| 45609 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Auxiliary Switch &lt;br /&gt;
| 45610 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No zwave function; for 3 and 4-way switching kits&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 2-way Rocker Dimmer &lt;br /&gt;
| 45612 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2012 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No neutral required; replaces 45606&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Dimmer Kit &lt;br /&gt;
| 45613 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Possible error in 45613 manual diagrams, see 45610 diagrams&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Switch Kit &lt;br /&gt;
| 45614 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Relay Switch Adapter &lt;br /&gt;
| RAone SmartPower &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartpower_zw_tech_doc.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Dimmer Switch Adapter &lt;br /&gt;
| RAone SmartDimmer &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartdimmer-00110001-tech.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA03C &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Sept 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha03.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5852 JonnyO] &lt;br /&gt;
| Easy to Instal, supports dimming&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Screw-in Lamp Module &lt;br /&gt;
| HA05C &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Easy install, easy to pair with Vera!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 300 watt dimmer &lt;br /&gt;
| HA06 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha06.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable Dimmer Switch. incandescent/halogen only. Loads for 300 watts or less no neutral required. Great for dimming one bulb.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Switch &lt;br /&gt;
| HA18 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha18.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Affordable 3-way Switch&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| HA20 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha20.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-460-intermatic-homesettings-ha20c-3-way-in-wall-switch-dimmer.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable 3-way 600W dimmer&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRI06-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305784&amp;amp;section=25501 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| VRCS4-MRX &lt;br /&gt;
| 7,2,67,0,2 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well, pair as per [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller], then again holding &amp;quot;2&amp;quot; and &amp;quot;4&amp;quot; to pair the Switch (&amp;quot;Load&amp;quot;) itself.&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRM10-1LX &lt;br /&gt;
| 1 &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=104&amp;amp;products_id=170 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000ZKM7I8/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=65 mark-hc] &lt;br /&gt;
| This is a high quality dimmer geared towards high-end installations&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1L &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| May 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| (Coordinating Remote??)&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LZ &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Light almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for dimmer inserts &lt;br /&gt;
| 5026xx, 5036xx, 5046xx &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5026_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for switch inserts &lt;br /&gt;
| 5024xx, 5034xx, 5044xx &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/5024xx_5034xx_5044xx_Sensorflaeche4pin_CONNECT_INT.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Single Radio flush-mounted receiver &lt;br /&gt;
| 507001 &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5070_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, flush-mounted &lt;br /&gt;
| 507501, 507601 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5075_581_00_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 1-gang universal dimmer, flush-mounted &lt;br /&gt;
| 507900 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5079_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Monster &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| IWC600 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is the same as the Leviton scene controller. Follow these instructions: [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller]&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| RP200 &lt;br /&gt;
| 1.0 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/products/Productdetail3.asp?StyleID=139&amp;amp;FinishID=12&amp;amp;FunctionID=77 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Works well&amp;lt;br&amp;gt;Sold with Schlage LiNK lock system&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Plug &amp;amp;amp; Receptacle Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRR150W &lt;br /&gt;
| 2.2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Works like a champ! Easy to Install. One receptacle RF controlled, the other is hot&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in switch.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZDP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Cooper Wiring Devices &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| RFTR9505-T &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://solutions.cooperwiringdevices.com/common/brands.cfm?pg=Detail&amp;amp;brandName=CWD%20Technology&amp;amp;category=Aspire%20RF%20Lighting%20Control%20System%3A%20Receptacles&amp;amp;id=16772 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| One receptacle is RF controlled, the other is hot. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Duwi &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;05437&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| Feb 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.com/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| ezhome &lt;br /&gt;
| High quality Plug-in switch, Easy install and works well&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN157-2&amp;lt;/span&amp;gt; &lt;br /&gt;
| 4,2,64,1,2 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=501&amp;amp;CateUIDList=0,83 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN158&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Works well. Supports status push and power metering&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| In-wall Duplex Receptacle &lt;br /&gt;
| 45605 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| US &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Duplex-Receptacle-63p554.htm Link] [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45605-Manual-Eng.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Easy. Works.&lt;br /&gt;
|-&lt;br /&gt;
| Home Manageables &lt;br /&gt;
| Lamp Module (Dimming) &lt;br /&gt;
| HM-LM001 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| 200W maximum load, 25W minimum load &lt;br /&gt;
| [http://www.homemanageables.com/manuals/HM-LM001%20Manual%20Final.pdf Link] &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Support for incandescent loads only. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| CA3500 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=105&amp;amp;products_id=97 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000U3XYPA/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is a decent, but expensive solution for in-wall receptacles. One receptacle RF controlled, the other is hot.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA02C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=108&amp;amp;products_id=98 Link] &lt;br /&gt;
| [http://www.amazon.com/Intermatic-HA02C-Settings-Heavy-Duty-Appliance/dp/B000BJSDZO/ref=sr_1_3?ie=UTF8&amp;amp;qid=1227467418&amp;amp;sr=8-3 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Seems to work well&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Outdoor Module &lt;br /&gt;
| HA04C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Easy to Install.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, plug adapter, 2000 W &lt;br /&gt;
| 508519 &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5085_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Monster Central &lt;br /&gt;
| 1800W Appliance Module &lt;br /&gt;
| ML-LAS1000 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Jan 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.monstercable.com/productdisplay.asp?pin=3164 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Easy to Install. I use this as a ZWave signal repeater. Appears to be a badge-engineering of [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=309748&amp;amp;section=25542 Leviton VRP15-1LW]&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA-02L&amp;lt;br&amp;gt;(HA-02WD) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indooor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-02WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Note: link is to HA-02WD manual.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA-03WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-03WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Outdoor Lighting Module &lt;br /&gt;
| HA-04WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2012 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-04WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Thermostat Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| WDTC-20 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/WDTC-20---Z-Wave-Thermostat-Wayne-Dalton-P599C38.aspx Link] &lt;br /&gt;
| [http://www.amazon.com/Wayne-Dalton-Corporation-Z-Wave-Thermostat/dp/B001F8QKYQ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Has 2 inclusion modes: 1) press and release the bind button and the STAT will be included as a thermostat and works with Vera, 2) press and hold the bind button and it will be added as a binary switch for compatibility with old, non-compliant remotes. If it's added in the wrong mode, remove it and re-add it. Works great simple to use!&lt;br /&gt;
|-&lt;br /&gt;
| HAI &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| RC-80BZ &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homeauto.com Link] &lt;br /&gt;
| [http://www.homeauto.com/Downloads/Products/Omnistat/rcr80.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, Hold button feature not able to control by Vera at this time. Priced above 200.00. Has internal setback programs. Works great.&lt;br /&gt;
|-&lt;br /&gt;
| RCS &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| TZ43 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, much more feature rich the the WDTC-20 but comes with a hefty price tag ($214.95). Wish Vera could use all the features in this Thermostat! '''Note:'''''You need to set the thermostat to show the temperature, on its display, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Schlage/Trane &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| Trane &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.link.schlage.com/Products/Pages/Thermostat.aspx Link] &lt;br /&gt;
| [http://www.trane.com/Residential/Products/Thermostats Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| It's the same thermostat as the RCS TZ43 and it has the same issue: it's accepting &amp;quot;Set Temp Point&amp;quot; commands only in the measurement unit that is displayed on its screen. '''Note:'''''You need to set the thermostat to show the temperature, on its screen, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| InTouch &lt;br /&gt;
| CA8900 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-663-intermatic-intouch-ca8900-z-wave-digital-thermostat.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Looks very similar to the Wayne Dalton WDTC-20 listed here. works great, simple to use&lt;br /&gt;
|-&lt;br /&gt;
| Danfoss &lt;br /&gt;
| Radiator thermostat &lt;br /&gt;
| RA PLUS-w &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://raplusw.com/Content/E962FC0B-6461-4319-82FE-3E1E765142CF.html Link] [http://raplusw.com/PCMPDF/Data%20sheet%20RA-PLUS-w_02.pdf Link] &lt;br /&gt;
| [http://www.eurox10.com/Product/ZWave/Actuators/ZWDNF_RA_PLUS-W.htm Link] [http://www.eurox10.com] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See: [[Danfoss Thermostat]] for installation instructions&amp;lt;br&amp;gt;If the device cannot be configured at the final location, move the device closer to Vera and try again (this device might require a direct connection to Vera for configuration).&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT22 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.radiothermostat.com/documents/CT-22-Operation-27aug10.pdf Link] [http://www.radiothermostat.com/documents/CT-22-Installation-27aug10.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| &lt;br /&gt;
To include the thermostat into your network, you just have to install the USNAP module in the thermostat while Vera is in Include mode. To exclude the thermostat from your network, you just have to install the USNAP module in the thermostat while Vera is in Exclude mode.You can watch a video about how to install it [http://www.youtube.com/watch?v=M9VNuHGENP0 here]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT30 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvflorin&amp;lt;br&amp;gt; &lt;br /&gt;
| If you experience a problem with other Z-Wave devices, see this [http://wiki.micasaverde.com/images/3/39/RTCOA_Z-Wave_v7.4_workaround.zip note].&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Remotec &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| ZTS-100 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| To include the thermostat into your network, hold the home button for 2 seconds until the display says 'noc', which means 'no connection', then press the Prog button and the readout will say 'Srh'. If it doesn't say 'noc' or if the radio icon is visible in the upper right corner, the thermostat is already included and must be removed/reset. To remove/reset the thermostat hold the home button for 2 seconds until the display says 'done', then press the Prog button.&lt;br /&gt;
|-&lt;br /&gt;
| Horstmann &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| HRT4-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4-ZWweb.pdf Link] [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf Link] &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf &amp;lt;br&amp;gt;] &lt;br /&gt;
| Daniel &lt;br /&gt;
| After you include the thermostat in Vera's network, you will have to make some configuration changes in order for it to report the temperature change. See: [[HRT4-ZW]] for more information.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Sensors'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| ZIR000 / ZIR010 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU (ZIR010) or US (ZIR000) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR000_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR000_instr.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR010_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR010_instr.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Remove the cover, pair to Vera's dongle by using the push-button on the left of the circuit board. Vera must configure it to work, and it can only be configured within less of a minute (30 sec best) of inserting the batteries. With Vera's dongle removed, remove/reinsert the batteries, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs &lt;br /&gt;
| 3-in-1 sensor (light/humidity/temperature) &lt;br /&gt;
| MultiSensor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.aeon-labs.com/site/public/lib/download.php?type=s&amp;amp;f=29 Specs] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Pair to Vera by using the push-button. Vera must configure it to work, and it can only be configured within 10 minutes of inserting the batteries.&lt;br /&gt;
|-&lt;br /&gt;
| Express Controls aka HomeSeer &lt;br /&gt;
| 3-in-1 sensor (light/temperature/motion) &lt;br /&gt;
| HSM100 / EZMotion &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[ExpressControls3in1]]&amp;lt;br&amp;gt;If the motion sensor does not work right after inclusion and configuration, remove the batteries for a few seconds.&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Hawking/Home Manageables &lt;br /&gt;
| Door/window sensor &lt;br /&gt;
| SM103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=355&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110873R01_SM103_-ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Pair using the intrusion button. The sensor will accept configuration within a few minutes of the initial pairing, or of pressing the intrusion button on the back even after it's paired. Pair the device, or if it's already paired, press the intrusion button, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page. NOTE: There is some confusion about the orientation of the sensor. The main sensor body has a back (where the intrusion is), a front (where the logo and LED is), and the 2 other surfaces, one of which has a curved edge, and the other is flat. The magnet needs to go against the flat surface. And the flat surface on the magnet should be as close as possible to the flat surface on the sensor, lined up in the middle so the line which passes through the LED lines up with the sensor. &lt;br /&gt;
Note: In case the inclusion/exclusion fails you should remove/reinsert the batteries from the sensor and within a few seconds the sensor should be automatically detected. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Home Manageables &lt;br /&gt;
| Humidity + Temperature sensor &lt;br /&gt;
| HM-TS001 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jan 2010 (requires version 1.1.0 or greater) &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.asihome.com/ASIshop/product_info.php?products_id=3946 Link] [http://www.homeseer.com/pdfs/guides/HM_TD001.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| micasaverde &lt;br /&gt;
| Pair or unpair the device by tapping the CF button 3 times very quickly. Once it's paired and shows up in the UI as a generic device, press the CF button 3 times again quickly to make it wakeup and get configured. Then it will correctly be identified as 3 devices (combo device + temperature + humidity).&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Motion Detector &lt;br /&gt;
| SP103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=354&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110874R01_SP103_%20-%20ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Fortrezz &lt;br /&gt;
| Water /Freeze &lt;br /&gt;
| WWA-001 &lt;br /&gt;
| &amp;amp;nbsp;?????? &lt;br /&gt;
| US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.Fortrezz.com Link] [http://www.fortrezz.com/resources/WWA_manual_01May2009.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Zmistro &lt;br /&gt;
| Works great I would place a few in your house. Bathrooms, laundry , kitchen , basement. Great product!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| CA-9000 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthomeusa.com/Products/CA9000/manuals/CA9000.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Aaron &lt;br /&gt;
| This device has limited functionality as a sensor. It can only be used to turn on and off a light directly by setting an association, which Vera supports. It does not fire events, so you cannot use it as an event on a scene.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 4-gang radio transmitter, flush-mounted &lt;br /&gt;
| 506004 &lt;br /&gt;
| 2,2,27,1,4 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5060_581_02_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Note: There is proprietary functionality here. Support will be added soon. &lt;br /&gt;
Quite complex device; partially supported by Vera; can be used as a window/door sensor (as of firmware 1.0.900) ... &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs (Aeotec)&amp;lt;br&amp;gt; &lt;br /&gt;
| 4 in 1 Sensor (Multisensor)&amp;lt;br&amp;gt; &lt;br /&gt;
| DSB05106-ZWUS &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://aeotec.com/z-wave-sensor/47-multisensor-manual.html Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvadi&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://wiki.micasaverde.com/index.php/Aeon_4in1 Link]&amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Door Locks'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| BE369 (deadbolt) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Mid 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/link/product_tour/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Read the instructions here: [[Schlage Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Kwikset &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here:[[Kwikset Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Yale &lt;br /&gt;
| Deadbolt &lt;br /&gt;
| Real Living &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Quickstart%2018JUL11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Instructions%2023AUG11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here: [[Yale Lock]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Drapes/Blinds'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DBMZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/dc_mot_ctrls/z-wave/dbmz/dbmz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| ABMHZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/int_ac_mot_ctrls/z-wave/abmhz/abmhz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/AC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| AC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/DC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Relay controls'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Contactor control box &lt;br /&gt;
| CA3750 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.intouchcontrols.com/~/media/Files/InTouchControls/Products/Spec%20Sheets/CA3750.ashx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Multi-instance class supported for this device. Vera is able to control each of the 2 relays independently if desired. please note unit shows as three switches this is a bug with Intermatic not a real issue.You can check the box in devices to not show the second listing of the first relay in &amp;quot;Dasboard&amp;quot; You can control heavy loads like a water heater ,pool pump motor/s. great device&lt;br /&gt;
|-&lt;br /&gt;
| Fibaro&amp;lt;br&amp;gt; &lt;br /&gt;
| Relay Switch&amp;lt;br&amp;gt; &lt;br /&gt;
| FGS211 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [https://www.uk-automation.co.uk/pdf/FGS211.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| This device is identified as a master device with 1 child device. The master controls the S1 output, the child controls the S2 output.&lt;br /&gt;
|-&lt;br /&gt;
| Fibaro &lt;br /&gt;
| Double Relay Switch &lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://materialy.fibaro.com/instrukcje/relay%20switch%20FGS221%20v1_4%20eng.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| This device is identified as a master device with 1 child device. The master controls the S1 output, the child controls the S2 output.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Window Coverings'''  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 5025xx, 5035xx, 5045xx &lt;br /&gt;
| 6,2,27,2,3 and 6,2,27,2,4 &lt;br /&gt;
| EU &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5025_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work. GUI buttons do not work with Luup release 1.0.843 and 1.0.862 (fixed with Luup release 1.0.879).&amp;lt;br&amp;gt;Workaround: Use a Luup Scene with the following code:&amp;lt;tt&amp;gt;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&amp;lt;tt&amp;gt;local lul_arguments = {}&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_arguments[&amp;quot;newTargetValue&amp;quot;]=&amp;quot;0&amp;quot;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_resultcode,lul_resultstring,lul_job,lul_returnarguments = luup.call_action(&amp;quot;urn:upnp-org:serviceId:SwitchPower1&amp;quot;,&amp;quot;SetTarget&amp;quot;,lul_arguments,6) &amp;lt;/tt&amp;gt; Replace &amp;quot;6&amp;quot; with your device number, replace &amp;quot;0&amp;quot; with &amp;quot;1&amp;quot; for inverse action. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Duewi &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 054368 &lt;br /&gt;
| 6,2,51,1,0 &lt;br /&gt;
| EU &lt;br /&gt;
| Jun 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.de/index.php?productid=37344 Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Lutz &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Some additional observations by Ap15e (Vera V1, firmware 1.0.979): &lt;br /&gt;
*GUI button 'Stop' and corresponding UPnP service does not work. &lt;br /&gt;
*GUI button 'Up' moves the shutter down, GUI button 'Down' moves the shutter up ... &lt;br /&gt;
*After adjusting the running times even the slide bar seems to work! &lt;br /&gt;
*I got a report from a user that the düwi device may fail due to interference from the shutter motor. In this case an additional filter is required (costs about 25 €/direction). &lt;br /&gt;
*More information is available at [http://forum.micasaverde.com/index.php?topic=3359.msg16142#msg16142 Link]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that work'''  ===&lt;br /&gt;
&lt;br /&gt;
See [http://wiki.micasaverde.com/index.php/IP_Cameras IP Cameras] for a more comprehensive and up to date list &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC54GCA &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive camera with moderate image quality. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC210 &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and pan/tilt ability. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC80N &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi?size=2&amp;amp;amp;quality=1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and wireless N. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera. &lt;br /&gt;
Size can be (160 x 120 = 1,320 x 240 = 2,640 x 480 = 3) and Quality can be (Very High= 1,High= 2,Normal= 3,Low= 4,Very Low= 5) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| iCamView &lt;br /&gt;
| IP Camera Server &lt;br /&gt;
| iCV-22, iCV-32 &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=1&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=2&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich IP camera server, suports up to two compatible USB cameras, optional WiFi support, USB storage, USB hubs, motion; works with range of cameras, see icamview.co.uk. Excellent modular solution. They do ship to North America.&lt;br /&gt;
|-&lt;br /&gt;
| SmartHome.com.au &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Z~Series Wireless Camera &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| tmpfs/auto.jpg &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Inexpensive IP security camera designed for the Australian and New Zealand Z-Wave users, but shipping world wide.&lt;br /&gt;
|-&lt;br /&gt;
| [http://global.level1.com LevelOne] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WCS-2030 &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| cgi-bin/video.jpg &lt;br /&gt;
| [http://reviews.cnet.com/search-results/levelone-camcon-wcs-2030/1707-5_7-31972011.html CNET review] &lt;br /&gt;
| An inexpensive IP camera with good image quality. Can be connected wired or wirelessly. Most LevelOne cameras use the same path for the JPEG image, so most of their line (both low and high end) should be compatible. Video and audio also stream over RTSP, which can be customized through the camera's web interface.&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Voyager I &lt;br /&gt;
| firmware 2.02 and above &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive&amp;amp;nbsp;IP&amp;amp;nbsp;camera that is very feature rich, has good image quality, night vision capabilities, motion detection, two-way audio, video streaming over TCP, UDP, or HTTP, and other configurable features. In firmware version 2.02, Asante added the capability to retrieve an image via a URL (however, it is delayed by 3 seconds). Offers a full-featured web interface in IE using an ActiveX plug-in (limited capabilites in other browsers).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Alarm Panels  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Model(s) &lt;br /&gt;
! Required module &lt;br /&gt;
! Plugin &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| DSC &lt;br /&gt;
| &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=1 PowerSeries PC1616] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=2 PowerSeries PC1832] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=3 PowerSeries PC1864]&lt;br /&gt;
&lt;br /&gt;
| [http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=22 IT-100] or [https://www.eyez-on.com/EZMAIN/envisalink2ds.php Envisalink IP170/2DS] &lt;br /&gt;
| [http://code.mios.com/trac/mios_dscalarmpanel/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Elk &lt;br /&gt;
| &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_2981420/M1_Gold_Cross_Platform_Control%C2%AE M1 Gold] &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_3127911/M1EZ8_Cross_Platform_Control%C2%AE M1EZ8]&lt;br /&gt;
&lt;br /&gt;
| The M1EZ8 panel requires the [http://www.elkproducts.com/_webapp_2981423/elk-m1ez8msi__m1ez8_main_serial_interface ELK-M1EZ8MSI] Main Serial Port Interface. &lt;br /&gt;
| [http://code.mios.com/trac/mios_elk-alarm-panel/wiki/WikiStart Link] &lt;br /&gt;
| You can use the ELK-M1XEP Ethernet Interface to connect the panels to Vera on the Ethernet port.&lt;br /&gt;
|-&lt;br /&gt;
| GE Security / Interlogix / Caddx &lt;br /&gt;
| &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-4] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-6] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8E]&lt;br /&gt;
&lt;br /&gt;
| [http://utcfssecurityproducts.com/ProductsAndServices/Pages/NX-584.aspx NX-584] &lt;br /&gt;
| [http://code.mios.com/trac/mios_caddxnx584/wiki/WikiStart Link] &lt;br /&gt;
| NetworX NX-8E already has a RS-232 interface, so it doesn't require the NX-584 module.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128BPT, VISTA-128BPE, VISTA-128FBP, VISTA-250BP, VISTA-250BPT, VISTA-250BPE and VISTA-250FBP &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128FBP, VISTA-250BP, and VISTA-250FBP panels require the [http://www.security.honeywell.com/me/intrusion/products/exp/ac/138478.html 4100SM] module. &lt;br /&gt;
| [http://code.mios.com/trac/mios_ademco-panels-plugin/wiki/WikiStart Link] &lt;br /&gt;
| If your Vista panel is not on this list, look at the next row.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| 10SE, 20SE, 10P, 15P, 20P, 50P, etc. &lt;br /&gt;
| [http://www.nutech.com/online-store/18.html AD2USB] &lt;br /&gt;
| [http://code.mios.com/trac/mios_vista-alarm-panel-ad2usb/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paradox &lt;br /&gt;
| &lt;br /&gt;
*Digiplex DGP-848 &lt;br /&gt;
*EVO48 &lt;br /&gt;
*[http://www.paradox.com/Products/default.asp?CATID=7 EVO192]&lt;br /&gt;
&lt;br /&gt;
| [http://www.paradox.com/Products/default.asp?CATID=7&amp;amp;SUBCATID=75&amp;amp;PRD=234 PRT3 Integration Module] &lt;br /&gt;
| [http://code.mios.com/trac/mios_paradox-alarm/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Visonic &lt;br /&gt;
| &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMax PowerMax] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPlus PowerMax+] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxComplete PowerMaxComplete] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPro PowerMaxPro]&lt;br /&gt;
&lt;br /&gt;
| RS-232 Interface Module &lt;br /&gt;
| [http://code.mios.com/trac/mios_visonic-powermax/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Misc  ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Door Bell&amp;lt;br&amp;gt; &lt;br /&gt;
| UTSE03A&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| When added to a third party Z-Wave controller there is no way to associate the push button with the door bell itself, so the push button has no use. In order to make it work, the door bell needs to be associated with a regular Z-Wave switch either by creating associations or by creating a scene.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Release_Notes</id>
		<title>Release Notes</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Release_Notes"/>
				<updated>2013-05-10T18:44:20Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== UI5: 1.5.622 - Public Release (upgradable from our [http://cpui5.mios.com/firmware portal])  ==&lt;br /&gt;
&lt;br /&gt;
Version 1.5.622 contains the same fixes and improvements as 1.5.621 &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.621 (and 1.5.622) - March 1, 2013&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt; - private beta&amp;lt;/span&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issue in build 1.5.621 (and 1.5.622): &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; LINUX_SCRIPTS&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ============================================================================&amp;lt;br&amp;gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#Remove access point when resetting to factory defaults.&amp;lt;br&amp;gt; &lt;br /&gt;
#Added device file to device ID 2069.&amp;lt;br&amp;gt; &lt;br /&gt;
#add more logging for networking part&amp;lt;br&amp;gt; &lt;br /&gt;
#ignore empty responses&amp;lt;br&amp;gt; &lt;br /&gt;
#WIP - modify timeouts&amp;lt;br&amp;gt; &lt;br /&gt;
#Don't terminate the cmh_Reset.sh script if removing access point fails.&amp;lt;br&amp;gt; &lt;br /&gt;
#Updated the log messages for cmh_Reset.sh.&amp;lt;br&amp;gt; &lt;br /&gt;
#add support for in and ru zwave locale&amp;lt;br&amp;gt; &lt;br /&gt;
#change in cmh-ra-daemon.sh timeout values for better connection; add string at tunnel exit to notify both parties&amp;lt;br&amp;gt; &lt;br /&gt;
#Updated Z-Wave.Me temperature sensor info.&amp;lt;br&amp;gt; &lt;br /&gt;
#add zwave in/ru firmware&amp;lt;br&amp;gt; &lt;br /&gt;
#Added Fibaro FGS221 in zwave_products_sys.xml.&amp;lt;br&amp;gt; &lt;br /&gt;
#Added Fibaro FGK101 in zwave_products_sys.xml.&amp;lt;br&amp;gt; &lt;br /&gt;
#update zwave firmware in case locale has changed&amp;lt;br&amp;gt; &lt;br /&gt;
#set in/ru firmware version default to 3.52&amp;lt;br&amp;gt; &lt;br /&gt;
#run zw fw upgrade in standalone mode; add more logs for zw fw upgrade&amp;lt;br&amp;gt; &lt;br /&gt;
#in case LuaUPnP has started before Updating the zw fw with new locale in provisioning, we should reload it&amp;lt;br&amp;gt; &lt;br /&gt;
#Default Z-Wave firmware version is now 3.20 instead of 2.78.&amp;lt;br&amp;gt; &lt;br /&gt;
#Set wakeup time and polling frequency to 1 hour for EZMotion 3-in-1 sensor.&amp;lt;br&amp;gt; &lt;br /&gt;
#Added Express Controls EZMotion+.&amp;lt;br&amp;gt; &lt;br /&gt;
#Updated the settings of the Aeon HEM. Added 103-Report 3,4h,1B00 and 113-Report 3 Interval,4d,30&amp;lt;br&amp;gt; &lt;br /&gt;
#Fixed bad port forwarding parameters when the IP contained the port.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; UI_LINUX_SCRIPTS&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#change ChangeLogURL from http to https in upgrade_step1.sh&amp;lt;br&amp;gt; &lt;br /&gt;
#change FirmwareImageUrl from http to https in cmh/upgrade_step2.sh&amp;lt;br&amp;gt; &lt;br /&gt;
#Added message when going from 'upgrade_step2.sh' to 'upgrade_step3.sh'.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; UPGRADE_SCRIPT&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ============================================================================&amp;lt;br&amp;gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#req OpenWRT base image 82 for Vera3 units&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; MIOS_SRC&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ============================================================================&amp;lt;br&amp;gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#upnp pnp devices keep the device file and device type from the pnp definition instead of getting them from the device. &lt;br /&gt;
#Defined a value (30 seconds) for ra_check2.php curl timeout in NetworkMonitor. &lt;br /&gt;
#Added logging for checking tunnels with ra_check2. &lt;br /&gt;
#Added Category_Num=6 tag so that files using this file will be shown as cameras. &lt;br /&gt;
#temporary code for Yale locks to debug missing schedules &lt;br /&gt;
#add software scheduling for locks &lt;br /&gt;
#Changed the icon name and added state_icons in 'D_SmokeSensor1.json'. &lt;br /&gt;
#Minor corrections in 'D_MotionSensor1.json' and 'D_PowerMeter1.json'. &lt;br /&gt;
#Added notification for low battery level to Power Meters. &lt;br /&gt;
#Fixed GetWatts returning wrong value when iPosition==3. &lt;br /&gt;
#Replaced &amp;quot;&amp;quot; with {} for suffix and prefix. &lt;br /&gt;
#Restart tunnels if we've been on the backup FWD server for more than 1 hour. &lt;br /&gt;
#Added missing NetworkTest. &lt;br /&gt;
#Added min time interval between server tests in NetworkMonitor. &lt;br /&gt;
#fix crash when upgrade fails &lt;br /&gt;
#UpdateZwaveFirmware.sh now sets the default Z-Wave version to 3.20, so if we want version 2.78, tell it explicitly. &lt;br /&gt;
#fix vision door lock scheduling &lt;br /&gt;
#always use software for vision locks also &lt;br /&gt;
#fix Luup crash on schedule report &lt;br /&gt;
#fix removal of software schedule &lt;br /&gt;
#process lock schedules after removing a schedule &lt;br /&gt;
#Fixed language token names starting with a number. &lt;br /&gt;
#Reset to factory defaults now removes all associated usernames from the unit .&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; &amp;amp;nbsp; &amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; MIOS_UI&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ============================================================================&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#Restored Zwave hack option for all platforms. &lt;br /&gt;
#Switched tickets history to be retrieved using ts server instead of hard-coded ts1.mios.com and used https instead of http. &lt;br /&gt;
#Updated timezone.json &lt;br /&gt;
#Fixed pin codes per new syntax.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.532 - November 20, 2012&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt; - private beta&amp;lt;/span&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issue in build 1.5.532: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; LINUX_SCRIPTS &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; ============================================================================ &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added the Commands variable to Danfoss and Horstmann radiators. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Created device ID for the Horstmann relay. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Removed duplicate D-Link Camera entry. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added a Cooper device. &lt;br /&gt;
#&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space:pre&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;&amp;amp;nbsp; Set the DateTime to 01/01/1970 00:00 for Vera 2 and Vera Lite. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; prevent dnsmasq reponse to broadcast DHCPINFORM messages on wan interface &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; fix UNIT_MODELS for VeraLite string &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; prevent dnsmasq response to DHCPINFORM broadcast messages on wan network &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; move dnsmasq DHCPINFORM fix from platform_init to fresh install in order to apply the fix at first boot after upgrade &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; set return code for fix_dnsmasq_DHCPINFORM function in order to be able to restart dnsmasq or not &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; add zwave australia &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added many new devices (Everspring, 2-Gig, Merten, Fibaro). &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; remove variable 1 from conf file so aeon sensors will work &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; save time at shutdown only if it was synced from the internet previously; sync time in UTC; fix set time to EPOCH in current timezone &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; do not restore time from file if unit just synced time form internet; set epoch as 1 Jan 2000 &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; add logging in logread; add service led as error for Vera3 &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added 2-Gig CT-100 thermostat. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; do not apply new leasetime value and restart dnsmasq if value is same as old one &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Removed the 'prodId' for the 2-Gig CT-100 thermostat. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added Zwave.Me iTemp temperature sensor. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Remove duplicate 2-Gig CT-100 entry. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; add option for writting japan zw firmware &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; add japan zw fw &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; fix wan state for VeraLite when network is restarting &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; fix call provision_vera from factory test &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; set by default the option to store logs on server&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; UI_LINUX_SCRIPTS&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; ============================================================================ &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; show only the TS server name, do not include the domain also &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Replaced VEra with unit. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Don't display full server names.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; MIOS_SRC &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; ============================================================================ &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added control codes for the heater. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added Siren files. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added 2 more preset buttons. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added icon for the 51%-75% load interval for the dimmable light. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Updated the icon names for the Siren device. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Updated the door sensor icons. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; use LOGS_PATH instead of hardcoded logs path &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; fix day of week codes displayed wrong with yale locks &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; log timezone information on startup &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; joseph's issue with pin code validation date range getting lost &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; add immediate save after critical data changes &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; hide notification_only scenes from sdata &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Fixed Windows Covering Up command not being reversed when ReverseOnOff is &amp;quot;1&amp;quot;. Also fixed that for the other command classes. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; always log what's going on with lock schedules &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; try to reduce nonce collissions with assa locks by adding delays since the locks send alarms when codes are sent &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; add support for schlage locks in australia &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; add support for multi level sensor v5 (aeon and express controls) &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; up/down was reversed for Window coverings. Fix this, but NOTE: This may reverse the prior behavior. You can set the variable 'reverseon/off' for this device to change the behavior. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; add support for polycontrol alarms &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; add custom poll update for lock/unlock &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Restart tunnels only if ra_check2.php returns 'ERROR'. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; purge codes on a newly added lock &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; move configure node &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; add support for japan module&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; MIOS_UI &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; ============================================================================ &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Changed label from 'House/Node' to 'HouseID/Node'. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Increased the size of the input fields in the 'Advanced' tab. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added code to disable functions which are not added into top menu. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Fixed get_backup for remote access. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Fixed storage backups urls. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Fixed condition for menu item check. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Fixed measuring label from Energy. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Add the &amp;quot;users&amp;quot; tag with an empty value when creating a trigger, otherwise no alerts will be sent to the server. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Disabled command on disabled conditional buttons. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added random string to get backups url to avoid caching issue on ie9. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added icons for siren. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Changed the icon for the tripped door sensor. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Renamed door_sensor.png to match the rest of the icon names. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Renamed door_sensor_0.png to match the rest of the icon names. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Renamed door_sensor_100.png to match the rest of the icon names. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Fixed cameras with restricted controls. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added lang include &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Limit &amp;quot;Description&amp;quot; field from Apps/Develop Apps/Create device to 24 characters &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Fixed the wrong serial port path variable. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Added support for adding code to account. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; added gifs instead of swf animations for vera 3 &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; Re-added Hack to convert 2.78 to 3.20 with link to docs5 instead of wiki.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.408 - July 4, 2012 Release  ==&lt;br /&gt;
&lt;br /&gt;
'''Note: Due to Assa Abloy changing the manufacturer ID, setting schedules for Yale locks is not possible in this version of firmware, but it will be fixed in a newer version. To be able to use this feature with Yale locks you should contact tech support.''' &lt;br /&gt;
&lt;br /&gt;
Resolved issues in firmware 1.5.408: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;MIOS_SRC &lt;br /&gt;
&lt;br /&gt;
#Fix OR defined condition &lt;br /&gt;
#Added tripped icons array for door sensor. &lt;br /&gt;
#Revert 5902 to get scene/button events working again.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; MIOS_UI &lt;br /&gt;
&lt;br /&gt;
#Fixed Ergy settings issue. &lt;br /&gt;
#Added tripped icons for door sensor &lt;br /&gt;
#Added alert when email is changed. &lt;br /&gt;
#Added unlock option for multiple alerts selected.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.401 - June 18, 2012 -&amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;private beta&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues in firmware 1.5.401: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;LINUX_SCRIPTS from rev&amp;amp;nbsp;: 5718 to rev&amp;amp;nbsp;: 5987 &lt;br /&gt;
&lt;br /&gt;
1. Fix ts1 http call to dealocate port when disabling tech support &lt;br /&gt;
&lt;br /&gt;
2. Fix transition from Net&amp;amp;amp;Wifi manually configure with static IP to Automatically configure for Vera2/Vera3&amp;amp;amp;Lite &lt;br /&gt;
&lt;br /&gt;
3. Add required lighttpd-mo-proxy/cgi/auth to update_package script &lt;br /&gt;
&lt;br /&gt;
4. Improve UpdatePackage script to update the packages that depends on the update package also and make it install the package if this is not allready installed &lt;br /&gt;
&lt;br /&gt;
5. Add fortrezz mimo support &lt;br /&gt;
&lt;br /&gt;
6. Add support for Vitrium switches &lt;br /&gt;
&lt;br /&gt;
7. Add scene assistance for GE remotes &lt;br /&gt;
&lt;br /&gt;
8. Add support for the everspring es861 and hac01 &lt;br /&gt;
&lt;br /&gt;
9. Fixed Mantises [http://bugs.micasaverde.com/view.php?id=1980 1980] and [http://bugs.micasaverde.com/view.php?id=1981 1981]: 'Modify /usr/bin/cmh_PnP script to scan for image.jpg instead of IMAGE.JPG when looking for D-Link cameras' &lt;br /&gt;
&lt;br /&gt;
10. Dont poll remotec &lt;br /&gt;
&lt;br /&gt;
11. Do not store tech ra files if backup is not intended for firmware upgrade &lt;br /&gt;
&lt;br /&gt;
12. Add support for potentiometer &lt;br /&gt;
&lt;br /&gt;
13. Split factory test in several steps so that if one fails it will start from the last completed &lt;br /&gt;
&lt;br /&gt;
14. Prevent veralite from giving dhcp reponses to win7 clients by not sending the dns server &lt;br /&gt;
&lt;br /&gt;
15. Create the VistaCam device with only the full screen button enabled. &lt;br /&gt;
&lt;br /&gt;
16. Fixed the snapshot URL for VistaCam. &lt;br /&gt;
&lt;br /&gt;
17. Replace ftpput with curl and set timeouts &lt;br /&gt;
&lt;br /&gt;
18. Add cms system and error message reporting functions &lt;br /&gt;
&lt;br /&gt;
19. Report firmware upgrade as system alerts &lt;br /&gt;
&lt;br /&gt;
20. If evt srvs are not defined in server.conf field try also to retireve them from nvram in report_message function &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
UI_LINUX_SCRIPTS from rev&amp;amp;nbsp;: 9977 to rev&amp;amp;nbsp;: 10621 &lt;br /&gt;
&lt;br /&gt;
1. Mention also WAN led to be solid &lt;br /&gt;
&lt;br /&gt;
2. Echo OK or ERROR if the operation is successfully done or not &lt;br /&gt;
&lt;br /&gt;
3. Changed the server we get the external IP from. &lt;br /&gt;
&lt;br /&gt;
4. Prevent setting empty spaces in network config; prevent setting the same IP on WAN&amp;amp;amp;LAN &lt;br /&gt;
&lt;br /&gt;
5. Prevent user from restoring old tech ra files &lt;br /&gt;
&lt;br /&gt;
6. Output error codes when where unable to connect to server/url &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
MIOS_SRC from rev&amp;amp;nbsp;: 5718 to rev&amp;amp;nbsp;: 5987 &lt;br /&gt;
&lt;br /&gt;
1. Add i/r devices without a usb uirt &lt;br /&gt;
&lt;br /&gt;
2. Fix compatibility with trane energy mode &lt;br /&gt;
&lt;br /&gt;
3. Added icon text flag for windows covering. &lt;br /&gt;
&lt;br /&gt;
4. Don't log all energy data at once. stagger by up to 45 minutes random amounts &lt;br /&gt;
&lt;br /&gt;
5. Add luup.sunset / luup.sunrise to the code &lt;br /&gt;
&lt;br /&gt;
6. Mantis [http://bugs.micasaverde.com/view.php?id=2018 2018], workaround for everspring st814 sending the sensor reports to the wrong endpoint &lt;br /&gt;
&lt;br /&gt;
7. Mantis [http://bugs.micasaverde.com/view.php?id=2113 2113] - show device description when archiving video &lt;br /&gt;
&lt;br /&gt;
8. Mantis: [http://bugs.micasaverde.com/view.php?id=1011 1011] - remove invalid characters from the a/v device service files &lt;br /&gt;
&lt;br /&gt;
9. Changed the device type from 'urn:schemas-micasaverde-org:device:Relay:1' to 'urn:schemas-micasaverde-com:device:Relay:1' to match the device type in the 'constants.h' and 'D_Relay1.json'. &lt;br /&gt;
&lt;br /&gt;
10. Propagated icon change to door sensor &lt;br /&gt;
&lt;br /&gt;
11. Fix [http://bugs.micasaverde.com/view.php?id=2119 2119] where Schlage lock isn't updating the lock/unlock after an operation. Do a poll 10 seconds after the lock moves &lt;br /&gt;
&lt;br /&gt;
12. Fix so alerts go to backup cms server every other attempt &lt;br /&gt;
&lt;br /&gt;
13. Added default value for the 'Armed' variable. &lt;br /&gt;
&lt;br /&gt;
14. Fixed Ergy menu. &lt;br /&gt;
&lt;br /&gt;
15. Added &amp;amp;lt;friendlyName&amp;amp;gt; to the camera. &lt;br /&gt;
&lt;br /&gt;
16. fix issue with not syncing device list to backup cms &lt;br /&gt;
&lt;br /&gt;
17. Added Json file for the ComboDevice in order to add the 'Notifications' tab. &lt;br /&gt;
&lt;br /&gt;
18. Fixed Mantis [http://bugs.micasaverde.com/view.php?id=741 #741]: remove json from D_ xml files with UI3 (removed 'sceneList' and 'eventList' from D_ files) &lt;br /&gt;
&lt;br /&gt;
19. Fix rcs energy mode &lt;br /&gt;
&lt;br /&gt;
20. Fix crash when a non-numeric pin is programmed with a future start date &lt;br /&gt;
&lt;br /&gt;
21. Add support for setting zwave configuration variables for multi-channel endpoints &lt;br /&gt;
&lt;br /&gt;
22. Fix crash with remotec i/r blaster config &lt;br /&gt;
&lt;br /&gt;
23. Add ability to mark zwave nodes as hidden in the zwave products xml file &lt;br /&gt;
&lt;br /&gt;
24. Display name of manufacturer on newly included devices &lt;br /&gt;
&lt;br /&gt;
25. Fixed Mantis [http://bugs.micasaverde.com/view.php?id=1493 #1493]: Event for door locks door open/closed &lt;br /&gt;
&lt;br /&gt;
26. fix rooms reset when adding devices on batteries &lt;br /&gt;
&lt;br /&gt;
27. Allow FF to get through so it works for Evolve window control &lt;br /&gt;
&lt;br /&gt;
28. Fix messed up sections/rooms after adding device on batteries &lt;br /&gt;
&lt;br /&gt;
29. Dont flood the SQ Puck with http requests for pnp &lt;br /&gt;
&lt;br /&gt;
30. Get the reset working properly on Vera Lite &lt;br /&gt;
&lt;br /&gt;
31. Bug fix: when sending commands to battery operated devices, the ui state variables weren't getting updated after the wakeup occurred &lt;br /&gt;
&lt;br /&gt;
32. Don't reconfigure a device if we're only changing pinning &lt;br /&gt;
&lt;br /&gt;
33. Add ability to log to alternate event server &lt;br /&gt;
&lt;br /&gt;
34. Extend finddevice to search by device number &lt;br /&gt;
&lt;br /&gt;
35. Send remotec commands to the endpoint, not the parent &lt;br /&gt;
&lt;br /&gt;
36. Allow users to turn off network device detection &lt;br /&gt;
&lt;br /&gt;
37. Mantis [http://bugs.micasaverde.com/view.php?id=2282 2282&amp;amp;nbsp;]: setsockopt(SO_KEEPALIVE) &lt;br /&gt;
&lt;br /&gt;
38. Mantis [http://bugs.micasaverde.com/view.php?id=562 562], only take a picture when the sensor is armed &lt;br /&gt;
&lt;br /&gt;
39. Add generic sensor &lt;br /&gt;
&lt;br /&gt;
40. Added 'Notification' tab and 'Battery level goes below' notification for the SceneController device. &lt;br /&gt;
&lt;br /&gt;
41. Fixed WindowCovering control and scene groups. &lt;br /&gt;
&lt;br /&gt;
42. Support for conditional controls - devices tags. &lt;br /&gt;
&lt;br /&gt;
43. Fix bug learning custom ir codes &lt;br /&gt;
&lt;br /&gt;
44. Fix changing ir codesets on the fly &lt;br /&gt;
&lt;br /&gt;
45. Added control codes to camera &lt;br /&gt;
&lt;br /&gt;
46. Fix intermatic energy mode &lt;br /&gt;
&lt;br /&gt;
47. Fix problem with duplicate overview_tabs in user_data &lt;br /&gt;
&lt;br /&gt;
48. Fix misreporting of scene id vs. button id &lt;br /&gt;
&lt;br /&gt;
49. Fix for kwikset locks not handling scheduling &lt;br /&gt;
&lt;br /&gt;
50. My contact info reworked &lt;br /&gt;
&lt;br /&gt;
51. Mantis [http://bugs.micasaverde.com/view.php?id=2219 #2219] &lt;br /&gt;
&lt;br /&gt;
52. Also fixed tabs order in scenes (first tab is &amp;quot;all devices&amp;quot;). &lt;br /&gt;
&lt;br /&gt;
53. Added Energy Saving Mode support for Honeywell thermostats. &lt;br /&gt;
&lt;br /&gt;
54. Added the preset buttons and the 'Archive snapshot' button to the camera device's UI. &lt;br /&gt;
&lt;br /&gt;
55. Updated the camera device to handle its children. &lt;br /&gt;
&lt;br /&gt;
56. Moved the GoToPreset action to S_PanTiltZoom1.xml. &lt;br /&gt;
&lt;br /&gt;
57. Added 'CameraMotionDetection' service to the new camera device. &lt;br /&gt;
&lt;br /&gt;
58. Update_plugin downloads files &lt;br /&gt;
&lt;br /&gt;
59. Don't configure a device if the name or room changes &lt;br /&gt;
&lt;br /&gt;
60. Don't autoupdate plugins &lt;br /&gt;
&lt;br /&gt;
61. Multi-channel node association &lt;br /&gt;
&lt;br /&gt;
62. Relabeled event &amp;quot;Exact Ambient temperature is reached&amp;quot; as &amp;quot;Ambient temperature goes above or below&amp;quot; in D_HVAC_ZoneThermostat1.json:. &lt;br /&gt;
&lt;br /&gt;
63. Increased the timeout for downloading files to 20 seconds. &lt;br /&gt;
&lt;br /&gt;
64. Add reverse up/down for window &lt;br /&gt;
&lt;br /&gt;
65. Create file when there's no internet connection &lt;br /&gt;
&lt;br /&gt;
66. Set the source IP to 0xFF's when calling actions from timers. Was a random value &lt;br /&gt;
&lt;br /&gt;
67. Mantis [http://bugs.micasaverde.com/view.php?id=1209 #1209] &lt;br /&gt;
&lt;br /&gt;
68. Fixed initialization of the IP to all 255. &lt;br /&gt;
&lt;br /&gt;
69. Fixed 404 problems from UI by restricting the icons which can be displayed. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
MIOS_UI from rev&amp;amp;nbsp;: 9977 to rev&amp;amp;nbsp;: 10621 &lt;br /&gt;
&lt;br /&gt;
1. Changed server for historical energy from evt to download server. &lt;br /&gt;
&lt;br /&gt;
2. Added program mode for IR devices &lt;br /&gt;
&lt;br /&gt;
3. Fixed date and login-register text overlapping &lt;br /&gt;
&lt;br /&gt;
4. Triggered save button when removing a trigger directly from scenes / triggers. &lt;br /&gt;
&lt;br /&gt;
5. Mantis [http://bugs.micasaverde.com/view.php?id=2151 #2151] &lt;br /&gt;
&lt;br /&gt;
6. Mantis [http://bugs.micasaverde.com/view.php?id=2233 #2233] &lt;br /&gt;
&lt;br /&gt;
7. Fixed door lock icons with clear status for locked/unlocked. &lt;br /&gt;
&lt;br /&gt;
8. Mantis [http://bugs.micasaverde.com/view.php?id=2253 #2253] &lt;br /&gt;
&lt;br /&gt;
9. Fixed ergy function. &lt;br /&gt;
&lt;br /&gt;
10. Removed hard-coding for icon text (this is defined in device json). &lt;br /&gt;
&lt;br /&gt;
11. Added anti-caching to lu_reload. &lt;br /&gt;
&lt;br /&gt;
12. Mantis [http://bugs.micasaverde.com/view.php?id=2265 #2265] &lt;br /&gt;
&lt;br /&gt;
13. Mantis [http://bugs.micasaverde.com/view.php?id=2146 #2146] &lt;br /&gt;
&lt;br /&gt;
14. Mantis [http://bugs.micasaverde.com/view.php?id=2145 #2145] &lt;br /&gt;
&lt;br /&gt;
15. Fixed current codeset (read state variable from lu_status instead of user_data) &lt;br /&gt;
&lt;br /&gt;
16. Mantis [http://bugs.micasaverde.com/view.php?id=2289 #2289] &lt;br /&gt;
&lt;br /&gt;
17. Mantis [http://bugs.micasaverde.com/view.php?id=2261 #2261] &lt;br /&gt;
&lt;br /&gt;
18. Fixed&amp;amp;nbsp;[http://bugs.micasaverde.com/view.php?id=2267 2267] &lt;br /&gt;
&lt;br /&gt;
19. Fixed&amp;amp;nbsp;[http://bugs.micasaverde.com/view.php?id=2091 2091] &lt;br /&gt;
&lt;br /&gt;
20. Temporary fix for the DST leap year issue. &lt;br /&gt;
&lt;br /&gt;
21. Fixed show_busy for remote access. &lt;br /&gt;
&lt;br /&gt;
22. Added rating / option to close ticket. &lt;br /&gt;
&lt;br /&gt;
23. fixed&amp;amp;nbsp;[http://bugs.micasaverde.com/view.php?id=930 930] &lt;br /&gt;
&lt;br /&gt;
24. Mantis [http://bugs.micasaverde.com/view.php?id=2094 #2094] &lt;br /&gt;
&lt;br /&gt;
25. Mantis [http://bugs.micasaverde.com/view.php?id=2095 #2095] &lt;br /&gt;
&lt;br /&gt;
26. Mantis [http://bugs.micasaverde.com/view.php?id=2270 #2270] &lt;br /&gt;
&lt;br /&gt;
27. Mantis [http://bugs.micasaverde.com/view.php?id=2029 #2029] &lt;br /&gt;
&lt;br /&gt;
28. Mantis [http://bugs.micasaverde.com/view.php?id=2258 #2258] &lt;br /&gt;
&lt;br /&gt;
29. Mantis [http://bugs.micasaverde.com/view.php?id=2126 #2126] &lt;br /&gt;
&lt;br /&gt;
30. Mantis [http://bugs.micasaverde.com/view.php?id=2293 #2293] &lt;br /&gt;
&lt;br /&gt;
31.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed edit trigger to change comparison &lt;br /&gt;
&lt;br /&gt;
32.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed Mantis [http://bugs.micasaverde.com/view.php?id=1945 #1945]: Bad error message text display &lt;br /&gt;
&lt;br /&gt;
33.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2291 #2291] &lt;br /&gt;
&lt;br /&gt;
34.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2198 #2198] &lt;br /&gt;
&lt;br /&gt;
35.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2294 #2294] &lt;br /&gt;
&lt;br /&gt;
36.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2181 #2181] &lt;br /&gt;
&lt;br /&gt;
37.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2234 #2234] &lt;br /&gt;
&lt;br /&gt;
38.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed cp server for logout redirect. &lt;br /&gt;
&lt;br /&gt;
39.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed the snapshot URL for the Foscam camera. &lt;br /&gt;
&lt;br /&gt;
40.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added the missing currencies, yuan and pound, to the list. &lt;br /&gt;
&lt;br /&gt;
41.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Removed 'Fire warning event when battery level goes below&amp;amp;nbsp;%'. &lt;br /&gt;
&lt;br /&gt;
42.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed portal timestamp initialization. &lt;br /&gt;
&lt;br /&gt;
43.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed cms alerts url. &lt;br /&gt;
&lt;br /&gt;
44.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed Thursday checkbox not checkable when creating a 'Day the week based' schedule. &lt;br /&gt;
&lt;br /&gt;
45.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Authentification changed to keep user logged. &lt;br /&gt;
&lt;br /&gt;
46.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed pulldown for events when devices are in room. &lt;br /&gt;
&lt;br /&gt;
47.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed icons for devices with no record in lu_status. &lt;br /&gt;
&lt;br /&gt;
48.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2286 2286] &lt;br /&gt;
&lt;br /&gt;
49.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Create the cameras with the correct name. &lt;br /&gt;
&lt;br /&gt;
50.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed heater temperature display. &lt;br /&gt;
&lt;br /&gt;
51.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Updated the camera motion detection service ID. &lt;br /&gt;
&lt;br /&gt;
52.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=562 #562] &lt;br /&gt;
&lt;br /&gt;
53.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2124 #2124] (display auto-upgrade status). &lt;br /&gt;
&lt;br /&gt;
54.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed devices sort issue which made icons to be messed up. &lt;br /&gt;
&lt;br /&gt;
55.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Changed request to sta server to use proxy.sh redundancy. &lt;br /&gt;
&lt;br /&gt;
56.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2368 #2368] &lt;br /&gt;
&lt;br /&gt;
57.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed js buttons for dashboard. &lt;br /&gt;
&lt;br /&gt;
58.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Corrected net_pnp in setup/Net &amp;amp;amp; Wifi. &lt;br /&gt;
&lt;br /&gt;
59.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added support for conditional controls. &lt;br /&gt;
&lt;br /&gt;
60.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added disabled controls images &lt;br /&gt;
&lt;br /&gt;
61.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Propagated disabled stuff changes &lt;br /&gt;
&lt;br /&gt;
62.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2124 #2124] - added local autoupdate for plugins. &lt;br /&gt;
&lt;br /&gt;
63.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Updated format for saved plugin settings. &lt;br /&gt;
&lt;br /&gt;
64.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2351 #2351] - added support to delete/lock/read multiple alerts. &lt;br /&gt;
&lt;br /&gt;
65.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=52395 #2395] &lt;br /&gt;
&lt;br /&gt;
66.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2396 #2396] &lt;br /&gt;
&lt;br /&gt;
67.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2397 #2397] &lt;br /&gt;
&lt;br /&gt;
68.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2398 #2398] &lt;br /&gt;
&lt;br /&gt;
69.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Changed text from 'Restore dongle firmware' to 'Restore Z-Wave network'. &lt;br /&gt;
&lt;br /&gt;
70.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added support for sending validation email upon registration. &lt;br /&gt;
&lt;br /&gt;
71.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Reworked my contact info (split in 4 separate tabs) &lt;br /&gt;
&lt;br /&gt;
72.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2355 #2355] &lt;br /&gt;
&lt;br /&gt;
73.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=1657 #1657] &lt;br /&gt;
&lt;br /&gt;
74.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2237 #2237]&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
75.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2309 #2309]&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
76.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2255 #2255] &lt;br /&gt;
&lt;br /&gt;
77.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed tech support large text issue. &lt;br /&gt;
&lt;br /&gt;
78.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;My contact info fixes. &lt;br /&gt;
&lt;br /&gt;
79.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added trim for proxy.sh error codes. &lt;br /&gt;
&lt;br /&gt;
80.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Reworked legend for alerts. &lt;br /&gt;
&lt;br /&gt;
81.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed phone provider warning. &lt;br /&gt;
&lt;br /&gt;
82.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed update name for user when contain spaces. &lt;br /&gt;
&lt;br /&gt;
83.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed scenes management for buttons without parameters. &lt;br /&gt;
&lt;br /&gt;
84.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Disabled auto-update for plugins when it's disabled from server. &lt;br /&gt;
&lt;br /&gt;
85.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added validation alert when phone number is changed. &lt;br /&gt;
&lt;br /&gt;
86.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed icons for alert types 7 to 10 &lt;br /&gt;
&lt;br /&gt;
87.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Removed register options from nonnatech restricted build. &lt;br /&gt;
&lt;br /&gt;
88.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Set wizard to use camera device_type/device file instead of predefined variables.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
89.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added DEVICETYPE_CAMERA2, and added device type for the cameras.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
90.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Ergy plugin install issue. &lt;br /&gt;
&lt;br /&gt;
91.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2404 #2404] &lt;br /&gt;
&lt;br /&gt;
92.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2391 #2391] &lt;br /&gt;
&lt;br /&gt;
93.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2294 #2294] &lt;br /&gt;
&lt;br /&gt;
94.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2212 #2212] &lt;br /&gt;
&lt;br /&gt;
95.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2353 #2353] &lt;br /&gt;
&lt;br /&gt;
96.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2370 #2370] &lt;br /&gt;
&lt;br /&gt;
97.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2403 #2403] &lt;br /&gt;
&lt;br /&gt;
98.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2034 #2034] &lt;br /&gt;
&lt;br /&gt;
99.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed overview icons. &lt;br /&gt;
&lt;br /&gt;
100. Mantis [http://bugs.micasaverde.com/view.php?id=2371 #2371] &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.346 March 19, 2012 - release  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues: &lt;br /&gt;
&lt;br /&gt;
Fixed critical issue regarding ERGY Settings. &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.344 (Vera3 &amp;amp;amp; VeraLite) &amp;amp;amp; 1.5.345 (Vera2) - March 16, 2012  ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 13px; line-height: 19px;&amp;quot;&amp;gt;Resolved issues in firmware 1.5.343:&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;line-height: 19px;&amp;quot;&amp;gt;Fixed the offline access issue when a user could not send a tech support request, upgrade the firmware or control the network settings when the UI is in offline mode.&amp;lt;/span&amp;gt;&amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.343 - March 13, 2012 - &amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;private beta&amp;lt;/span&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; Resolved issues in firmware 1.5.343: &lt;br /&gt;
&lt;br /&gt;
LINUX_SCRIPTS&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add window covering per christian 27-feb email&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Report system errors using external script directly to the alert server&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Do not turn off the zwave led when starting NetworkMonitor on VeraLite, since NM is no longer controlling the zwave led on it.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add support for remotec&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
UI_LINUX_SCRIPTS&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fix script to escape &amp;quot; received in POST parameters&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Try to prevent bogus message when /tmp drive is full&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Modify upgrade script to stop LuaUPnP before downlaoding the firmware image and to don't delete logs from usb stick&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Replace inside cgi script call with /usr/bin/ script&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Increase backup upload limit to 4Mb&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
UPGRADE_SCRIPT&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Upgrade base image to ver 81 which has the patch for df when /tmp is full&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
MIOS_SRC&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add delay for Merten per Carsten&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fix a crash on startup when syncing an alert that has been deleted&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added 'LastTrip' in 'S_SecuritySensor1.xml' to be available in lu_sdata. (Mantis [http://bugs.micasaverde.com/view.php?id=2188 2188])&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added 'BatteryLevel' in 'S_HaDevice1.xml' to be available in lu_sdata. (Mantis [http://bugs.micasaverde.com/view.php?id=2188 2188])&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fix that mac address wasn't always capitalized&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add support for remotec ir blaster&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Moved all mcv energy stuff in one tab.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add i/r devices without a usb uirt&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
MIOS_UI&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Set date from backend.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added preview info to thermostat scheduler.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fix for alerts to set timestamp according to gmt_offset properly.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Moved MCV energy stuff in one tab. Fixed Energy menu.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Removed configure buttons for non-Zwave devices.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Re-added local authentication. Mantis [http://bugs.micasaverde.com/view.php?id=2243 2243]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Allowed tech support form even with unit disconnected.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed [http://bugs.micasaverde.com/view.php?id=2246 2246]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added loginAlert. Added extra info to login alert.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added support for IR devices. Added toggle codesets for IR remote control. Fix some IR related bugs.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added alert for login/re-authenticated.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added Capitalized remote tabs name&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed delete camera for network cameras.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.322 - March 02, 2012  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues in 1.5.322 version: &lt;br /&gt;
&lt;br /&gt;
LINUX_SCRIPTS &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;check if the user disabled the wifi&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;return wifi state&amp;amp;nbsp;: enabled/disabled&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;remove debug from nfd_Restart.sh call&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space:pre&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;hide wifi errors for VeraLite which doesn't have wifi&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space:pre&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;do not call Report_AP anymore from backup-restore-nc since we don't have the sta servers&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space:pre&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;wait max 20 seconds after network restarts to get an ip&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space:pre&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;fix report upgrade done url composion&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
UI_LINUX_SCRIPTS &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;commit uci wifi changes&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed text variable for upgrade success.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Moved js into external file.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
MIOS_SRC &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2194 2194] - [Overview - click on Events opens the My alerts tab but with content from My contact info] &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;add category/subcategory to D_ files &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Moved overview to second position.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;test add i/r device&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;ir testing&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;fix ir codesets on upgrade&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;fix configuration with getting correct setpoint type&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;ct30 fixup&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;add support for negative temperatures&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
MIOS_UI&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2214 2214]&amp;amp;nbsp;- [Overview - Incorrect date (31.12.1969) for the triggers last run]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2208 2208]&amp;amp;nbsp;- [Overview - Undefined for Dimmable status when device is not responding]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2212 2212] - [Overview - No feedback after sending toggle command&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2218 2218]&amp;amp;nbsp;- [Overview - Locks are not displayed in the Security container&amp;amp;nbsp;]&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space:pre&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2211 2211]&amp;amp;nbsp;- [Overview - No feedback for running scenes&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2182 2182]&amp;amp;nbsp;- [Pinned devices has the Overview information&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed sensors text status.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2180 2180]&amp;amp;nbsp;-&amp;amp;nbsp;[Overview - Customized settings are not saved after save&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2179 2179]&amp;amp;nbsp;- [Overview - Alerts should be user/password protected&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2213 2213]&amp;amp;nbsp;- [Overview - Missing header from Triggers&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed defaults for overview&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Reverted order to have dashboard first.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Moved tech support json into distinct json file, for&amp;amp;nbsp;makerelease_prepfiles &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Safari fix for opening scenes. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added compatibility mode for IE9 to prevent switching to IE7&amp;amp;nbsp;view.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Changed all logging function to log_message &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed polling loop for Chrome&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;remotes stuff&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;UI offline mode.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed add/remove device event for overview.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;finished IR remotes&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Reworked camera thumbnails for overview.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Anti-cache stuff.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed overview refresh for schedules/triggers.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Changed LU down interval to go offline to 10 min.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add IR device wizard added get_lang_string&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed max email count.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;add ir device wizard, new polling codes added&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added &amp;quot;is beta&amp;quot; note to ir stuff.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added A/V is work in progress note.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added js for upgrade script.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.305 - February 17, 2012 - &amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;private beta&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues in 1.5.305: &lt;br /&gt;
&lt;br /&gt;
LINUX_SCRIPTS&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp;Listen for dhcp requests comming from WAN in fresh install, SwitchMode and GatewayMode with no firewall. &lt;br /&gt;
#&amp;amp;nbsp;Add Horstman sensor &lt;br /&gt;
#&amp;amp;nbsp;add support for Horstman thermostats and LS control sensors &lt;br /&gt;
#&amp;amp;nbsp;wait max 30 seconds to connect to server and 60 seconds to get the response from it &lt;br /&gt;
#&amp;amp;nbsp;-fix restart through init for LuaUPnP and NetworkMonitor &lt;br /&gt;
#&amp;amp;nbsp;-make logs more clear for start/stop LuaUPnP and NM &lt;br /&gt;
#&amp;amp;nbsp;script for fixing HomeID if current one seems to be invalid. &lt;br /&gt;
#&amp;amp;nbsp;for UI4 before starting LuaUPnP check if the ZWave HomeId is valid &lt;br /&gt;
#&amp;amp;nbsp;add comfort window covering &lt;br /&gt;
#&amp;amp;nbsp;Run fixHomeId.sh for ui4 and ui5 &lt;br /&gt;
#&amp;amp;nbsp;improve the script to handle up to at least 30 concurent dhcp requests&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ============================================================================&amp;lt;br&amp;gt;UI_LINUX_SCRIPTS&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp;don't listen for dhcp requests on WAN only if firewall is ON &lt;br /&gt;
#&amp;amp;nbsp;fix allow receiving dhcp requests info on wan side &lt;br /&gt;
#&amp;amp;nbsp;Changes per new tech support wizard &lt;br /&gt;
#&amp;amp;nbsp;add restart option of RA tunnels &lt;br /&gt;
#&amp;amp;nbsp;add suport for en/dis-able wifi when in automatically configure &lt;br /&gt;
#&amp;amp;nbsp;write wifi state in /etc/cmh/fresh_install file&lt;br /&gt;
&lt;br /&gt;
============================================================================&amp;lt;br&amp;gt;UPGRADE_SCRIPT&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp;request OpenWRT base image ver 80 which includes dnsmasq patch to not skip duplicate ips since this is done in LuaUPnP&lt;br /&gt;
&lt;br /&gt;
============================================================================&amp;lt;br&amp;gt;MIOS_SRC&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp;poll battery operated nodes on wakeup so sensors get light/temperature/etc. values &lt;br /&gt;
#&amp;amp;nbsp;fix cycle/periodic on for thermostat fan mode &lt;br /&gt;
#&amp;amp;nbsp;intermediate tweak to energy omde &lt;br /&gt;
#&amp;amp;nbsp;Updated menus &lt;br /&gt;
#&amp;amp;nbsp;Added weekly scheduler. &lt;br /&gt;
#&amp;amp;nbsp;fix trailing character in checkpaidtunnels cmdline &lt;br /&gt;
#&amp;amp;nbsp;fix the hsm100 polling by removing the delay in between commands so it doesn't go to sleep again &lt;br /&gt;
#&amp;amp;nbsp;fix problem where devices weren't being reconfigured after changing variables &lt;br /&gt;
#&amp;amp;nbsp;Add LS Controls and Wintop as manufacturers &lt;br /&gt;
#&amp;amp;nbsp;fix the up/down/stop on window covering &lt;br /&gt;
#&amp;amp;nbsp;patrice's window covering &lt;br /&gt;
#&amp;amp;nbsp;add support for window coverings using switch multi level version 3 &lt;br /&gt;
#&amp;amp;nbsp;add comfort window covering &lt;br /&gt;
#&amp;amp;nbsp;add next_run to timers &lt;br /&gt;
#&amp;amp;nbsp;change next_run and last_run to timestamps so they can be localized &lt;br /&gt;
#&amp;amp;nbsp;Added Overview tab. &lt;br /&gt;
#&amp;amp;nbsp;window coverings using wrong devicetype &lt;br /&gt;
#&amp;amp;nbsp;fix upgrade window coverings &lt;br /&gt;
#&amp;amp;nbsp;add device category for alarm panels &lt;br /&gt;
#&amp;amp;nbsp;get energy savings and normal mode working on the thermostats &lt;br /&gt;
#&amp;amp;nbsp;mantis 2088 &lt;br /&gt;
#&amp;amp;nbsp;allow for manual override of polling battery devices &lt;br /&gt;
#&amp;amp;nbsp;mantis 2051 lights on when viewing cameras &lt;br /&gt;
#&amp;amp;nbsp;fix a crash when a usb uirt i/r blaster isn't present &lt;br /&gt;
#&amp;amp;nbsp;Removed old notifications from menu. &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2194&lt;br /&gt;
&lt;br /&gt;
============================================================================&amp;lt;br&amp;gt;MIOS_UI&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp;Password restriction to alphanumeric strings. &lt;br /&gt;
#&amp;amp;nbsp;Alert tooltip fix. &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2129 &lt;br /&gt;
#&amp;amp;nbsp;Tech support wizard. &lt;br /&gt;
#&amp;amp;nbsp;Tickets history with update &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2141 &lt;br /&gt;
#&amp;amp;nbsp;Tweaked tech info json to match RT requirements. &lt;br /&gt;
#&amp;amp;nbsp;+ Added workaround for displaying temperature on the dashboard &lt;br /&gt;
#&amp;amp;nbsp;for Horstmann HRT4-ZW heaters. &lt;br /&gt;
#&amp;amp;nbsp;Added validation mail/sms. &lt;br /&gt;
#&amp;amp;nbsp;Switched support schedule to json format. &lt;br /&gt;
#&amp;amp;nbsp;Tweaked update ticket &lt;br /&gt;
#&amp;amp;nbsp;Added thermostat scheduler. &lt;br /&gt;
#&amp;amp;nbsp;Fixed the selector for weekly scheduler &lt;br /&gt;
#&amp;amp;nbsp;Corrected increase/decrease adjustements. &lt;br /&gt;
#&amp;amp;nbsp;Propagated the changes from upnp. &lt;br /&gt;
#&amp;amp;nbsp;Tech support fixes. &lt;br /&gt;
#&amp;amp;nbsp;Added code validation &lt;br /&gt;
#&amp;amp;nbsp;Fixed post params for update_ticket &lt;br /&gt;
#&amp;amp;nbsp;Added lang_debug mode. &lt;br /&gt;
#&amp;amp;nbsp;Added default content to token value. &lt;br /&gt;
#&amp;amp;nbsp;Fixed AlertType for validate email/sms &lt;br /&gt;
#&amp;amp;nbsp;Added overview tab. &lt;br /&gt;
#&amp;amp;nbsp;Removed dummy file. &lt;br /&gt;
#&amp;amp;nbsp;Tech support tweaks &lt;br /&gt;
#&amp;amp;nbsp;Overview tweaks. &lt;br /&gt;
#&amp;amp;nbsp;Added &amp;amp;amp;lights=1 to request_image data request to force lights on. &lt;br /&gt;
#&amp;amp;nbsp;Added call to data_request?id=camlight &lt;br /&gt;
#&amp;amp;nbsp;Added alarm icons. &lt;br /&gt;
#&amp;amp;nbsp;Changed email notifications to Alert server format. &lt;br /&gt;
#&amp;amp;nbsp;Added more spacing. &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2194 &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2184 &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2179 &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2190 &lt;br /&gt;
#&amp;amp;nbsp;Overview thermostat tweaks. &lt;br /&gt;
#&amp;amp;nbsp;Moved thermostat text status to language stuff.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5&amp;amp;nbsp;: 1.5.286 - January 27, 2012 -&amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;private beta&amp;lt;/span&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues in 1.5.286:&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;&amp;amp;nbsp;LINUX_SCRIPTS from 1.5.276 - 1.5.286 &lt;br /&gt;
&lt;br /&gt;
1. Prevent empty values also by restoring the files from ro mtd&amp;lt;br&amp;gt; &amp;amp;nbsp;============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;UI_LINUX_SCRIPTS from&amp;amp;nbsp;1.5.276 - 1.5.286&amp;amp;nbsp;&amp;lt;br&amp;gt;1. Prevent empty values also by restoring the files from ro mtd for&amp;amp;nbsp;firmware version and platform&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; UPGRADE_SCRIPT from&amp;amp;nbsp;1.5.276 - 1.5.286 &lt;br /&gt;
&lt;br /&gt;
1. Request OpenWRT upgrade to version 78 which has latest nand,jffs2,overlayfs and mtd-tools&amp;lt;br&amp;gt;============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; MIOS_SRC from&amp;amp;nbsp;1.5.276 - 1.5.286&amp;amp;nbsp;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
1. &amp;amp;nbsp;Fixed _UNITS_NAME_PLURAL_ token. &lt;br /&gt;
&lt;br /&gt;
2. &amp;amp;nbsp;Port id's were too small&amp;lt;br&amp;gt;3. &amp;amp;nbsp;Fix a crash/reload loop that occurred by USB serial devices&amp;lt;br&amp;gt;4. &amp;amp;nbsp;Having ID's longer than a pre-defined buffer&amp;lt;br&amp;gt;5. &amp;amp;nbsp;Fix problem JOD reported where generic ip cameras were getting deleted on upgrade&amp;lt;br&amp;gt;6. &amp;amp;nbsp;Fix return to previous settings&amp;lt;br&amp;gt;7. Fix controlling an IR device in a scene&amp;lt;br&amp;gt;8. Poll battery operated nodes on wakeup so sensors get light/temperature/etc. values &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;============================================================================&amp;amp;nbsp;&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; MIOS_UI from&amp;amp;nbsp;1.5.276 - 1.5.286&amp;amp;nbsp;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
1. Fixed top menu on lower resolution.&amp;lt;br&amp;gt;2. Added server offset into alerts filters.&amp;lt;br&amp;gt;3. More friendly messages for adding user.&amp;lt;br&amp;gt;4. Fixed offline alerts server.&amp;lt;br&amp;gt;5. Moved sta server retrieval in a separate function.&amp;lt;br&amp;gt;6. Fixed timestamps for alerts.&amp;lt;br&amp;gt;7. Added message when session is disconnected.&amp;lt;br&amp;gt;8. Mantis [http://bugs.micasaverde.com/view.php?id=2067 #2067]&amp;amp;nbsp;[Remove duplicated Source trigger icon from Legend from My alerts page] &lt;br /&gt;
&lt;br /&gt;
9. Password restriction to alphanumeric strings. &lt;br /&gt;
&lt;br /&gt;
== UI5&amp;amp;nbsp;: 1.5.276 - January 20, 2012 - &amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;private beta&amp;lt;/span&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues in 1.5.276: &lt;br /&gt;
&lt;br /&gt;
#Remove 2 variables for the yale &lt;br /&gt;
#do not consider time successfully synced if year is not between 2012 and 2020 &lt;br /&gt;
#use a function (get_server) to get a certain server value from&amp;amp;nbsp;servers.conf file &lt;br /&gt;
#force a reboot in max 15 minutes if the previous scripts don't do it faster &lt;br /&gt;
#start force reboot in background to be sure we don't get stuck by reboot command and wait 1 minute before forcing a reboot at firmware upgrade. &lt;br /&gt;
#read the wan/lan ifname from /var/state first, in case the type&amp;amp;nbsp;or proto is not standard the interfaces name will be different than the one defined in the /etc/config/network &lt;br /&gt;
#for units with rtc&amp;amp;nbsp;: update RTC on success sync time and update system time at boot from it &lt;br /&gt;
#fix firewall/dhcp in client mode for Vera3&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp;allow only one network restart at a time &lt;br /&gt;
#store last field received in FORM_timezone in file /etc/TZ instead of 3rd &lt;br /&gt;
#prevent php 5.3.x to lighttpd bug by stripping dirs from&amp;amp;nbsp;FORM_file_name variable &lt;br /&gt;
#read language and language_id directly from files&amp;lt;br&amp;gt; &lt;br /&gt;
#use main server if servers.conf file is messed up&amp;lt;br&amp;gt; &lt;br /&gt;
#log each server which is not defined &lt;br /&gt;
#req OpenWRT ver 75 for Vera3 and Lite &lt;br /&gt;
#add kernel patches to improve/fix issues related to nand driver,jffs2 and overlayfs fs &lt;br /&gt;
#fix time in NetworkMonitor &lt;br /&gt;
#fix camera relay &lt;br /&gt;
#fix record scene &lt;br /&gt;
#&amp;amp;nbsp;fix multiple room &lt;br /&gt;
#add custom require function &lt;br /&gt;
#fixes to danfoss living connect &lt;br /&gt;
#mantis [http://bugs.micasaverde.com/view.php?id=1978 1978] [private] [Remnant of excluded device shown in scene], [http://bugs.micasaverde.com/view.php?id=1957 1957] [Triggers for deleted devices are not deleted] &lt;br /&gt;
#delete wrong plugin 5 and 188 &lt;br /&gt;
#strip independently bin and lib &lt;br /&gt;
#removed duplicate dir &lt;br /&gt;
#Fixed bug [http://bugs.micasaverde.com/view.php?id=1967 1967] [private] [Selected devices not shown when editing scene] &lt;br /&gt;
#Menu changes to have separate controls for help buttons. &lt;br /&gt;
#add support for SWITCH_MULTILEVEL_STOP_LEVEL_CHANGE &lt;br /&gt;
#mantis [http://bugs.micasaverde.com/view.php?id=2047 2047] [private] [Missing plugin file causes LuaUPnP to enter a restart loop] and [http://bugs.micasaverde.com/view.php?id=2079 2079] [private] [Installation fails for plugins with uncompressed files] &lt;br /&gt;
#fix creation of IR devices in UI5 &lt;br /&gt;
#mantis [http://bugs.micasaverde.com/view.php?id=2054 2054] [Inform user when the serial port assigned to a device no longer exists] &lt;br /&gt;
#Swapped two strings for polling settings description &lt;br /&gt;
#Added alerts legend &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2007 #2007] [Add an anti caching token to list_alerts] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2011 #2011] [private] [Add info text in the Serial Port configuration part to reload Luup] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2008 #2008] [useless message when failing to add a user] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2024 #2024] [Missing leading 0 from backup names] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2012 #2012] [clicking the 'clock' should be a shortcut to the setup, location] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1970 #1970] [Firebug error at click on Revert changes button] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1686 #1686] [private] [Unable to check/uncheck in IE checkboxes from some tabs] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1934 #1934] [Legend for My Alerts should be added] &lt;br /&gt;
#Fixed [http://bugs.micasaverde.com/view.php?id=2021 #2021] [fix lingering dongle text in UI5] &lt;br /&gt;
#Moved help urls outside tabs. &lt;br /&gt;
#added help button &lt;br /&gt;
#Archive fix for reseting page on filters change. &lt;br /&gt;
#Added note about auto-updating timezone.&amp;lt;br&amp;gt; &lt;br /&gt;
#Hided manually timezone set when there is internet. &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2045 #2045] [Message please wait is not closed when ERGY plugin finish installing] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2033 #2033] [Remove some text from Energy/Hystoric usage] &lt;br /&gt;
#&amp;amp;nbsp;Added offline mode for UI.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp;Added cameras reported as accessories. &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2025 #2025] [Gateway list is incorrectly opened] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2005 #2005] [private] [Login cookie on Internet Explorer is not deleted after logging out] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1953 #1953] [When uninstalling a plugin, do not display &amp;quot;My apps&amp;quot; page and &amp;quot;Plugin uninstalled&amp;quot; message if user left the page] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1889 #1889] [Multi-language issues] &lt;br /&gt;
#Added Alerts tooltip &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2075 #2075] [Heal network with /without stress test is not working] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2015 #2015] [SMS and Email Notification Test Button] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2004 #2004] [Unable to assign a device to a room in IE9] &lt;br /&gt;
#Fixed help urls. &lt;br /&gt;
#Fixed accessories to allow update only for owned devices. &lt;br /&gt;
#Mobile phones/av gear formatting. &lt;br /&gt;
#Fixed missing location box &lt;br /&gt;
#Added validation for set date fields&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5&amp;amp;nbsp;: 1.5.255 (Vera2) &amp;amp;amp; 1.5.254 (Vera3) - December 23, 2011  ==&lt;br /&gt;
&lt;br /&gt;
New features in UI5: &lt;br /&gt;
&lt;br /&gt;
1. Devices are organized and displayed in separate tabs by category: lights, sensors, cameras, etc. &lt;br /&gt;
&lt;br /&gt;
2. You can pin the most often used devices and scenes on the Dashboard for quick access. The devices and scenes that are not pinned won't be displayed on the Dashboard. &lt;br /&gt;
&lt;br /&gt;
3. The Add Device Wizard is now included in UI. &lt;br /&gt;
&lt;br /&gt;
4. You can view and manage all the existing triggers (events) and schedules (timers) on Vera without opening any scene. &lt;br /&gt;
&lt;br /&gt;
5. Creating scenes is easier and more intuitive with the new scene creator wizard. &lt;br /&gt;
&lt;br /&gt;
6. You can now see the scene commands in the Advanced scene editor. &lt;br /&gt;
&lt;br /&gt;
7. The MiOS Marketplace (now called MiOS Apps) functionality is now included in UI. You can: &lt;br /&gt;
&lt;br /&gt;
*View app information &lt;br /&gt;
*Install apps &lt;br /&gt;
*View and Add reviews&lt;br /&gt;
&lt;br /&gt;
8. The MiOS control panel (CP) functionality is now included in UI, but only if the user is authenticated. You can: &lt;br /&gt;
&lt;br /&gt;
*Connect to one of your other Veras &lt;br /&gt;
*Add new or existing users to your Vera &lt;br /&gt;
*Remove users from your Vera &lt;br /&gt;
*Change your MiOS account password &lt;br /&gt;
*View alerts &lt;br /&gt;
*View available backups &lt;br /&gt;
*Change unit settings, like the Vera name and the number of SMSes and e-mails per day &lt;br /&gt;
*View camera archives&lt;br /&gt;
&lt;br /&gt;
9. Energy monitoring using the ERGY plugin by EchoLabs, which is included in UI. &lt;br /&gt;
&lt;br /&gt;
10. Real-time camera video streaming and video recording. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; This documents the changes since the first public beta release of UI4, 1.1.1047 &lt;br /&gt;
&lt;br /&gt;
== UI4&amp;amp;nbsp;: 1.1.1338 - July 29, 2011 - RC  ==&lt;br /&gt;
&lt;br /&gt;
1. Use the Z-Wave double send (without ACK then with ACK) for lights only, not other devices, since its purpose was to eliminate the popcorn effect and creates unnecessary traffic otherwise. &lt;br /&gt;
&lt;br /&gt;
2. Add special handling for devices made by Fibar for 2 way feedback &lt;br /&gt;
&lt;br /&gt;
3. Fix NetworkMonitor so it will always reset the time if it doesn't get set at boot &lt;br /&gt;
&lt;br /&gt;
4. Fix a bug in a script in the prior beta that made it incompatible with Vera 1 &lt;br /&gt;
&lt;br /&gt;
5. Add the pulse variable to the sdata request for energy meters &lt;br /&gt;
&lt;br /&gt;
6. Fix a problem where changes saved got lost because luaupnp got a reload and the watchdog timer kicked in before it had finished flushing the files to disk. &lt;br /&gt;
&lt;br /&gt;
7. Add support for Schedule Entry version 3 command class and locks by Assa Abloy &lt;br /&gt;
&lt;br /&gt;
8. Tweak to the timing of the squashfs mounting to improve reliability &lt;br /&gt;
&lt;br /&gt;
== 1.1.1323 - July 13, 2011 - beta  ==&lt;br /&gt;
&lt;br /&gt;
1. Fix a problem where a configure job could get stuck and not finish due to a race condition between multiple jobs &lt;br /&gt;
&lt;br /&gt;
2. Fix problem where zwave frame collission resulted in failed job &lt;br /&gt;
&lt;br /&gt;
3. Reduce incidence of EEPROM corruption in Z-Wave 4.52 where it mistakenly thinks there is a suc and gives &amp;quot;Failed to go into learn mode&amp;quot; errors when adding nodes. &lt;br /&gt;
&lt;br /&gt;
4. Automatically correct situation #3 if the user has not already added devices. &lt;br /&gt;
&lt;br /&gt;
5. Synchronize deleted devices with the central server &lt;br /&gt;
&lt;br /&gt;
6. Add subcategory to identify types of security sensors &lt;br /&gt;
&lt;br /&gt;
7. Add circulate fan mode support (not in the UI yet, but coming in UI5) &lt;br /&gt;
&lt;br /&gt;
== 1.1.1298 - June 21, 2011 - beta  ==&lt;br /&gt;
&lt;br /&gt;
The primary reason for this release is that there was a bug in 1.1.1245 that prevented Z-Wave 'reset network' from working, and some users got stuck with a &amp;quot;failled to start z-wave&amp;quot; error. &lt;br /&gt;
&lt;br /&gt;
1. Add default values for sensors as not-tripped so it appears correctly in the UI when the sensor hasn't been used yet. &lt;br /&gt;
&lt;br /&gt;
2. Add support for multi-channel association &lt;br /&gt;
&lt;br /&gt;
3. Add support for Danfoss thermostat &lt;br /&gt;
&lt;br /&gt;
4. Fix for X10 devices that have 2 digit numeric ID's &lt;br /&gt;
&lt;br /&gt;
5. Add support for Everspring motion sensors &lt;br /&gt;
&lt;br /&gt;
6. Add support for Aeon 4-in-1 sensors &lt;br /&gt;
&lt;br /&gt;
7. Minor enhancements to the wakeup procedure to support devices with short wakeup times &lt;br /&gt;
&lt;br /&gt;
8. Fix support for the gc-100 &lt;br /&gt;
&lt;br /&gt;
9. Add support for the PolyControl door lock &lt;br /&gt;
&lt;br /&gt;
10. Change the default PIN for locks to 8 characters instead of 4 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== 1.1.1245 - April 20, 2011 - release  ==&lt;br /&gt;
&lt;br /&gt;
Most notably this release includes a new version of the Z-Wave firmware in the Z-Wave chip, and this new version allows Vera to optimize the routes the Z-Wave mesh network uses. This should improve reliability. See [[MigrateTo452]] Also Vera will no longer scan for UPnP devices unless you choose 'Add Device' and at the bottom check the option to scan for UPnP devices. &lt;br /&gt;
&lt;br /&gt;
1. The energy plugin is now built into the engine. It will be removed on upgrade. Energy events are logged to your mios.com account automatically. &lt;br /&gt;
&lt;br /&gt;
2. There is an option with Vera2 (Currently not working with Vera1) on Advanced, Logs to enable logging to a USB stick. This frees up quite a bit of memory, so if you have a lot of devices or plugins and your Vera is running slow or crashing because it's running out of memory, this is a solution. Note that after you check the box it can take up to 30 minutes to format the USB drive, and bootup will take a couple minutes longer with the USB drive installed. It will continue to boot up fine without the USB drive connected, just don't remove it while Vera is running. '''IMPORTANT: Use a new USB drive that hasn't already been formatted. In particular, don't use a USB drive that is already formatted for Mac.''' &lt;br /&gt;
&lt;br /&gt;
3. There is a fix to prevent the main engine from starting before Vera has synced the date/time, which previously had caused sunset/sunrise timers to trigger unexpectedly. There is no battery-backed up clock in Vera. It needs to get the date/time from the internet at each boot. &lt;br /&gt;
&lt;br /&gt;
4. This fixes a bug causing high CPU load and reboot when certain UPnP devices are detected on the network, such as Sonos. &lt;br /&gt;
&lt;br /&gt;
5. The DSC plugin, and possibly others that use serial ports, did not work because the engine was trying to open the port twice. &lt;br /&gt;
&lt;br /&gt;
6. Add some extra info in the heal process, and report the health rating and heal date to our tech support server along with ZWave node info, so, when a customer calls in for support, we will know what types of devices he has and how healthy they are to make better recommendations about improving ZWave reliability. &lt;br /&gt;
&lt;br /&gt;
7. Some startup messages weren't displayed properly in the info panel. &lt;br /&gt;
&lt;br /&gt;
8. Bad UPnP devices on the network that constantly report themselves every 1 second with a new UUID would eventually consume all the memory causing a crash. Now the software filters these rogue devices. &lt;br /&gt;
&lt;br /&gt;
8. There's a new lu_sdata request that makes it much simpler to develop third party user interfaces to control the system. See: [[UI Simple]] &lt;br /&gt;
&lt;br /&gt;
9. Store a counter of all polls (PollOk) with the number that failed transmission (PollTxFail) or failed to reply (PollNoReply). All counters are reset whenever you do a heal network. The counters are visible as extra variables in the device's advanced tab. This is for troubleshooting ZWave problems. &lt;br /&gt;
&lt;br /&gt;
10. Add support for viewing live, streaming video. [[Remote Camera Streaming]] &lt;br /&gt;
&lt;br /&gt;
11. Fix that sometimes variables across multiple bridged MiOS systems weren't being synchronized all the time. &lt;br /&gt;
&lt;br /&gt;
12. Increase the timeouts for some internet operations so it works on super, super slow connections like satellite. &lt;br /&gt;
&lt;br /&gt;
13. Fix for thermostats always showing fan as 'On' when it's in auto. &lt;br /&gt;
&lt;br /&gt;
14. Add support for Fortrezz WMA-02, with new 'Leak alarm' event &lt;br /&gt;
&lt;br /&gt;
15. Add support for Alarm Command Class version 2 &lt;br /&gt;
&lt;br /&gt;
16. Fix a crash caused by wakeup interval set to the minimum value &lt;br /&gt;
&lt;br /&gt;
17. Fix problem with Insteon not starting when there are a lot of existing devices. &lt;br /&gt;
&lt;br /&gt;
18. Fix problem with a LuaUPnP process not cleanly exiting, causing the UPnP port to remain stuck for 2 minutes and slowing down reload. &lt;br /&gt;
&lt;br /&gt;
19. Implement a new Infrared learning, identifying, transmitting engine. &lt;br /&gt;
&lt;br /&gt;
20. Fix toggle state with Insteon. &lt;br /&gt;
&lt;br /&gt;
21. Add basic support for Zigbee lights with a SimpleHomeNet ZBPLM and Luup Plugin &lt;br /&gt;
&lt;br /&gt;
22. Fix crash when adding new A/V devices &lt;br /&gt;
&lt;br /&gt;
23. Reduce the delay between Z-Wave commands to solve startup problems on large networks &lt;br /&gt;
&lt;br /&gt;
24. Add support for Yale/Assa Abbloy locks &lt;br /&gt;
&lt;br /&gt;
25. Fix to handle Luup plugins staying locked to the right serial port when they're unplugged/reconnected. &lt;br /&gt;
&lt;br /&gt;
26. Prevent Insteon module from taking over a serial port &lt;br /&gt;
&lt;br /&gt;
27. Upgrade the ftdi_sio driver to support new infrared blaster &lt;br /&gt;
&lt;br /&gt;
28. Fix intermittent crash when receiving a wakeup command &lt;br /&gt;
&lt;br /&gt;
29. Add attribute set to the Luup API &lt;br /&gt;
&lt;br /&gt;
30. Add Sleep to the Luup API &lt;br /&gt;
&lt;br /&gt;
31. Reduce number of retries for download files/plugins &lt;br /&gt;
&lt;br /&gt;
32. Use separate worker threads for slow processes like downloading vs fast processes like Z-Wave response to speed up the response to time sensitive tasks. &lt;br /&gt;
&lt;br /&gt;
33. Don't execute timers if time jumps, caused by a new sync to the ntp server &lt;br /&gt;
&lt;br /&gt;
34. Increase wait time for Luup plugins from 45 seconds to 90 to resolve some slow plugins that take a long time to initialize. &lt;br /&gt;
&lt;br /&gt;
35. Add logging for the last time the battery level was reported and show the battery icon as a&amp;amp;nbsp;? if it's been more than 7 days. &lt;br /&gt;
&lt;br /&gt;
36. Fix problem with variableset Luup command not setting value always. &lt;br /&gt;
&lt;br /&gt;
37. Don't repoll or reconfigure battery operated devices that wakeup constantly. At most re-poll every 10 minutes. &lt;br /&gt;
&lt;br /&gt;
38. Add new scene recorder feature for easier scene creation. &lt;br /&gt;
&lt;br /&gt;
39. Fix problem with the UI4 dashboard getting out of sync with the engine. &lt;br /&gt;
&lt;br /&gt;
40. Fix problem with creation of 2 cameras using the same plugin. &lt;br /&gt;
&lt;br /&gt;
41. Always write user_data when child devices change in case the reload doesn't work, causing a never ending cycle &lt;br /&gt;
&lt;br /&gt;
42. Log uptime and track memory leaks. &lt;br /&gt;
&lt;br /&gt;
43. Add crossdomain.xml so ActionScript clients can poll &lt;br /&gt;
&lt;br /&gt;
44. Fix deadlock problem when aborting an existing send data command &lt;br /&gt;
&lt;br /&gt;
45. Rewrite the watchdog function so it catches threads that don't exit after the main one closes &lt;br /&gt;
&lt;br /&gt;
46. Add a tracking and reporting of 'tardy' tasks that run more than 3 seconds after they should. &lt;br /&gt;
&lt;br /&gt;
47. Add decoding of infrared signals to extract the protocol, device and button codes from a learned i/r signal &lt;br /&gt;
&lt;br /&gt;
48. Toggle the CPLD chip if the Z-Wave module stops responding to try to wake it up. &lt;br /&gt;
&lt;br /&gt;
49. Allow scenes to control A/V devices &lt;br /&gt;
&lt;br /&gt;
50. Fix for Leviton ZRCS4 id=2050 for 0-3 buttons &lt;br /&gt;
&lt;br /&gt;
51. Increase timeout of http fetches for slow satellite internet connections &lt;br /&gt;
&lt;br /&gt;
52. Allow Luup plugins (SQRemote) to remotely turn on features with a provision flag. &lt;br /&gt;
&lt;br /&gt;
53. Don't treat superceded jobs as an error. &lt;br /&gt;
&lt;br /&gt;
54. Fix issue with bridged systems not syncing state changes &lt;br /&gt;
&lt;br /&gt;
55. Fix issue with bridged systems and deep nested trees of devices more than 3 layers deep (ie 3-in-1 sensor) &lt;br /&gt;
&lt;br /&gt;
56. Re-write bridging code to reduce memory usage. &lt;br /&gt;
&lt;br /&gt;
57. Prevent UPnP devices from being marked offline if the luup plugin doesn't load. &lt;br /&gt;
&lt;br /&gt;
58. Add timestamps for all stages of the Z-Wave heal &lt;br /&gt;
&lt;br /&gt;
59. Add support for measuring KWH and resetting the cumulative measurement &lt;br /&gt;
&lt;br /&gt;
60. Add support for new Z-Wave metering classes &lt;br /&gt;
&lt;br /&gt;
61. Add buttons for streaming and still camera images &lt;br /&gt;
&lt;br /&gt;
62. Fix to prevent some messages from getting lost in the info panel &lt;br /&gt;
&lt;br /&gt;
63. Fix when adding/removing multiple devices with a timeout and not doing anything that it showed it stayed in 'add/remove' mode. &lt;br /&gt;
&lt;br /&gt;
64. Add filter when UPnP devices broadcast constantly to prevent bogging down the system. &lt;br /&gt;
&lt;br /&gt;
65. Few minor Z-Wave changes required to pass Sigma certification. Engine is now certified. &lt;br /&gt;
&lt;br /&gt;
66. Re-order the on/off buttons in UI4. &lt;br /&gt;
&lt;br /&gt;
67. Keep a log of polling history and success/fail, report to central server to assist tech support. &lt;br /&gt;
&lt;br /&gt;
68. Filter duplicate nonce's from secure devices. &lt;br /&gt;
&lt;br /&gt;
69. Fix scenes not updating from bridge's systems &lt;br /&gt;
&lt;br /&gt;
70. Add an auto purge of excessive ip and/or upnp requests so the user_data file doesn't grow bigger than the memory supports. &lt;br /&gt;
&lt;br /&gt;
71. Add a watchdog to the remote access tunnels to ensure access through cp.mios.com stays alive &lt;br /&gt;
&lt;br /&gt;
72. If the Z-Wave network doesn't start stop resetting the Insteon network too &lt;br /&gt;
&lt;br /&gt;
73. Change default poll interval on FLiRS devices to 10800 seconds instead of 60 to conserve the battery &lt;br /&gt;
&lt;br /&gt;
74. Fix mantis #1293 - Can't add notification for a device if no Scene is added previously &lt;br /&gt;
&lt;br /&gt;
75. Fix mantis #1275 - Add options in Scene to show all devices in all rooms or filter by their type &lt;br /&gt;
&lt;br /&gt;
76. Fix mantis #1317 - Replace Archive old logs on findvera with Archive old logs on mios.com &lt;br /&gt;
&lt;br /&gt;
77. Fix mantis #1238 - Wizard through cp.mios.com displaying a 404 Error. &lt;br /&gt;
&lt;br /&gt;
78. Fix mantis #1115 - text tweak on the 'add camera' page in the setup wizard &lt;br /&gt;
&lt;br /&gt;
79. Fix mantis #1356 - Enable mod_expire in lighttpd, have it &amp;quot;cache&amp;quot; images directories to avoid constant reload. &lt;br /&gt;
&lt;br /&gt;
80. Fix mantis #1207 - be sure the 4 buttons that remove devices have ok/cancel popups &lt;br /&gt;
&lt;br /&gt;
81. Fix mantis #1213 - if a device is imported, the 'wrench' setup icon should be grayed out &lt;br /&gt;
&lt;br /&gt;
82. Fix mantis #1251 - easier to use cameras &lt;br /&gt;
&lt;br /&gt;
83. Fix mantis #1314 - Empty Scene name &lt;br /&gt;
&lt;br /&gt;
84. Fix mantis #1360 - Don't update database fields with empty strings &lt;br /&gt;
&lt;br /&gt;
85. Fix scheduling user codes with a Schlage lock &lt;br /&gt;
&lt;br /&gt;
86. Fix compatibility with some Leviton scene/zone controllers using 100/200 series chips &lt;br /&gt;
&lt;br /&gt;
87. Prevent heal from aborting if there's lots of activity going on &lt;br /&gt;
&lt;br /&gt;
88. Fix so you can create custom luup handlers for actions with the same name and service file, but separate service id's, like heat and cool. &lt;br /&gt;
&lt;br /&gt;
89. Add the option of switching to the 3.20 (aka 4.52) branch of Z-Wave firmware &lt;br /&gt;
&lt;br /&gt;
90. Allow for manual routing when using 3.20 &lt;br /&gt;
&lt;br /&gt;
91. New heal routine that tests and optimizes Z-Wave routes. &lt;br /&gt;
&lt;br /&gt;
92. A basic heal will be performed automatically at night if Vera has lost communication with some nodes. &lt;br /&gt;
&lt;br /&gt;
93. Advanced users can now specify routes to nodes &lt;br /&gt;
&lt;br /&gt;
94. Fix deleting devices not showing up in the UI. &lt;br /&gt;
&lt;br /&gt;
95. Heal will auto-resume if it's aborted due to a crash or power outage &lt;br /&gt;
&lt;br /&gt;
96. Add support for meter table class (Kamstrup power meters) &lt;br /&gt;
&lt;br /&gt;
97. Do not discover UPNP devices by default anymore, unless the user requests it on the Add Device page. &lt;br /&gt;
&lt;br /&gt;
98. Fix mantis #1391: Cannot add control over another UPnP device &lt;br /&gt;
&lt;br /&gt;
99. Remove the 'Logs' for a device in the UI4 dashboard. Now go to cp.mios.com and choose Events. &lt;br /&gt;
&lt;br /&gt;
== Old, archived release notes  ==&lt;br /&gt;
&lt;br /&gt;
1. Fix problems with getting alerts for both 'over' and 'under' a certain temperature &lt;br /&gt;
&lt;br /&gt;
2. Fix problem with getting an 'over' and 'under' temperature alert every time the sensor reports the temperature &lt;br /&gt;
&lt;br /&gt;
3. Automatically set the clock on ZWave devices that support COMMAND_CLASS_CLOCK &lt;br /&gt;
&lt;br /&gt;
4. Fix compatibility with the Fortrezz water valve &lt;br /&gt;
&lt;br /&gt;
5. Fix problem where sometimes you can't remove a dead node &lt;br /&gt;
&lt;br /&gt;
6. Fix one Vera importing and controlling the devices from another. &lt;br /&gt;
&lt;br /&gt;
7. Fix one Vera controlling other UPnP devices. &lt;br /&gt;
&lt;br /&gt;
8. Change the way the version is reported so it's compatible with a new SQ Remote update &lt;br /&gt;
&lt;br /&gt;
9. Fix a problem with include/exclude ZWave not working when using the buttons while Vera is disconnected from the network &lt;br /&gt;
&lt;br /&gt;
10. Strip UPNP XML files of any non-standard characters (like accented characters) since this can cause some upnp scanners, like Device Spy, to ignore them. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
After 996 &lt;br /&gt;
&lt;br /&gt;
11. Occasionally a device that was properly configured could show as incorrectly configured if it failed to config and then was immediately reconfigured and succeeded the 2nd time before the 1st failure had been purged from the log. &lt;br /&gt;
&lt;br /&gt;
12. Fortrezz Water + Temp sensor now supports both events. &lt;br /&gt;
&lt;br /&gt;
13. Scenes can be 'active' or 'inactive' based on either 2 settings: 1) all devices in the scene are set, or 2) any device in the scene is on. &lt;br /&gt;
&lt;br /&gt;
14. Automatically set the LED's in a Leviton scene controller based on #13 &lt;br /&gt;
&lt;br /&gt;
15. Fix a crash while logging DHCP requests &lt;br /&gt;
&lt;br /&gt;
16. Don't try to configure a node right away if it failed configuration on the last attempt to reduce long latency caused by continuously reconfiguring dead nodes. &lt;br /&gt;
&lt;br /&gt;
17. Migrate to the new server structure with redundannt servers &lt;br /&gt;
&lt;br /&gt;
18. Add ability to do ZWave multi-cast. &lt;br /&gt;
&lt;br /&gt;
19. Fix a bug where it got stuck retrying to download plugins despite a network failure. &lt;br /&gt;
&lt;br /&gt;
20. Set default root password to the same as the Wifi Password/ HouseID, so telnet is disabled now by default. &lt;br /&gt;
&lt;br /&gt;
21. Don't set or restore default names that have been set with ZWave node naming get (ie starting with _). &lt;br /&gt;
&lt;br /&gt;
22. Add ability to specify custom device types and names for products based on the ZWave manufacturer and product ID's and an xml file, including default names and variable settings. &lt;br /&gt;
&lt;br /&gt;
23. Some ZWave chips seem to have trouble going into 'add node' mode when the commands are sent fast, so added some delays. &lt;br /&gt;
&lt;br /&gt;
24. Add handling for more alarms from door locks, like when new user codes are added and removed, and low battery alarms. &lt;br /&gt;
&lt;br /&gt;
25. For slow IP cameras there is now a timeout setting that can be increased to allow more time to return the JPEG. Also, the engine won't block the browser if the camera takes more than 3 seconds to respond. It will continue to retrieve the image in the background return it with the subsequent request. &lt;br /&gt;
&lt;br /&gt;
== UI2&amp;amp;nbsp;: 1.0.994 and UI3&amp;amp;nbsp;: 1.1.319 - April 21, 2010 - final UI2 and UI3  ==&lt;br /&gt;
&lt;br /&gt;
Both versions, 1.1.319 and 1.0.994, have the same back end engine. The difference is 1.0.994 has the older web html &amp;amp;amp; javascript user interface (UI2), and 1.1.319 &lt;br /&gt;
&lt;br /&gt;
1. [[http://bugs.micasaverde.com/view.php?id=739 Bug 739]]: Fix an intermittent problem with 'handler not found' error when trying to access the smartphone or WAP plugin &lt;br /&gt;
&lt;br /&gt;
2. Fix an error with pan/tilt buttons on a camera not working &lt;br /&gt;
&lt;br /&gt;
3. Add support for the Kwikset ZWave lock's built-in scheduling &lt;br /&gt;
&lt;br /&gt;
4. Improve configuring a Schlage lock. We discovered a 'hidden' configuration setting you can use to get all the user codes states at once rather than polling each code individually as per the official ZWave spec. &lt;br /&gt;
&lt;br /&gt;
5. Correct the reporting of lock/unlock on the Schlage deadbolt. Previously if a lock or unlock was sent to the deadbolt and the deadbolt reported it was executed OK, Vera assumed the lock was really locked/unlocked. Now we use the alarms from the lock instead so the state is always accurate. &lt;br /&gt;
&lt;br /&gt;
6. Fix so the include/exclude mode when triggered with the physical buttons stays on indefinitely. &lt;br /&gt;
&lt;br /&gt;
7. For advanced users, add capability to send door lock NONCE's with ACK by adding the UPNP variable urn:micasaverde-com:serviceId:ZWaveDevice1/NonceACK=1 &lt;br /&gt;
&lt;br /&gt;
8. Unmount the filesystem and kill all processes before flashing the firmware. Also report to a central server when the process starts, and when it reboots after an upgrade so we have a log to accurately measure how often an upgrade fails. We're trying to reduce the number of instances where Vera's firmware gets messed up during an upgrade. This process of upgrading isn't in our code, actually. It's part of the base Linux distro (OpenWRT), and, officially, the only way it should ever happen unless the user pulls the plug while the firwmare is being written, or a brown out. However we have had users experience it even though they insist the power was on steady during the whole firmware write process. &lt;br /&gt;
&lt;br /&gt;
9. For UI3 the problems with drag and drop are solved, and there's a new list view if you don't like the floorplan view. Several other cosmetic and usability issues have been fixed by the Flash team. &lt;br /&gt;
&lt;br /&gt;
10. Fix reset_to_factory_default script, it deleted some required files for the user manual. Now deletes only certain files. &lt;br /&gt;
&lt;br /&gt;
11. Add default free dns servers: OpenDNS.org &lt;br /&gt;
&lt;br /&gt;
== 1.0.979 - October 24, 2009 - final beta  ==&lt;br /&gt;
&lt;br /&gt;
All known issues of stability and memory leaks have now been resolved. The infrared and INSTEON/X10 modules are also fully functioning. The next couple weeks we will closely monitor the forums and trouble tickets to see if there are any lingering issues and then issue a release candidate. &lt;br /&gt;
&lt;br /&gt;
'''Fixes:''' &lt;br /&gt;
&lt;br /&gt;
0. '''IMPORTANT:''' The concept of method #1 and method #2 for programming scenes into scene controllers and handheld remotes no longer exists. The 'Treat Scenes as Events' checkbox is no longer used. Now, to assign a scene, select the scene, click 'Add Event', choose the scene controller or handheld remote, choose the event 'A Scene is Activated', and pick the scene or button ID, such as 3 for button 3 on a scene controller. Any Up/Down or Off buttons now work fine, plus you can add thermostats, door locks, and other non-scene devices to a scene and Vera will still trigger them. So with release 979, it's all automatic and you no longer have to make a decision for method #1 or method #2, and there is no longer a sacrifice with one method over the other. The [[ZWave Add Controller]] page has been updated. &lt;br /&gt;
&lt;br /&gt;
1. There was a file handle leak with files in /tmp that were deleted but not closed. This caused the system to run out of resources and crash after a few days. &lt;br /&gt;
&lt;br /&gt;
2. [[http://bugs.micasaverde.com/view.php?id=666 Bug 666]]: Unable to control the Panasonic BL-C131A camera after upgrading to version 1.0.939 &lt;br /&gt;
&lt;br /&gt;
3. [[http://bugs.micasaverde.com/view.php?id=682 Bug 682]]: can't add an ir device &lt;br /&gt;
&lt;br /&gt;
4. [[http://bugs.micasaverde.com/view.php?id=671 Bug 671]]: associate light switches with scene controllers &lt;br /&gt;
&lt;br /&gt;
5. [[http://bugs.micasaverde.com/view.php?id=625 Bug 625]]: confirm specific user code notification works. Now you get the name of the user code entered on a Schlage lock in the notification &lt;br /&gt;
&lt;br /&gt;
6. [[http://bugs.micasaverde.com/view.php?id=610 Bug 610]]: ha09 and method 0000001 not working &lt;br /&gt;
&lt;br /&gt;
7. [[http://bugs.micasaverde.com/view.php?id=598 Bug 598]]: handle missing variables in smartphone &lt;br /&gt;
&lt;br /&gt;
8. [[http://bugs.micasaverde.com/view.php?id=597 Bug 597]]: add buttons to window controller &lt;br /&gt;
&lt;br /&gt;
9. [[http://bugs.micasaverde.com/view.php?id=572 Bug 572]]: Prevent Timers to run if date is not correct &lt;br /&gt;
&lt;br /&gt;
10. [[http://bugs.micasaverde.com/view.php?id=638 Bug 638]]: Unable to add manually Panasonic IP camera easely &lt;br /&gt;
&lt;br /&gt;
11. [[http://bugs.micasaverde.com/view.php?id=631 Bug 631]]: combine method 0000001 and method 0000002 &lt;br /&gt;
&lt;br /&gt;
12. [[http://bugs.micasaverde.com/view.php?id=634 Bug 634]]: job icons &lt;br /&gt;
&lt;br /&gt;
13. [[http://bugs.micasaverde.com/view.php?id=640 Bug 640]]: Camera PTZ broken in 899 and it keeps to be broken if you upgrade to 918 &lt;br /&gt;
&lt;br /&gt;
14. [[http://bugs.micasaverde.com/view.php?id=641 Bug 641]]: Files from /etc/cmh-lu/ and /etc/cmh-ludl/ are not updated accordingly between firmware updates &lt;br /&gt;
&lt;br /&gt;
15. [[http://bugs.micasaverde.com/view.php?id=630 Bug 630]]: info panel not showing BACKUP jobs &lt;br /&gt;
&lt;br /&gt;
16. [[http://bugs.micasaverde.com/view.php?id=618 Bug 618]]: get rid of hardcoded filenames using FK instead &lt;br /&gt;
&lt;br /&gt;
17. [[http://bugs.micasaverde.com/view.php?id=627 Bug 627]]: temperature event not working &lt;br /&gt;
&lt;br /&gt;
18. [[http://bugs.micasaverde.com/view.php?id=596 Bug 596]]: after saving the info panel isn't updated &lt;br /&gt;
&lt;br /&gt;
19. [[http://bugs.micasaverde.com/view.php?id=636 Bug 636]]: IP CAMERA CONTROLS NOT WORKING IN IE &lt;br /&gt;
&lt;br /&gt;
20. [[http://bugs.micasaverde.com/view.php?id=475 Bug 475]]: need an input box on the iphone and wap ui &lt;br /&gt;
&lt;br /&gt;
21. [[http://bugs.micasaverde.com/view.php?id=458 Bug 458]]: backup/restore zwave dongle's firmware &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:Glossary]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/ITemp</id>
		<title>ITemp</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/ITemp"/>
				<updated>2013-05-01T16:38:55Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;iTEMP is a complex device with Temperature sensor, binary sensor and even thermostat functions. To fully support iTEMP in VERA the following steps are required: &lt;br /&gt;
&lt;br /&gt;
*Make sure you have at least version 1.5.622 on your unit &lt;br /&gt;
*Go to Apps -&amp;amp;gt; Install Apps &lt;br /&gt;
*Login if needed &lt;br /&gt;
*Search for &amp;quot;iTemp&amp;quot; and install it &lt;br /&gt;
*After the plugin is installed a new generic device will be installed&lt;br /&gt;
&lt;br /&gt;
[[Image:Generic-plugin.png]] &lt;br /&gt;
&lt;br /&gt;
*Go to the Advanced tab and locate the '''iTemp_Devices''' variable&lt;br /&gt;
&lt;br /&gt;
[[Image:Itemp variable.png]] &lt;br /&gt;
&lt;br /&gt;
*Fill in the Device #ID of the physical iTemp device, which you already included in the network &lt;br /&gt;
*A new child device will be created which you can use in scenes and triggers&lt;br /&gt;
&lt;br /&gt;
[[Image:Binary_device.png]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Monster_AVL300_Remote</id>
		<title>Monster AVL300 Remote</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Monster_AVL300_Remote"/>
				<updated>2013-05-01T07:25:41Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Requirements:  ==&lt;br /&gt;
&lt;br /&gt;
1. Vera unit with UI5 &lt;br /&gt;
&lt;br /&gt;
2. Monster AVL300 remote &lt;br /&gt;
&lt;br /&gt;
3. Omnilink (extender) &lt;br /&gt;
&lt;br /&gt;
== Instructions:  ==&lt;br /&gt;
&lt;br /&gt;
'''1. Set the z-wave version of the Vera unit to 2.78''' &lt;br /&gt;
&lt;br /&gt;
  On the Dashboard go to Setup &amp;amp;gt; Z-Wave Settings &amp;amp;gt; Uncheck “Use Z-Wave version 3.20 instead of 2.78” &amp;amp;gt; Select Save (upper right corner) &amp;amp;gt; Continue and wait for Vera to finish downgrading. After the downgrade is complete chek again in Setup &amp;amp;gt; Z-Wave Settings to make sure that Vera uses version 2.78 of z-wave.&lt;br /&gt;
&lt;br /&gt;
''Note: It may not be necessary to use Z-wave version 2.78, as some newer remotes might work with version 3.20 of z-wave.'' &lt;br /&gt;
&lt;br /&gt;
'''2. Reset Monster devices (if previously setup for Z-wave control)''' &lt;br /&gt;
&lt;br /&gt;
 Reset RF Network in each AVL300:  Home Page &amp;amp;gt; System Options &amp;amp;gt; RF Network Tools &amp;amp;gt; Reset RF Network &amp;amp;gt; Yes &amp;amp;gt; OK. Repeat a few times just to be sure.&lt;br /&gt;
 Reset Omnilink:  Hold Connect button for 60 seconds until LEDs begin flashing rapidly.&lt;br /&gt;
&lt;br /&gt;
'''3. Remove lights/scenes from Monster software''' &lt;br /&gt;
&lt;br /&gt;
   Modify Settings &amp;amp;gt; Light Scenes/Modify &amp;amp;gt; Remove (All) &amp;amp;gt; Done&lt;br /&gt;
 Modify Settings &amp;amp;gt; Lights/Modify &amp;amp;gt; Action/Modify (All) &amp;amp;gt; Remove (All) &amp;amp;gt; Save &amp;amp;gt; Done &amp;amp;gt; Done&lt;br /&gt;
 Update Remote - Follow onscreen prompts&lt;br /&gt;
&lt;br /&gt;
'''4. Include Monster devices in UI5''' &lt;br /&gt;
&lt;br /&gt;
   Add Omnilink:  Devices &amp;amp;gt; Add Devices &amp;amp;gt; “Add ZWave devices, like light switches, door locks, thermostats, etc.”/Add &amp;amp;gt; Option 1 &amp;amp;gt; Press and release Connect button on Omnilink &amp;amp;gt; Next (after device is found) &amp;amp;gt; Enter name and assign room &amp;amp;gt; Close &amp;amp;gt; Save (upper right corner) &amp;amp;gt; Continue&lt;br /&gt;
 Add AVL300:&lt;br /&gt;
   -on the AVL300 go to System Options &amp;amp;gt; RF Network Tools &amp;amp;gt; Page Right to Set Learn Mode page (don’t press yet)&lt;br /&gt;
   -on the Vera unit go to Devices &amp;amp;gt; Add Devices &amp;amp;gt; “Add ZWave devices, like light switches, door locks, thermostats, etc.”/Add &amp;amp;gt; Option 1 &amp;amp;gt; on the AVL300: Set Learn Mode &amp;amp;gt; “This Unit is now a Primary Controller” displayed &amp;amp;gt; on Vera&amp;amp;nbsp;: Next  &amp;amp;gt; Save (upper right corner) &amp;amp;gt; Continue &amp;amp;gt; on the AVL300&amp;amp;nbsp;: OK&lt;br /&gt;
    -repeat for additional AVL300 remotes.  The Omnilink will remain, but the AVL300 remotes will disappear from Vera.&lt;br /&gt;
&lt;br /&gt;
'''5. Configure Lights in Monster software''' &lt;br /&gt;
&lt;br /&gt;
   -Modify Settings &amp;amp;gt; Lights/Modify &amp;amp;gt; Action/Modify &amp;amp;gt; Enter ControlNet Light Name &amp;amp;gt; Save &amp;amp;gt; Repeat for each light, then select Lighting Setup &amp;amp;gt; Connect USB cable to AVL300 &amp;amp;gt; Next &amp;amp;gt; Follow prompts until Set Up ControlNet screen&lt;br /&gt;
 -Unplug USB cable&lt;br /&gt;
&lt;br /&gt;
'''6. Remove and replace AVL300 battery''' (This step doesn't seem to be always necessary, but does work when the remote hangs after disconnection or when the lights don't show as paired after re-connection) &lt;br /&gt;
&lt;br /&gt;
   -on the AVL300 go to Remote Assistant/Next &amp;amp;gt; (If you have more than one room, Press NEXT to select the room/NEXT &amp;amp;gt; Select room &amp;amp;gt; Bring remote to the following room/NEXT &amp;amp;gt; Press NEXT to select the device/NEXT &amp;amp;gt;) Select first light name &amp;amp;gt; Add Device/OK &amp;amp;gt; Press and release device switch/button &amp;amp;gt; Remote Assistant/OK &amp;amp;gt; Repeat for each light and room &amp;amp;gt; I’m Done (unless setting up Omnilink)&lt;br /&gt;
 -Omnilink setup:  In AVL300, find and select &amp;quot;Go To RF Extender Setup&amp;quot; &amp;amp;gt; “You need to add RF Extender(s) to your network”/Add &amp;amp;gt; “Press Connect button on RF Extender until Status LED light turn on” &amp;amp;gt; Press Connect on Omnilink &amp;amp;gt; “Added RF Extender:  Press OK to continue”/OK&lt;br /&gt;
 -Plug USB cable into AVL300&lt;br /&gt;
 If you’ve exited the software or it has timed out, Modify Settings &amp;amp;gt; Lights/Modify &amp;amp;gt; Load network configuration&lt;br /&gt;
 On Set Up ControlNet screen, select Next (IF everything worked right, you will see each light Paired!  This screen may show success even if a device did not pair correctly.  Repeat from the Lighting Setup button click for lights not working.)&lt;br /&gt;
 -When finished, Update Remote&lt;br /&gt;
&lt;br /&gt;
''Note: When multiple remote controls are involved, only the first remote needs to be paired with lights and the RF Extenders/Omnilinks. When an &amp;quot;Update Remote&amp;quot; is performed, the settings will be transferred to additional remotes.''&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/MIMOlite</id>
		<title>MIMOlite</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/MIMOlite"/>
				<updated>2013-04-30T12:56:34Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: Created page with &amp;quot;&amp;amp;nbsp;In construction&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;amp;nbsp;In construction&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/ITemp</id>
		<title>ITemp</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/ITemp"/>
				<updated>2013-04-30T12:23:45Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;iTEMP is a complex device with Temperature sensor, binary sensor and even thermostat functions. To fully support ZME iTEMP in VERA the following steps are required: &lt;br /&gt;
&lt;br /&gt;
*Make sure you have at least version 1.5.622 on your unit &lt;br /&gt;
*Go to Apps -&amp;amp;gt; Install Apps &lt;br /&gt;
*Login if needed &lt;br /&gt;
*Search for &amp;quot;iTemp&amp;quot; and install it &lt;br /&gt;
*After the plugin is installed a new generic device will be installed&lt;br /&gt;
&lt;br /&gt;
[[Image:Generic-plugin.png]] &lt;br /&gt;
&lt;br /&gt;
*Go to the Advanced tab and locate the '''iTemp_Devices''' variable&lt;br /&gt;
&lt;br /&gt;
[[Image:Itemp variable.png]] &lt;br /&gt;
&lt;br /&gt;
*Fill in the Device #ID of the physical iTemp device, which you already included in the network &lt;br /&gt;
*A new child device will be created which you can use in scenes and triggers&lt;br /&gt;
&lt;br /&gt;
[[Image:Binary_device.png]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/File:Binary_device.png</id>
		<title>File:Binary device.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/File:Binary_device.png"/>
				<updated>2013-04-30T12:23:31Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/ITemp</id>
		<title>ITemp</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/ITemp"/>
				<updated>2013-04-30T12:22:03Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;iTEMP is a complex device with Temperature sensor, binary sensor and even thermostat functions. To fully support ZME iTEMP in VERA the following steps are required: &lt;br /&gt;
&lt;br /&gt;
*Make sure you have at least version 1.5.622 on your unit &lt;br /&gt;
*Go to Apps -&amp;amp;gt; Install Apps &lt;br /&gt;
*Login if needed &lt;br /&gt;
*Search for &amp;quot;iTemp&amp;quot; and install it &lt;br /&gt;
*After the plugin is installed a new generic device will be installed&lt;br /&gt;
&lt;br /&gt;
[[Image:Generic-plugin.png]] &lt;br /&gt;
&lt;br /&gt;
*Go to the Advanced tab and locate the '''iTemp_Devices''' variable&lt;br /&gt;
&lt;br /&gt;
[[Image:Itemp variable.png]] &lt;br /&gt;
&lt;br /&gt;
*Fill in the Device #ID of the physical iTemp device, which you already included in the network&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/File:Itemp_variable.png</id>
		<title>File:Itemp variable.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/File:Itemp_variable.png"/>
				<updated>2013-04-30T12:20:06Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/File:Generic-plugin.png</id>
		<title>File:Generic-plugin.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/File:Generic-plugin.png"/>
				<updated>2013-04-30T12:19:46Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/ITemp</id>
		<title>ITemp</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/ITemp"/>
				<updated>2013-04-30T12:18:57Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;iTEMP is a complex device with Temperature sensor, binary sensor and even thermostat functions. To fully support ZME iTEMP in VERA the following steps are required: &lt;br /&gt;
&lt;br /&gt;
*Make sure you have at least version 1.5.622 on your unit &lt;br /&gt;
*Go to Apps -&amp;amp;gt; Install Apps&lt;br /&gt;
*Login if needed&lt;br /&gt;
*Search for &amp;quot;iTemp&amp;quot; and install it&lt;br /&gt;
*After the plugin is installed a new generic device will be installed&lt;br /&gt;
*Go to the Advanced tab and locate the '''iTemp_Devices''' variable&lt;br /&gt;
*Fill in the Device #ID of the physical iTemp device, which you already included in the network&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/ITemp</id>
		<title>ITemp</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/ITemp"/>
				<updated>2013-04-30T07:30:04Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;iTEMP is a complex device with Temperature sensor, binary sensor and even thermostat functions. To fully support ZME iTEMP in VERA the following steps are required: &lt;br /&gt;
&lt;br /&gt;
*Make sure you have at least version 1.5.622 on your unit &lt;br /&gt;
*Upload the two plugin files into VERA: Go to Apps -&amp;amp;gt; Develop Apps -&amp;amp;gt; Luup Files, click browse and choose each of these files. &lt;br /&gt;
*After the files were uploaded you have to create a virtual device in Apps -&amp;amp;gt; Develop Apps -&amp;amp;gt; Create Device, type in a Description as the name and as Device file use D_iTemp.xml and as Implementation file I_iTemp.xml. Afterwards click on &amp;quot;Create device&amp;quot; &lt;br /&gt;
*On the Dashboard you will have a new device with the name you've given and in the Advanced tab of the device, you should have a variable called &amp;quot;iTemp_Devices&amp;quot;. You can fill the variable with the device id (Settings tab) of the iTemp device you already included into the network. &lt;br /&gt;
*After you save the changes you should get another binary sensor on the Dashboard which should be tripped/untripped according to the tripped state of the master device.&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Supported_Hardware</id>
		<title>Supported Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Supported_Hardware"/>
				<updated>2013-02-05T13:19:25Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a page for Supported Z-Wave devices. &lt;br /&gt;
&lt;br /&gt;
Alternative hardware pages exist for &lt;br /&gt;
&lt;br /&gt;
*[[ZWave Add Controller|Z-Wave Handheld Remote Controls, Gateways and Scene Controllers]] &lt;br /&gt;
*[[IP Cameras|IP Enabled Cameras]] &lt;br /&gt;
*[[Insteon Supported Hardware|Insteon/X10 devices]] &lt;br /&gt;
*USB, or USB-Serial, [[Serial Supported Hardware|Interface devices]]&lt;br /&gt;
&lt;br /&gt;
In general, any device with the Z-Wave logo should work with Vera. A list of tested Z-Wave devices is below, with specific notes for each type of device. This is a wiki, so feel free to add to the page. To learn about Z-Wave routing and fixing routing problems see: [[Heal Network]] &lt;br /&gt;
&lt;br /&gt;
== Hardware Reported to Work  ==&lt;br /&gt;
&lt;br /&gt;
*We strongly encourage users to list any and all products they tested and installed. &lt;br /&gt;
*If a product works but you did not like it, please list it anyway. It may be the only product available to some users.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT! The devices listed here have been added by installers, technicians and users like yourself. Results may vary upon installations. MiCasaVerde does not guarantee operation and compatibility with your installation. The listed devices were found to work with their specific installation. Mixing different series and brands of equipment is not guaranteed in any way to work with other series and brands. It is very likely that users have not fully tested all features of the devices, so it is possible that a device listed here as compatible, will not prove compatible with your hardware. If you are editing this wiki DO NOT REMOVE a listed working device if it hasn't worked for you. Seek help to get the device to work under your individual circumstance. If you are adding to this wiki, please provide links to data for the device and add any tips you feel may benefit someone wanting to implement the device into an installation.''' &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Lighting Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;width: 1220px; height: 491px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Dimmer Switch &lt;br /&gt;
| ZDW120 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, easy to install, LED is a very bright blue....can be programmed to be off when the light is off or on. &amp;quot;series 200&amp;quot; model supports Group Associations 2 &amp;amp;amp; 3. (The older &amp;quot;series 100&amp;quot; supported Groups 1-4, but is no longer available.)&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| ZDW103 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, LED is a very bright blue....can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-wire Dimmer Switch &lt;br /&gt;
| ZDW232 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jul 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5198 Newb] &lt;br /&gt;
| Wall-mount, 230v, 500W, 2-Wire (no neutral), works well. Can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Relay Switch &lt;br /&gt;
| ZRW113 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Controls Florescent Lamps very well! No humming at all.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Companion Switch &lt;br /&gt;
| AS101 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, The trick here is to install this device where the power comes in.&lt;br /&gt;
|-&lt;br /&gt;
| ACT&amp;lt;br&amp;gt; &lt;br /&gt;
| 3-way Dimmer Switch, 2 rocker&amp;lt;br&amp;gt; &lt;br /&gt;
| ZDM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZDM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| Dimmer, Wall-mount, 230v, 500W,&amp;lt;br&amp;gt;3-way, 3 Wire, 2 rocker&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Relay Switch, 2 rocker &lt;br /&gt;
| ZRM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZRM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Relay, Wall-mount, 230v, 6A,&amp;lt;br&amp;gt; 3-way, 3 Wire, 2 rocker - '''Status polling does not work with Vera'''&amp;lt;br&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cooper &lt;br /&gt;
| Accessory (3-way slave) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[Cooper Accessory Slave]]&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 2 wire dimmer &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 05431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall switch.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 06431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| The newer in-wall Düwi switch (also designated Düwi.me), marked with a green sticker on the housing. This switch supports status push.&lt;br /&gt;
|-&lt;br /&gt;
| Fibar &lt;br /&gt;
| 3 wire double switch &lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| This device is designed to use (and be mounted behind) existing light switches. Supports status push. Also available: single switch, dimmer, blind control.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Lamp Module w/Dimmer &lt;br /&gt;
| 45602 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with most incandescent bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Fluorescent Light &amp;amp;amp; Appliance Module &lt;br /&gt;
| 45603 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Outdoor Switch Module &lt;br /&gt;
| 45604 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off/Dim Dimmer Switch &lt;br /&gt;
| 45606 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45606-Manual-Eng.pdf Link] [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Dimmer-Switch-63p555.htm Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Discontinued, See 45612. Requires neutral lead. Works fine with most bulbs. With Philips AmbientLED, flickers at &amp;amp;gt;95% brightness. Supports beaming. Flickers at low-levels with dimmable LED.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| 45607 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off Switch &lt;br /&gt;
| 45609 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Auxiliary Switch &lt;br /&gt;
| 45610 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No zwave function; for 3 and 4-way switching kits&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 2-way Rocker Dimmer &lt;br /&gt;
| 45612 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2012 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No neutral required; replaces 45606&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Dimmer Kit &lt;br /&gt;
| 45613 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Possible error in 45613 manual diagrams, see 45610 diagrams&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Switch Kit &lt;br /&gt;
| 45614 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Relay Switch Adapter &lt;br /&gt;
| RAone SmartPower &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartpower_zw_tech_doc.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Dimmer Switch Adapter &lt;br /&gt;
| RAone SmartDimmer &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartdimmer-00110001-tech.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA03C &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Sept 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha03.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5852 JonnyO] &lt;br /&gt;
| Easy to Instal, supports dimming&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Screw-in Lamp Module &lt;br /&gt;
| HA05C &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Easy install, easy to pair with Vera!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 300 watt dimmer &lt;br /&gt;
| HA06 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha06.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable Dimmer Switch. incandescent/halogen only. Loads for 300 watts or less no neutral required. Great for dimming one bulb.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Switch &lt;br /&gt;
| HA18 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha18.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Affordable 3-way Switch&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| HA20 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha20.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-460-intermatic-homesettings-ha20c-3-way-in-wall-switch-dimmer.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable 3-way 600W dimmer&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRI06-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305784&amp;amp;section=25501 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| VRCS4-MRX &lt;br /&gt;
| 7,2,67,0,2 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well, pair as per [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller], then again holding &amp;quot;2&amp;quot; and &amp;quot;4&amp;quot; to pair the Switch (&amp;quot;Load&amp;quot;) itself.&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRM10-1LX &lt;br /&gt;
| 1 &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=104&amp;amp;products_id=170 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000ZKM7I8/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=65 mark-hc] &lt;br /&gt;
| This is a high quality dimmer geared towards high-end installations&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1L &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| May 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| (Coordinating Remote??)&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LZ &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Light almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for dimmer inserts &lt;br /&gt;
| 5026xx, 5036xx, 5046xx &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5026_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for switch inserts &lt;br /&gt;
| 5024xx, 5034xx, 5044xx &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/5024xx_5034xx_5044xx_Sensorflaeche4pin_CONNECT_INT.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Single Radio flush-mounted receiver &lt;br /&gt;
| 507001 &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5070_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, flush-mounted &lt;br /&gt;
| 507501, 507601 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5075_581_00_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 1-gang universal dimmer, flush-mounted &lt;br /&gt;
| 507900 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5079_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Monster &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| IWC600 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is the same as the Leviton scene controller. Follow these instructions: [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller]&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| RP200 &lt;br /&gt;
| 1.0 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/products/Productdetail3.asp?StyleID=139&amp;amp;FinishID=12&amp;amp;FunctionID=77 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Works well&amp;lt;br&amp;gt;Sold with Schlage LiNK lock system&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Plug &amp;amp;amp; Receptacle Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1677&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRR150W &lt;br /&gt;
| 2.2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Works like a champ! Easy to Install. One receptacle RF controlled, the other is hot&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in switch.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZDP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Cooper Wiring Devices &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| RFTR9505-T &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://solutions.cooperwiringdevices.com/common/brands.cfm?pg=Detail&amp;amp;brandName=CWD%20Technology&amp;amp;category=Aspire%20RF%20Lighting%20Control%20System%3A%20Receptacles&amp;amp;id=16772 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| One receptacle is RF controlled, the other is hot. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Duwi &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;05437&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| Feb 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.com/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| ezhome &lt;br /&gt;
| High quality Plug-in switch, Easy install and works well&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN157-2&amp;lt;/span&amp;gt; &lt;br /&gt;
| 4,2,64,1,2 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=501&amp;amp;CateUIDList=0,83 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN158&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Works well. Supports status push and power metering&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| In-wall Duplex Receptacle &lt;br /&gt;
| 45605 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| US &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Duplex-Receptacle-63p554.htm Link] [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45605-Manual-Eng.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Easy. Works.&lt;br /&gt;
|-&lt;br /&gt;
| Home Manageables &lt;br /&gt;
| Lamp Module (Dimming) &lt;br /&gt;
| HM-LM001 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| 200W maximum load, 25W minimum load &lt;br /&gt;
| [http://www.homemanageables.com/manuals/HM-LM001%20Manual%20Final.pdf Link] &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Support for incandescent loads only. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| CA3500 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=105&amp;amp;products_id=97 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000U3XYPA/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is a decent, but expensive solution for in-wall receptacles. One receptacle RF controlled, the other is hot.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA02C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=108&amp;amp;products_id=98 Link] &lt;br /&gt;
| [http://www.amazon.com/Intermatic-HA02C-Settings-Heavy-Duty-Appliance/dp/B000BJSDZO/ref=sr_1_3?ie=UTF8&amp;amp;qid=1227467418&amp;amp;sr=8-3 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Seems to work well&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Outdoor Module &lt;br /&gt;
| HA04C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Easy to Install.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, plug adapter, 2000 W &lt;br /&gt;
| 508519 &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5085_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Monster Central &lt;br /&gt;
| 1800W Appliance Module &lt;br /&gt;
| ML-LAS1000 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Jan 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.monstercable.com/productdisplay.asp?pin=3164 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Easy to Install. I use this as a ZWave signal repeater. Appears to be a badge-engineering of [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=309748&amp;amp;section=25542 Leviton VRP15-1LW]&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA-02L&amp;lt;br&amp;gt;(HA-02WD) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indooor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-02WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Note: link is to HA-02WD manual.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA-03WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-03WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Outdoor Lighting Module &lt;br /&gt;
| HA-04WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2012 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-04WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Thermostat Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| WDTC-20 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/WDTC-20---Z-Wave-Thermostat-Wayne-Dalton-P599C38.aspx Link] &lt;br /&gt;
| [http://www.amazon.com/Wayne-Dalton-Corporation-Z-Wave-Thermostat/dp/B001F8QKYQ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Has 2 inclusion modes: 1) press and release the bind button and the STAT will be included as a thermostat and works with Vera, 2) press and hold the bind button and it will be added as a binary switch for compatibility with old, non-compliant remotes. If it's added in the wrong mode, remove it and re-add it. Works great simple to use!&lt;br /&gt;
|-&lt;br /&gt;
| HAI &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| RC-80BZ &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homeauto.com Link] &lt;br /&gt;
| [http://www.homeauto.com/Downloads/Products/Omnistat/rcr80.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, Hold button feature not able to control by Vera at this time. Priced above 200.00. Has internal setback programs. Works great.&lt;br /&gt;
|-&lt;br /&gt;
| RCS &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| TZ43 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, much more feature rich the the WDTC-20 but comes with a hefty price tag ($214.95). Wish Vera could use all the features in this Thermostat! '''Note:'''''You need to set the thermostat to show the temperature, on its display, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Schlage/Trane &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| Trane &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.link.schlage.com/Products/Pages/Thermostat.aspx Link] &lt;br /&gt;
| [http://www.trane.com/Residential/Products/Thermostats Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| It's the same thermostat as the RCS TZ43 and it has the same issue: it's accepting &amp;quot;Set Temp Point&amp;quot; commands only in the measurement unit that is displayed on its screen. '''Note:'''''You need to set the thermostat to show the temperature, on its screen, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| InTouch &lt;br /&gt;
| CA8900 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-663-intermatic-intouch-ca8900-z-wave-digital-thermostat.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Looks very similar to the Wayne Dalton WDTC-20 listed here. works great, simple to use&lt;br /&gt;
|-&lt;br /&gt;
| Danfoss &lt;br /&gt;
| Radiator thermostat &lt;br /&gt;
| RA PLUS-w &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://raplusw.com/Content/E962FC0B-6461-4319-82FE-3E1E765142CF.html Link] [http://raplusw.com/PCMPDF/Data%20sheet%20RA-PLUS-w_02.pdf Link] &lt;br /&gt;
| [http://www.eurox10.com/Product/ZWave/Actuators/ZWDNF_RA_PLUS-W.htm Link] [http://www.eurox10.com] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See: [[Danfoss Thermostat]] for installation instructions&amp;lt;br&amp;gt;If the device cannot be configured at the final location, move the device closer to Vera and try again (this device might require a direct connection to Vera for configuration).&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT22 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.radiothermostat.com/documents/CT-22-Operation-27aug10.pdf Link] [http://www.radiothermostat.com/documents/CT-22-Installation-27aug10.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| &lt;br /&gt;
To include the thermostat into your network, you just have to install the USNAP module in the thermostat while Vera is in Include mode. To exclude the thermostat from your network, you just have to install the USNAP module in the thermostat while Vera is in Exclude mode.You can watch a video about how to install it [http://www.youtube.com/watch?v=M9VNuHGENP0 here]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT30 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvflorin&amp;lt;br&amp;gt; &lt;br /&gt;
| If you experience a problem with other Z-Wave devices, see this [http://wiki.micasaverde.com/images/3/39/RTCOA_Z-Wave_v7.4_workaround.zip note].&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Remotec &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| ZTS-100 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| To include the thermostat into your network, hold the home button for 2 seconds until the display says 'noc', which means 'no connection', then press the Prog button and the readout will say 'Srh'. If it doesn't say 'noc' or if the radio icon is visible in the upper right corner, the thermostat is already included and must be removed/reset. To remove/reset the thermostat hold the home button for 2 seconds until the display says 'done', then press the Prog button.&lt;br /&gt;
|-&lt;br /&gt;
| Horstmann &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| HRT4-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4-ZWweb.pdf Link] [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf Link] &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf &amp;lt;br&amp;gt;] &lt;br /&gt;
| Daniel &lt;br /&gt;
| After you include the thermostat in Vera's network, you will have to make some configuration changes in order for it to report the temperature change. See: [[HRT4-ZW]] for more information.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Sensors'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1369&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| ZIR000 / ZIR010 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU (ZIR010) or US (ZIR000) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR000_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR000_instr.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR010_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR010_instr.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Remove the cover, pair to Vera's dongle by using the push-button on the left of the circuit board. Vera must configure it to work, and it can only be configured within less of a minute (30 sec best) of inserting the batteries. With Vera's dongle removed, remove/reinsert the batteries, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs &lt;br /&gt;
| 3-in-1 sensor (light/humidity/temperature) &lt;br /&gt;
| MultiSensor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.aeon-labs.com/site/public/lib/download.php?type=s&amp;amp;f=29 Specs] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Pair to Vera by using the push-button. Vera must configure it to work, and it can only be configured within 10 minutes of inserting the batteries.&lt;br /&gt;
|-&lt;br /&gt;
| Express Controls aka HomeSeer &lt;br /&gt;
| 3-in-1 sensor (light/temperature/motion) &lt;br /&gt;
| HSM100 / EZMotion &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[ExpressControls3in1]]&amp;lt;br&amp;gt;If the motion sensor does not work right after inclusion and configuration, remove the batteries for a few seconds.&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Hawking/Home Manageables &lt;br /&gt;
| Door/window sensor &lt;br /&gt;
| SM103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=355&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110873R01_SM103_-ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Pair using the intrusion button. The sensor will accept configuration within a few minutes of the initial pairing, or of pressing the intrusion button on the back even after it's paired. Pair the device, or if it's already paired, press the intrusion button, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page. NOTE: There is some confusion about the orientation of the sensor. The main sensor body has a back (where the intrusion is), a front (where the logo and LED is), and the 2 other surfaces, one of which has a curved edge, and the other is flat. The magnet needs to go against the flat surface. And the flat surface on the magnet should be as close as possible to the flat surface on the sensor, lined up in the middle so the line which passes through the LED lines up with the sensor. &lt;br /&gt;
Note: In case the inclusion/exclusion fails you should remove/reinsert the batteries from the sensor and within a few seconds the sensor should be automatically detected. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Home Manageables &lt;br /&gt;
| Humidity + Temperature sensor &lt;br /&gt;
| HM-TS001 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jan 2010 (requires version 1.1.0 or greater) &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.asihome.com/ASIshop/product_info.php?products_id=3946 Link] [http://www.homeseer.com/pdfs/guides/HM_TD001.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| micasaverde &lt;br /&gt;
| Pair or unpair the device by tapping the CF button 3 times very quickly. Once it's paired and shows up in the UI as a generic device, press the CF button 3 times again quickly to make it wakeup and get configured. Then it will correctly be identified as 3 devices (combo device + temperature + humidity).&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Motion Detector &lt;br /&gt;
| SP103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=354&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110874R01_SP103_%20-%20ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Fortrezz &lt;br /&gt;
| Water /Freeze &lt;br /&gt;
| WWA-001 &lt;br /&gt;
| &amp;amp;nbsp;?????? &lt;br /&gt;
| US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.Fortrezz.com Link] [http://www.fortrezz.com/resources/WWA_manual_01May2009.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Zmistro &lt;br /&gt;
| Works great I would place a few in your house. Bathrooms, laundry , kitchen , basement. Great product!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| CA-9000 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthomeusa.com/Products/CA9000/manuals/CA9000.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Aaron &lt;br /&gt;
| This device has limited functionality as a sensor. It can only be used to turn on and off a light directly by setting an association, which Vera supports. It does not fire events, so you cannot use it as an event on a scene.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 4-gang radio transmitter, flush-mounted &lt;br /&gt;
| 506004 &lt;br /&gt;
| 2,2,27,1,4 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5060_581_02_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Note: There is proprietary functionality here. Support will be added soon. &lt;br /&gt;
Quite complex device; partially supported by Vera; can be used as a window/door sensor (as of firmware 1.0.900) ... &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs (Aeotec)&amp;lt;br&amp;gt; &lt;br /&gt;
| 4 in 1 Sensor (Multisensor)&amp;lt;br&amp;gt; &lt;br /&gt;
| DSB05106-ZWUS &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://aeotec.com/z-wave-sensor/47-multisensor-manual.html Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvadi&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://wiki.micasaverde.com/index.php/Aeon_4in1 Link]&amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Door Locks'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| BE369 (deadbolt) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Mid 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/link/product_tour/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Read the instructions here: [[Schlage Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Kwikset &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here:[[Kwikset Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Yale &lt;br /&gt;
| Deadbolt &lt;br /&gt;
| Real Living &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Quickstart%2018JUL11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Instructions%2023AUG11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here: [[Yale Lock]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Drapes/Blinds'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DBMZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/dc_mot_ctrls/z-wave/dbmz/dbmz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| ABMHZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/int_ac_mot_ctrls/z-wave/abmhz/abmhz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/AC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| AC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/DC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Relay controls'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Contactor control box &lt;br /&gt;
| CA3750 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.intouchcontrols.com/~/media/Files/InTouchControls/Products/Spec%20Sheets/CA3750.ashx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Multi-instance class supported for this device. Vera is able to control each of the 2 relays independently if desired. please note unit shows as three switches this is a bug with Intermatic not a real issue.You can check the box in devices to not show the second listing of the first relay in &amp;quot;Dasboard&amp;quot; You can control heavy loads like a water heater ,pool pump motor/s. great device&lt;br /&gt;
|-&lt;br /&gt;
| Fibaro&amp;lt;br&amp;gt; &lt;br /&gt;
| Relay Switch&amp;lt;br&amp;gt; &lt;br /&gt;
| FGS211 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [https://www.uk-automation.co.uk/pdf/FGS211.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| This device is identified as a master device with 1 child device. The master controls the S1 output, the child controls the S2 output.&lt;br /&gt;
|-&lt;br /&gt;
| Fibaro &lt;br /&gt;
| Double Relay Switch &lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://materialy.fibaro.com/instrukcje/relay%20switch%20FGS221%20v1_4%20eng.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| This device is identified as a master device with 1 child device. The master controls the S1 output, the child controls the S2 output.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Window Coverings'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 5025xx, 5035xx, 5045xx &lt;br /&gt;
| 6,2,27,2,3 and 6,2,27,2,4 &lt;br /&gt;
| EU &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5025_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work. GUI buttons do not work with Luup release 1.0.843 and 1.0.862 (fixed with Luup release 1.0.879).&amp;lt;br&amp;gt;Workaround: Use a Luup Scene with the following code:&amp;lt;tt&amp;gt;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&amp;lt;tt&amp;gt;local lul_arguments = {}&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_arguments[&amp;quot;newTargetValue&amp;quot;]=&amp;quot;0&amp;quot;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_resultcode,lul_resultstring,lul_job,lul_returnarguments = luup.call_action(&amp;quot;urn:upnp-org:serviceId:SwitchPower1&amp;quot;,&amp;quot;SetTarget&amp;quot;,lul_arguments,6) &amp;lt;/tt&amp;gt; Replace &amp;quot;6&amp;quot; with your device number, replace &amp;quot;0&amp;quot; with &amp;quot;1&amp;quot; for inverse action. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Duewi &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 054368 &lt;br /&gt;
| 6,2,51,1,0 &lt;br /&gt;
| EU &lt;br /&gt;
| Jun 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.de/index.php?productid=37344 Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Lutz &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Some additional observations by Ap15e (Vera V1, firmware 1.0.979): &lt;br /&gt;
*GUI button 'Stop' and corresponding UPnP service does not work. &lt;br /&gt;
*GUI button 'Up' moves the shutter down, GUI button 'Down' moves the shutter up ... &lt;br /&gt;
*After adjusting the running times even the slide bar seems to work! &lt;br /&gt;
*I got a report from a user that the düwi device may fail due to interference from the shutter motor. In this case an additional filter is required (costs about 25 €/direction). &lt;br /&gt;
*More information is available at [http://forum.micasaverde.com/index.php?topic=3359.msg16142#msg16142 Link]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that work'''  ===&lt;br /&gt;
&lt;br /&gt;
See [http://wiki.micasaverde.com/index.php/IP_Cameras IP Cameras] for a more comprehensive and up to date list &lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC54GCA &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive camera with moderate image quality. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC210 &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and pan/tilt ability. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC80N &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi?size=2&amp;amp;amp;quality=1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and wireless N. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera. &lt;br /&gt;
Size can be (160 x 120 = 1,320 x 240 = 2,640 x 480 = 3) and Quality can be (Very High= 1,High= 2,Normal= 3,Low= 4,Very Low= 5) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| iCamView &lt;br /&gt;
| IP Camera Server &lt;br /&gt;
| iCV-22, iCV-32 &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=1&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=2&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich IP camera server, suports up to two compatible USB cameras, optional WiFi support, USB storage, USB hubs, motion; works with range of cameras, see icamview.co.uk. Excellent modular solution. They do ship to North America.&lt;br /&gt;
|-&lt;br /&gt;
| SmartHome.com.au &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Z~Series Wireless Camera &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| tmpfs/auto.jpg &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Inexpensive IP security camera designed for the Australian and New Zealand Z-Wave users, but shipping world wide.&lt;br /&gt;
|-&lt;br /&gt;
| [http://global.level1.com LevelOne] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WCS-2030 &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| cgi-bin/video.jpg &lt;br /&gt;
| [http://reviews.cnet.com/search-results/levelone-camcon-wcs-2030/1707-5_7-31972011.html CNET review] &lt;br /&gt;
| An inexpensive IP camera with good image quality. Can be connected wired or wirelessly. Most LevelOne cameras use the same path for the JPEG image, so most of their line (both low and high end) should be compatible. Video and audio also stream over RTSP, which can be customized through the camera's web interface.&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Voyager I &lt;br /&gt;
| firmware 2.02 and above &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive&amp;amp;nbsp;IP&amp;amp;nbsp;camera that is very feature rich, has good image quality, night vision capabilities, motion detection, two-way audio, video streaming over TCP, UDP, or HTTP, and other configurable features. In firmware version 2.02, Asante added the capability to retrieve an image via a URL (however, it is delayed by 3 seconds). Offers a full-featured web interface in IE using an ActiveX plug-in (limited capabilites in other browsers).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Alarm Panels  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Model(s) &lt;br /&gt;
! Required module &lt;br /&gt;
! Plugin &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| DSC &lt;br /&gt;
| &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=1 PowerSeries PC1616] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=2 PowerSeries PC1832] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=3 PowerSeries PC1864]&lt;br /&gt;
&lt;br /&gt;
| [http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=22 IT-100] or [https://www.eyez-on.com/EZMAIN/envisalink2ds.php Envisalink IP170/2DS] &lt;br /&gt;
| [http://code.mios.com/trac/mios_dscalarmpanel/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Elk &lt;br /&gt;
| &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_2981420/M1_Gold_Cross_Platform_Control%C2%AE M1 Gold] &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_3127911/M1EZ8_Cross_Platform_Control%C2%AE M1EZ8]&lt;br /&gt;
&lt;br /&gt;
| The M1EZ8 panel requires the [http://www.elkproducts.com/_webapp_2981423/elk-m1ez8msi__m1ez8_main_serial_interface ELK-M1EZ8MSI] Main Serial Port Interface. &lt;br /&gt;
| [http://code.mios.com/trac/mios_elk-alarm-panel/wiki/WikiStart Link] &lt;br /&gt;
| You can use the ELK-M1XEP Ethernet Interface to connect the panels to Vera on the Ethernet port.&lt;br /&gt;
|-&lt;br /&gt;
| GE Security / Interlogix / Caddx &lt;br /&gt;
| &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-4] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-6] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8E]&lt;br /&gt;
&lt;br /&gt;
| [http://utcfssecurityproducts.com/ProductsAndServices/Pages/NX-584.aspx NX-584] &lt;br /&gt;
| [http://code.mios.com/trac/mios_caddxnx584/wiki/WikiStart Link] &lt;br /&gt;
| NetworX NX-8E already has a RS-232 interface, so it doesn't require the NX-584 module.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128BPT, VISTA-128BPE, VISTA-128FBP, VISTA-250BP, VISTA-250BPT, VISTA-250BPE and VISTA-250FBP &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128FBP, VISTA-250BP, and VISTA-250FBP panels require the [http://www.security.honeywell.com/me/intrusion/products/exp/ac/138478.html 4100SM] module. &lt;br /&gt;
| [http://code.mios.com/trac/mios_ademco-panels-plugin/wiki/WikiStart Link] &lt;br /&gt;
| If your Vista panel is not on this list, look at the next row.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| 10SE, 20SE, 10P, 15P, 20P, 50P, etc. &lt;br /&gt;
| [http://www.nutech.com/online-store/18.html AD2USB] &lt;br /&gt;
| [http://code.mios.com/trac/mios_vista-alarm-panel-ad2usb/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paradox &lt;br /&gt;
| &lt;br /&gt;
*Digiplex DGP-848 &lt;br /&gt;
*EVO48 &lt;br /&gt;
*[http://www.paradox.com/Products/default.asp?CATID=7 EVO192]&lt;br /&gt;
&lt;br /&gt;
| [http://www.paradox.com/Products/default.asp?CATID=7&amp;amp;SUBCATID=75&amp;amp;PRD=234 PRT3 Integration Module] &lt;br /&gt;
| [http://code.mios.com/trac/mios_paradox-alarm/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Visonic &lt;br /&gt;
| &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMax PowerMax] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPlus PowerMax+] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxComplete PowerMaxComplete] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPro PowerMaxPro]&lt;br /&gt;
&lt;br /&gt;
| RS-232 Interface Module &lt;br /&gt;
| [http://code.mios.com/trac/mios_visonic-powermax/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Misc  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Door Bell&amp;lt;br&amp;gt; &lt;br /&gt;
| UTSE03A&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| When added to a third party Z-Wave controller there is no way to associate the push button with the door bell itself, so the push button has no use. In order to make it work, the door bell needs to be associated with a regular Z-Wave switch either by creating associations or by creating a scene.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Supported_Hardware</id>
		<title>Supported Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Supported_Hardware"/>
				<updated>2013-02-05T13:16:41Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a page for Supported Z-Wave devices. &lt;br /&gt;
&lt;br /&gt;
Alternative hardware pages exist for &lt;br /&gt;
&lt;br /&gt;
*[[ZWave Add Controller|Z-Wave Handheld Remote Controls, Gateways and Scene Controllers]] &lt;br /&gt;
*[[IP Cameras|IP Enabled Cameras]] &lt;br /&gt;
*[[Insteon Supported Hardware|Insteon/X10 devices]] &lt;br /&gt;
*USB, or USB-Serial, [[Serial Supported Hardware|Interface devices]]&lt;br /&gt;
&lt;br /&gt;
In general, any device with the Z-Wave logo should work with Vera. A list of tested Z-Wave devices is below, with specific notes for each type of device. This is a wiki, so feel free to add to the page. To learn about Z-Wave routing and fixing routing problems see: [[Heal Network]] &lt;br /&gt;
&lt;br /&gt;
== Hardware Reported to Work  ==&lt;br /&gt;
&lt;br /&gt;
*We strongly encourage users to list any and all products they tested and installed. &lt;br /&gt;
*If a product works but you did not like it, please list it anyway. It may be the only product available to some users.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT! The devices listed here have been added by installers, technicians and users like yourself. Results may vary upon installations. MiCasaVerde does not guarantee operation and compatibility with your installation. The listed devices were found to work with their specific installation. Mixing different series and brands of equipment is not guaranteed in any way to work with other series and brands. It is very likely that users have not fully tested all features of the devices, so it is possible that a device listed here as compatible, will not prove compatible with your hardware. If you are editing this wiki DO NOT REMOVE a listed working device if it hasn't worked for you. Seek help to get the device to work under your individual circumstance. If you are adding to this wiki, please provide links to data for the device and add any tips you feel may benefit someone wanting to implement the device into an installation.''' &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Lighting Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;width: 1220px; height: 491px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Dimmer Switch &lt;br /&gt;
| ZDW120 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, easy to install, LED is a very bright blue....can be programmed to be off when the light is off or on. &amp;quot;series 200&amp;quot; model supports Group Associations 2 &amp;amp;amp; 3. (The older &amp;quot;series 100&amp;quot; supported Groups 1-4, but is no longer available.)&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| ZDW103 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, LED is a very bright blue....can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-wire Dimmer Switch &lt;br /&gt;
| ZDW232 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jul 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5198 Newb] &lt;br /&gt;
| Wall-mount, 230v, 500W, 2-Wire (no neutral), works well. Can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Relay Switch &lt;br /&gt;
| ZRW113 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Controls Florescent Lamps very well! No humming at all.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Companion Switch &lt;br /&gt;
| AS101 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, The trick here is to install this device where the power comes in.&lt;br /&gt;
|-&lt;br /&gt;
| ACT&amp;lt;br&amp;gt; &lt;br /&gt;
| 3-way Dimmer Switch, 2 rocker&amp;lt;br&amp;gt; &lt;br /&gt;
| ZDM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZDM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| Dimmer, Wall-mount, 230v, 500W,&amp;lt;br&amp;gt;3-way, 3 Wire, 2 rocker&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Relay Switch, 2 rocker &lt;br /&gt;
| ZRM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZRM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Relay, Wall-mount, 230v, 6A,&amp;lt;br&amp;gt; 3-way, 3 Wire, 2 rocker - '''Status polling does not work with Vera'''&amp;lt;br&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cooper &lt;br /&gt;
| Accessory (3-way slave) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[Cooper Accessory Slave]]&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 2 wire dimmer &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 05431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall switch.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 06431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| The newer in-wall Düwi switch (also designated Düwi.me), marked with a green sticker on the housing. This switch supports status push.&lt;br /&gt;
|-&lt;br /&gt;
| Fibar &lt;br /&gt;
| 3 wire double switch &lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| This device is designed to use (and be mounted behind) existing light switches. Supports status push. Also available: single switch, dimmer, blind control.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Lamp Module w/Dimmer &lt;br /&gt;
| 45602 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with most incandescent bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Fluorescent Light &amp;amp;amp; Appliance Module &lt;br /&gt;
| 45603 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Outdoor Switch Module &lt;br /&gt;
| 45604 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off/Dim Dimmer Switch &lt;br /&gt;
| 45606 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45606-Manual-Eng.pdf Link] [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Dimmer-Switch-63p555.htm Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Discontinued, See 45612. Requires neutral lead. Works fine with most bulbs. With Philips AmbientLED, flickers at &amp;amp;gt;95% brightness. Supports beaming. Flickers at low-levels with dimmable LED.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| 45607 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off Switch &lt;br /&gt;
| 45609 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Auxiliary Switch &lt;br /&gt;
| 45610 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No zwave function; for 3 and 4-way switching kits&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 2-way Rocker Dimmer &lt;br /&gt;
| 45612 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2012 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No neutral required; replaces 45606&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Dimmer Kit &lt;br /&gt;
| 45613 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Possible error in 45613 manual diagrams, see 45610 diagrams&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Switch Kit &lt;br /&gt;
| 45614 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Relay Switch Adapter &lt;br /&gt;
| RAone SmartPower &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartpower_zw_tech_doc.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Dimmer Switch Adapter &lt;br /&gt;
| RAone SmartDimmer &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartdimmer-00110001-tech.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA03C &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Sept 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha03.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5852 JonnyO] &lt;br /&gt;
| Easy to Instal, supports dimming&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Screw-in Lamp Module &lt;br /&gt;
| HA05C &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Easy install, easy to pair with Vera!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 300 watt dimmer &lt;br /&gt;
| HA06 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha06.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable Dimmer Switch. incandescent/halogen only. Loads for 300 watts or less no neutral required. Great for dimming one bulb.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Switch &lt;br /&gt;
| HA18 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha18.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Affordable 3-way Switch&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| HA20 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha20.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-460-intermatic-homesettings-ha20c-3-way-in-wall-switch-dimmer.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable 3-way 600W dimmer&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRI06-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305784&amp;amp;section=25501 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| VRCS4-MRX &lt;br /&gt;
| 7,2,67,0,2 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well, pair as per [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller], then again holding &amp;quot;2&amp;quot; and &amp;quot;4&amp;quot; to pair the Switch (&amp;quot;Load&amp;quot;) itself.&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRM10-1LX &lt;br /&gt;
| 1 &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=104&amp;amp;products_id=170 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000ZKM7I8/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=65 mark-hc] &lt;br /&gt;
| This is a high quality dimmer geared towards high-end installations&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1L &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| May 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| (Coordinating Remote??)&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LZ &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Light almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for dimmer inserts &lt;br /&gt;
| 5026xx, 5036xx, 5046xx &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5026_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for switch inserts &lt;br /&gt;
| 5024xx, 5034xx, 5044xx &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/5024xx_5034xx_5044xx_Sensorflaeche4pin_CONNECT_INT.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Single Radio flush-mounted receiver &lt;br /&gt;
| 507001 &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5070_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, flush-mounted &lt;br /&gt;
| 507501, 507601 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5075_581_00_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 1-gang universal dimmer, flush-mounted &lt;br /&gt;
| 507900 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5079_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Monster &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| IWC600 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is the same as the Leviton scene controller. Follow these instructions: [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller]&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| RP200 &lt;br /&gt;
| 1.0 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/products/Productdetail3.asp?StyleID=139&amp;amp;FinishID=12&amp;amp;FunctionID=77 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Works well&amp;lt;br&amp;gt;Sold with Schlage LiNK lock system&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Plug &amp;amp;amp; Receptacle Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1677&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRR150W &lt;br /&gt;
| 2.2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Works like a champ! Easy to Install. One receptacle RF controlled, the other is hot&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in switch.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZDP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Cooper Wiring Devices &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| RFTR9505-T &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://solutions.cooperwiringdevices.com/common/brands.cfm?pg=Detail&amp;amp;brandName=CWD%20Technology&amp;amp;category=Aspire%20RF%20Lighting%20Control%20System%3A%20Receptacles&amp;amp;id=16772 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| One receptacle is RF controlled, the other is hot. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Duwi &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;05437&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| Feb 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.com/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| ezhome &lt;br /&gt;
| High quality Plug-in switch, Easy install and works well&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN157-2&amp;lt;/span&amp;gt; &lt;br /&gt;
| 4,2,64,1,2 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=501&amp;amp;CateUIDList=0,83 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN158&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Works well. Supports status push and power metering&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| In-wall Duplex Receptacle &lt;br /&gt;
| 45605 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| US &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Duplex-Receptacle-63p554.htm Link] [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45605-Manual-Eng.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Easy. Works.&lt;br /&gt;
|-&lt;br /&gt;
| Home Manageables &lt;br /&gt;
| Lamp Module (Dimming) &lt;br /&gt;
| HM-LM001 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| 200W maximum load, 25W minimum load &lt;br /&gt;
| [http://www.homemanageables.com/manuals/HM-LM001%20Manual%20Final.pdf Link] &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Support for incandescent loads only. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| CA3500 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=105&amp;amp;products_id=97 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000U3XYPA/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is a decent, but expensive solution for in-wall receptacles. One receptacle RF controlled, the other is hot.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA02C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=108&amp;amp;products_id=98 Link] &lt;br /&gt;
| [http://www.amazon.com/Intermatic-HA02C-Settings-Heavy-Duty-Appliance/dp/B000BJSDZO/ref=sr_1_3?ie=UTF8&amp;amp;qid=1227467418&amp;amp;sr=8-3 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Seems to work well&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Outdoor Module &lt;br /&gt;
| HA04C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Easy to Install.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, plug adapter, 2000 W &lt;br /&gt;
| 508519 &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5085_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Monster Central &lt;br /&gt;
| 1800W Appliance Module &lt;br /&gt;
| ML-LAS1000 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Jan 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.monstercable.com/productdisplay.asp?pin=3164 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Easy to Install. I use this as a ZWave signal repeater. Appears to be a badge-engineering of [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=309748&amp;amp;section=25542 Leviton VRP15-1LW]&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA-02L&amp;lt;br&amp;gt;(HA-02WD) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indooor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-02WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Note: link is to HA-02WD manual.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA-03WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-03WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Outdoor Lighting Module &lt;br /&gt;
| HA-04WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2012 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-04WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Thermostat Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| WDTC-20 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/WDTC-20---Z-Wave-Thermostat-Wayne-Dalton-P599C38.aspx Link] &lt;br /&gt;
| [http://www.amazon.com/Wayne-Dalton-Corporation-Z-Wave-Thermostat/dp/B001F8QKYQ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Has 2 inclusion modes: 1) press and release the bind button and the STAT will be included as a thermostat and works with Vera, 2) press and hold the bind button and it will be added as a binary switch for compatibility with old, non-compliant remotes. If it's added in the wrong mode, remove it and re-add it. Works great simple to use!&lt;br /&gt;
|-&lt;br /&gt;
| HAI &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| RC-80BZ &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homeauto.com Link] &lt;br /&gt;
| [http://www.homeauto.com/Downloads/Products/Omnistat/rcr80.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, Hold button feature not able to control by Vera at this time. Priced above 200.00. Has internal setback programs. Works great.&lt;br /&gt;
|-&lt;br /&gt;
| RCS &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| TZ43 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, much more feature rich the the WDTC-20 but comes with a hefty price tag ($214.95). Wish Vera could use all the features in this Thermostat! '''Note:'''''You need to set the thermostat to show the temperature, on its display, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Schlage/Trane &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| Trane &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.link.schlage.com/Products/Pages/Thermostat.aspx Link] &lt;br /&gt;
| [http://www.trane.com/Residential/Products/Thermostats Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| It's the same thermostat as the RCS TZ43 and it has the same issue: it's accepting &amp;quot;Set Temp Point&amp;quot; commands only in the measurement unit that is displayed on its screen. '''Note:'''''You need to set the thermostat to show the temperature, on its screen, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| InTouch &lt;br /&gt;
| CA8900 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-663-intermatic-intouch-ca8900-z-wave-digital-thermostat.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Looks very similar to the Wayne Dalton WDTC-20 listed here. works great, simple to use&lt;br /&gt;
|-&lt;br /&gt;
| Danfoss &lt;br /&gt;
| Radiator thermostat &lt;br /&gt;
| RA PLUS-w &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://raplusw.com/Content/E962FC0B-6461-4319-82FE-3E1E765142CF.html Link] [http://raplusw.com/PCMPDF/Data%20sheet%20RA-PLUS-w_02.pdf Link] &lt;br /&gt;
| [http://www.eurox10.com/Product/ZWave/Actuators/ZWDNF_RA_PLUS-W.htm Link] [http://www.eurox10.com] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See: [[Danfoss Thermostat]] for installation instructions&amp;lt;br&amp;gt;If the device cannot be configured at the final location, move the device closer to Vera and try again (this device might require a direct connection to Vera for configuration).&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT22 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.radiothermostat.com/documents/CT-22-Operation-27aug10.pdf Link] [http://www.radiothermostat.com/documents/CT-22-Installation-27aug10.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| &lt;br /&gt;
To include the thermostat into your network, you just have to install the USNAP module in the thermostat while Vera is in Include mode. To exclude the thermostat from your network, you just have to install the USNAP module in the thermostat while Vera is in Exclude mode.You can watch a video about how to install it [http://www.youtube.com/watch?v=M9VNuHGENP0 here]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT30 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvflorin&amp;lt;br&amp;gt; &lt;br /&gt;
| If you experience a problem with other Z-Wave devices, see this [http://wiki.micasaverde.com/images/3/39/RTCOA_Z-Wave_v7.4_workaround.zip note].&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Remotec &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| ZTS-100 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| To include the thermostat into your network, hold the home button for 2 seconds until the display says 'noc', which means 'no connection', then press the Prog button and the readout will say 'Srh'. If it doesn't say 'noc' or if the radio icon is visible in the upper right corner, the thermostat is already included and must be removed/reset. To remove/reset the thermostat hold the home button for 2 seconds until the display says 'done', then press the Prog button.&lt;br /&gt;
|-&lt;br /&gt;
| Horstmann &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| HRT4-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4-ZWweb.pdf Link] [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf Link] &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf &amp;lt;br&amp;gt;] &lt;br /&gt;
| Daniel &lt;br /&gt;
| After you include the thermostat in Vera's network, you will have to make some configuration changes in order for it to report the temperature change. See: [[HRT4-ZW]] for more information.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Sensors'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1369&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| ZIR000 / ZIR010 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU (ZIR010) or US (ZIR000) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR000_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR000_instr.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR010_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR010_instr.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Remove the cover, pair to Vera's dongle by using the push-button on the left of the circuit board. Vera must configure it to work, and it can only be configured within less of a minute (30 sec best) of inserting the batteries. With Vera's dongle removed, remove/reinsert the batteries, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs &lt;br /&gt;
| 3-in-1 sensor (light/humidity/temperature) &lt;br /&gt;
| MultiSensor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.aeon-labs.com/site/public/lib/download.php?type=s&amp;amp;f=29 Specs] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Pair to Vera by using the push-button. Vera must configure it to work, and it can only be configured within 10 minutes of inserting the batteries.&lt;br /&gt;
|-&lt;br /&gt;
| Express Controls aka HomeSeer &lt;br /&gt;
| 3-in-1 sensor (light/temperature/motion) &lt;br /&gt;
| HSM100 / EZMotion &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[ExpressControls3in1]]&amp;lt;br&amp;gt;If the motion sensor does not work right after inclusion and configuration, remove the batteries for a few seconds.&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Hawking/Home Manageables &lt;br /&gt;
| Door/window sensor &lt;br /&gt;
| SM103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=355&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110873R01_SM103_-ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Pair using the intrusion button. The sensor will accept configuration within a few minutes of the initial pairing, or of pressing the intrusion button on the back even after it's paired. Pair the device, or if it's already paired, press the intrusion button, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page. NOTE: There is some confusion about the orientation of the sensor. The main sensor body has a back (where the intrusion is), a front (where the logo and LED is), and the 2 other surfaces, one of which has a curved edge, and the other is flat. The magnet needs to go against the flat surface. And the flat surface on the magnet should be as close as possible to the flat surface on the sensor, lined up in the middle so the line which passes through the LED lines up with the sensor. &lt;br /&gt;
Note: In case the inclusion/exclusion fails you should remove/reinsert the batteries from the sensor and within a few seconds the sensor should be automatically detected. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Home Manageables &lt;br /&gt;
| Humidity + Temperature sensor &lt;br /&gt;
| HM-TS001 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jan 2010 (requires version 1.1.0 or greater) &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.asihome.com/ASIshop/product_info.php?products_id=3946 Link] [http://www.homeseer.com/pdfs/guides/HM_TD001.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| micasaverde &lt;br /&gt;
| Pair or unpair the device by tapping the CF button 3 times very quickly. Once it's paired and shows up in the UI as a generic device, press the CF button 3 times again quickly to make it wakeup and get configured. Then it will correctly be identified as 3 devices (combo device + temperature + humidity).&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Motion Detector &lt;br /&gt;
| SP103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=354&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110874R01_SP103_%20-%20ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Fortrezz &lt;br /&gt;
| Water /Freeze &lt;br /&gt;
| WWA-001 &lt;br /&gt;
| &amp;amp;nbsp;?????? &lt;br /&gt;
| US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.Fortrezz.com Link] [http://www.fortrezz.com/resources/WWA_manual_01May2009.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Zmistro &lt;br /&gt;
| Works great I would place a few in your house. Bathrooms, laundry , kitchen , basement. Great product!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| CA-9000 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthomeusa.com/Products/CA9000/manuals/CA9000.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Aaron &lt;br /&gt;
| This device has limited functionality as a sensor. It can only be used to turn on and off a light directly by setting an association, which Vera supports. It does not fire events, so you cannot use it as an event on a scene.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 4-gang radio transmitter, flush-mounted &lt;br /&gt;
| 506004 &lt;br /&gt;
| 2,2,27,1,4 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5060_581_02_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Note: There is proprietary functionality here. Support will be added soon. &lt;br /&gt;
Quite complex device; partially supported by Vera; can be used as a window/door sensor (as of firmware 1.0.900) ... &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs (Aeotec)&amp;lt;br&amp;gt; &lt;br /&gt;
| 4 in 1 Sensor (Multisensor)&amp;lt;br&amp;gt; &lt;br /&gt;
| DSB05106-ZWUS &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://aeotec.com/z-wave-sensor/47-multisensor-manual.html Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvadi&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://wiki.micasaverde.com/index.php/Aeon_4in1 Link]&amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Door Locks'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| BE369 (deadbolt) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Mid 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/link/product_tour/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Read the instructions here: [[Schlage Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Kwikset &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here:[[Kwikset Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Yale &lt;br /&gt;
| Deadbolt &lt;br /&gt;
| Real Living &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Quickstart%2018JUL11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Instructions%2023AUG11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here: [[Yale Lock]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Drapes/Blinds'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DBMZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/dc_mot_ctrls/z-wave/dbmz/dbmz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| ABMHZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/int_ac_mot_ctrls/z-wave/abmhz/abmhz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/AC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| AC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/DC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Relay controls'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Contactor control box &lt;br /&gt;
| CA3750 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.intouchcontrols.com/~/media/Files/InTouchControls/Products/Spec%20Sheets/CA3750.ashx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Multi-instance class supported for this device. Vera is able to control each of the 2 relays independently if desired. please note unit shows as three switches this is a bug with Intermatic not a real issue.You can check the box in devices to not show the second listing of the first relay in &amp;quot;Dasboard&amp;quot; You can control heavy loads like a water heater ,pool pump motor/s. great device&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Window Coverings'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 5025xx, 5035xx, 5045xx &lt;br /&gt;
| 6,2,27,2,3 and 6,2,27,2,4 &lt;br /&gt;
| EU &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5025_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work. GUI buttons do not work with Luup release 1.0.843 and 1.0.862 (fixed with Luup release 1.0.879).&amp;lt;br&amp;gt;Workaround: Use a Luup Scene with the following code:&amp;lt;tt&amp;gt;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&amp;lt;tt&amp;gt;local lul_arguments = {}&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_arguments[&amp;quot;newTargetValue&amp;quot;]=&amp;quot;0&amp;quot;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_resultcode,lul_resultstring,lul_job,lul_returnarguments = luup.call_action(&amp;quot;urn:upnp-org:serviceId:SwitchPower1&amp;quot;,&amp;quot;SetTarget&amp;quot;,lul_arguments,6) &amp;lt;/tt&amp;gt; Replace &amp;quot;6&amp;quot; with your device number, replace &amp;quot;0&amp;quot; with &amp;quot;1&amp;quot; for inverse action. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Duewi &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 054368 &lt;br /&gt;
| 6,2,51,1,0 &lt;br /&gt;
| EU &lt;br /&gt;
| Jun 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.de/index.php?productid=37344 Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Lutz &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Some additional observations by Ap15e (Vera V1, firmware 1.0.979): &lt;br /&gt;
*GUI button 'Stop' and corresponding UPnP service does not work. &lt;br /&gt;
*GUI button 'Up' moves the shutter down, GUI button 'Down' moves the shutter up ... &lt;br /&gt;
*After adjusting the running times even the slide bar seems to work! &lt;br /&gt;
*I got a report from a user that the düwi device may fail due to interference from the shutter motor. In this case an additional filter is required (costs about 25 €/direction). &lt;br /&gt;
*More information is available at [http://forum.micasaverde.com/index.php?topic=3359.msg16142#msg16142 Link]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that work'''  ===&lt;br /&gt;
&lt;br /&gt;
See [http://wiki.micasaverde.com/index.php/IP_Cameras IP Cameras] for a more comprehensive and up to date list &lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC54GCA &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive camera with moderate image quality. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC210 &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and pan/tilt ability. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC80N &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi?size=2&amp;amp;amp;quality=1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and wireless N. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera. &lt;br /&gt;
Size can be (160 x 120 = 1,320 x 240 = 2,640 x 480 = 3) and Quality can be (Very High= 1,High= 2,Normal= 3,Low= 4,Very Low= 5) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| iCamView &lt;br /&gt;
| IP Camera Server &lt;br /&gt;
| iCV-22, iCV-32 &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=1&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=2&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich IP camera server, suports up to two compatible USB cameras, optional WiFi support, USB storage, USB hubs, motion; works with range of cameras, see icamview.co.uk. Excellent modular solution. They do ship to North America.&lt;br /&gt;
|-&lt;br /&gt;
| SmartHome.com.au &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Z~Series Wireless Camera &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| tmpfs/auto.jpg &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Inexpensive IP security camera designed for the Australian and New Zealand Z-Wave users, but shipping world wide.&lt;br /&gt;
|-&lt;br /&gt;
| [http://global.level1.com LevelOne] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WCS-2030 &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| cgi-bin/video.jpg &lt;br /&gt;
| [http://reviews.cnet.com/search-results/levelone-camcon-wcs-2030/1707-5_7-31972011.html CNET review] &lt;br /&gt;
| An inexpensive IP camera with good image quality. Can be connected wired or wirelessly. Most LevelOne cameras use the same path for the JPEG image, so most of their line (both low and high end) should be compatible. Video and audio also stream over RTSP, which can be customized through the camera's web interface.&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Voyager I &lt;br /&gt;
| firmware 2.02 and above &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive&amp;amp;nbsp;IP&amp;amp;nbsp;camera that is very feature rich, has good image quality, night vision capabilities, motion detection, two-way audio, video streaming over TCP, UDP, or HTTP, and other configurable features. In firmware version 2.02, Asante added the capability to retrieve an image via a URL (however, it is delayed by 3 seconds). Offers a full-featured web interface in IE using an ActiveX plug-in (limited capabilites in other browsers).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Alarm Panels  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Model(s) &lt;br /&gt;
! Required module &lt;br /&gt;
! Plugin &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| DSC &lt;br /&gt;
| &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=1 PowerSeries PC1616] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=2 PowerSeries PC1832] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=3 PowerSeries PC1864]&lt;br /&gt;
&lt;br /&gt;
| [http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=22 IT-100] or [https://www.eyez-on.com/EZMAIN/envisalink2ds.php Envisalink IP170/2DS] &lt;br /&gt;
| [http://code.mios.com/trac/mios_dscalarmpanel/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Elk &lt;br /&gt;
| &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_2981420/M1_Gold_Cross_Platform_Control%C2%AE M1 Gold] &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_3127911/M1EZ8_Cross_Platform_Control%C2%AE M1EZ8]&lt;br /&gt;
&lt;br /&gt;
| The M1EZ8 panel requires the [http://www.elkproducts.com/_webapp_2981423/elk-m1ez8msi__m1ez8_main_serial_interface ELK-M1EZ8MSI] Main Serial Port Interface. &lt;br /&gt;
| [http://code.mios.com/trac/mios_elk-alarm-panel/wiki/WikiStart Link] &lt;br /&gt;
| You can use the ELK-M1XEP Ethernet Interface to connect the panels to Vera on the Ethernet port.&lt;br /&gt;
|-&lt;br /&gt;
| GE Security / Interlogix / Caddx &lt;br /&gt;
| &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-4] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-6] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8E]&lt;br /&gt;
&lt;br /&gt;
| [http://utcfssecurityproducts.com/ProductsAndServices/Pages/NX-584.aspx NX-584] &lt;br /&gt;
| [http://code.mios.com/trac/mios_caddxnx584/wiki/WikiStart Link] &lt;br /&gt;
| NetworX NX-8E already has a RS-232 interface, so it doesn't require the NX-584 module.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128BPT, VISTA-128BPE, VISTA-128FBP, VISTA-250BP, VISTA-250BPT, VISTA-250BPE and VISTA-250FBP &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128FBP, VISTA-250BP, and VISTA-250FBP panels require the [http://www.security.honeywell.com/me/intrusion/products/exp/ac/138478.html 4100SM] module. &lt;br /&gt;
| [http://code.mios.com/trac/mios_ademco-panels-plugin/wiki/WikiStart Link] &lt;br /&gt;
| If your Vista panel is not on this list, look at the next row.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| 10SE, 20SE, 10P, 15P, 20P, 50P, etc. &lt;br /&gt;
| [http://www.nutech.com/online-store/18.html AD2USB] &lt;br /&gt;
| [http://code.mios.com/trac/mios_vista-alarm-panel-ad2usb/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paradox &lt;br /&gt;
| &lt;br /&gt;
*Digiplex DGP-848 &lt;br /&gt;
*EVO48 &lt;br /&gt;
*[http://www.paradox.com/Products/default.asp?CATID=7 EVO192]&lt;br /&gt;
&lt;br /&gt;
| [http://www.paradox.com/Products/default.asp?CATID=7&amp;amp;SUBCATID=75&amp;amp;PRD=234 PRT3 Integration Module] &lt;br /&gt;
| [http://code.mios.com/trac/mios_paradox-alarm/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Visonic &lt;br /&gt;
| &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMax PowerMax] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPlus PowerMax+] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxComplete PowerMaxComplete] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPro PowerMaxPro]&lt;br /&gt;
&lt;br /&gt;
| RS-232 Interface Module &lt;br /&gt;
| [http://code.mios.com/trac/mios_visonic-powermax/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Misc  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Door Bell&amp;lt;br&amp;gt; &lt;br /&gt;
| UTSE03A&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| When added to a third party Z-Wave controller there is no way to associate the push button with the door bell itself, so the push button has no use. In order to make it work, the door bell needs to be associated with a regular Z-Wave switch either by creating associations or by creating a scene.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Supported_Hardware</id>
		<title>Supported Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Supported_Hardware"/>
				<updated>2013-02-05T13:15:58Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a page for Supported Z-Wave devices. &lt;br /&gt;
&lt;br /&gt;
Alternative hardware pages exist for &lt;br /&gt;
&lt;br /&gt;
*[[ZWave Add Controller|Z-Wave Handheld Remote Controls, Gateways and Scene Controllers]] &lt;br /&gt;
*[[IP Cameras|IP Enabled Cameras]] &lt;br /&gt;
*[[Insteon Supported Hardware|Insteon/X10 devices]] &lt;br /&gt;
*USB, or USB-Serial, [[Serial Supported Hardware|Interface devices]]&lt;br /&gt;
&lt;br /&gt;
In general, any device with the Z-Wave logo should work with Vera. A list of tested Z-Wave devices is below, with specific notes for each type of device. This is a wiki, so feel free to add to the page. To learn about Z-Wave routing and fixing routing problems see: [[Heal Network]] &lt;br /&gt;
&lt;br /&gt;
== Hardware Reported to Work  ==&lt;br /&gt;
&lt;br /&gt;
*We strongly encourage users to list any and all products they tested and installed. &lt;br /&gt;
*If a product works but you did not like it, please list it anyway. It may be the only product available to some users.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT! The devices listed here have been added by installers, technicians and users like yourself. Results may vary upon installations. MiCasaVerde does not guarantee operation and compatibility with your installation. The listed devices were found to work with their specific installation. Mixing different series and brands of equipment is not guaranteed in any way to work with other series and brands. It is very likely that users have not fully tested all features of the devices, so it is possible that a device listed here as compatible, will not prove compatible with your hardware. If you are editing this wiki DO NOT REMOVE a listed working device if it hasn't worked for you. Seek help to get the device to work under your individual circumstance. If you are adding to this wiki, please provide links to data for the device and add any tips you feel may benefit someone wanting to implement the device into an installation.''' &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Lighting Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;width: 1220px; height: 491px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Dimmer Switch &lt;br /&gt;
| ZDW120 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, easy to install, LED is a very bright blue....can be programmed to be off when the light is off or on. &amp;quot;series 200&amp;quot; model supports Group Associations 2 &amp;amp;amp; 3. (The older &amp;quot;series 100&amp;quot; supported Groups 1-4, but is no longer available.)&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| ZDW103 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, LED is a very bright blue....can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-wire Dimmer Switch &lt;br /&gt;
| ZDW232 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jul 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5198 Newb] &lt;br /&gt;
| Wall-mount, 230v, 500W, 2-Wire (no neutral), works well. Can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Relay Switch &lt;br /&gt;
| ZRW113 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Controls Florescent Lamps very well! No humming at all.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Companion Switch &lt;br /&gt;
| AS101 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, The trick here is to install this device where the power comes in.&lt;br /&gt;
|-&lt;br /&gt;
| ACT&amp;lt;br&amp;gt; &lt;br /&gt;
| 3-way Dimmer Switch, 2 rocker&amp;lt;br&amp;gt; &lt;br /&gt;
| ZDM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZDM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| Dimmer, Wall-mount, 230v, 500W,&amp;lt;br&amp;gt;3-way, 3 Wire, 2 rocker&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Relay Switch, 2 rocker &lt;br /&gt;
| ZRM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZRM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Relay, Wall-mount, 230v, 6A,&amp;lt;br&amp;gt; 3-way, 3 Wire, 2 rocker - '''Status polling does not work with Vera'''&amp;lt;br&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cooper &lt;br /&gt;
| Accessory (3-way slave) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[Cooper Accessory Slave]]&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 2 wire dimmer &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 05431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall switch.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 06431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| The newer in-wall Düwi switch (also designated Düwi.me), marked with a green sticker on the housing. This switch supports status push.&lt;br /&gt;
|-&lt;br /&gt;
| Fibar &lt;br /&gt;
| 3 wire double switch &lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| This device is designed to use (and be mounted behind) existing light switches. Supports status push. Also available: single switch, dimmer, blind control.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Lamp Module w/Dimmer &lt;br /&gt;
| 45602 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with most incandescent bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Fluorescent Light &amp;amp;amp; Appliance Module &lt;br /&gt;
| 45603 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Outdoor Switch Module &lt;br /&gt;
| 45604 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off/Dim Dimmer Switch &lt;br /&gt;
| 45606 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45606-Manual-Eng.pdf Link] [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Dimmer-Switch-63p555.htm Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Discontinued, See 45612. Requires neutral lead. Works fine with most bulbs. With Philips AmbientLED, flickers at &amp;amp;gt;95% brightness. Supports beaming. Flickers at low-levels with dimmable LED.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| 45607 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off Switch &lt;br /&gt;
| 45609 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Auxiliary Switch &lt;br /&gt;
| 45610 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No zwave function; for 3 and 4-way switching kits&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 2-way Rocker Dimmer &lt;br /&gt;
| 45612 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2012 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No neutral required; replaces 45606&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Dimmer Kit &lt;br /&gt;
| 45613 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Possible error in 45613 manual diagrams, see 45610 diagrams&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Switch Kit &lt;br /&gt;
| 45614 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Relay Switch Adapter &lt;br /&gt;
| RAone SmartPower &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartpower_zw_tech_doc.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Dimmer Switch Adapter &lt;br /&gt;
| RAone SmartDimmer &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartdimmer-00110001-tech.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA03C &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Sept 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha03.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5852 JonnyO] &lt;br /&gt;
| Easy to Instal, supports dimming&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Screw-in Lamp Module &lt;br /&gt;
| HA05C &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Easy install, easy to pair with Vera!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 300 watt dimmer &lt;br /&gt;
| HA06 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha06.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable Dimmer Switch. incandescent/halogen only. Loads for 300 watts or less no neutral required. Great for dimming one bulb.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Switch &lt;br /&gt;
| HA18 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha18.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Affordable 3-way Switch&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| HA20 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha20.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-460-intermatic-homesettings-ha20c-3-way-in-wall-switch-dimmer.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable 3-way 600W dimmer&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRI06-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305784&amp;amp;section=25501 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| VRCS4-MRX &lt;br /&gt;
| 7,2,67,0,2 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well, pair as per [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller], then again holding &amp;quot;2&amp;quot; and &amp;quot;4&amp;quot; to pair the Switch (&amp;quot;Load&amp;quot;) itself.&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRM10-1LX &lt;br /&gt;
| 1 &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=104&amp;amp;products_id=170 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000ZKM7I8/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=65 mark-hc] &lt;br /&gt;
| This is a high quality dimmer geared towards high-end installations&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1L &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| May 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| (Coordinating Remote??)&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LZ &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Light almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for dimmer inserts &lt;br /&gt;
| 5026xx, 5036xx, 5046xx &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5026_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for switch inserts &lt;br /&gt;
| 5024xx, 5034xx, 5044xx &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/5024xx_5034xx_5044xx_Sensorflaeche4pin_CONNECT_INT.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Single Radio flush-mounted receiver &lt;br /&gt;
| 507001 &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5070_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, flush-mounted &lt;br /&gt;
| 507501, 507601 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5075_581_00_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 1-gang universal dimmer, flush-mounted &lt;br /&gt;
| 507900 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5079_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Monster &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| IWC600 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is the same as the Leviton scene controller. Follow these instructions: [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller]&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| RP200 &lt;br /&gt;
| 1.0 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/products/Productdetail3.asp?StyleID=139&amp;amp;FinishID=12&amp;amp;FunctionID=77 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Works well&amp;lt;br&amp;gt;Sold with Schlage LiNK lock system&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Plug &amp;amp;amp; Receptacle Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1677&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRR150W &lt;br /&gt;
| 2.2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Works like a champ! Easy to Install. One receptacle RF controlled, the other is hot&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in switch.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZDP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Cooper Wiring Devices &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| RFTR9505-T &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://solutions.cooperwiringdevices.com/common/brands.cfm?pg=Detail&amp;amp;brandName=CWD%20Technology&amp;amp;category=Aspire%20RF%20Lighting%20Control%20System%3A%20Receptacles&amp;amp;id=16772 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| One receptacle is RF controlled, the other is hot. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Duwi &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;05437&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| Feb 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.com/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| ezhome &lt;br /&gt;
| High quality Plug-in switch, Easy install and works well&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN157-2&amp;lt;/span&amp;gt; &lt;br /&gt;
| 4,2,64,1,2 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=501&amp;amp;CateUIDList=0,83 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN158&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Works well. Supports status push and power metering&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| In-wall Duplex Receptacle &lt;br /&gt;
| 45605 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| US &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Duplex-Receptacle-63p554.htm Link] [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45605-Manual-Eng.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Easy. Works.&lt;br /&gt;
|-&lt;br /&gt;
| Home Manageables &lt;br /&gt;
| Lamp Module (Dimming) &lt;br /&gt;
| HM-LM001 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| 200W maximum load, 25W minimum load &lt;br /&gt;
| [http://www.homemanageables.com/manuals/HM-LM001%20Manual%20Final.pdf Link] &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Support for incandescent loads only. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| CA3500 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=105&amp;amp;products_id=97 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000U3XYPA/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is a decent, but expensive solution for in-wall receptacles. One receptacle RF controlled, the other is hot.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA02C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=108&amp;amp;products_id=98 Link] &lt;br /&gt;
| [http://www.amazon.com/Intermatic-HA02C-Settings-Heavy-Duty-Appliance/dp/B000BJSDZO/ref=sr_1_3?ie=UTF8&amp;amp;qid=1227467418&amp;amp;sr=8-3 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Seems to work well&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Outdoor Module &lt;br /&gt;
| HA04C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Easy to Install.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, plug adapter, 2000 W &lt;br /&gt;
| 508519 &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5085_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Monster Central &lt;br /&gt;
| 1800W Appliance Module &lt;br /&gt;
| ML-LAS1000 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Jan 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.monstercable.com/productdisplay.asp?pin=3164 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Easy to Install. I use this as a ZWave signal repeater. Appears to be a badge-engineering of [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=309748&amp;amp;section=25542 Leviton VRP15-1LW]&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA-02L&amp;lt;br&amp;gt;(HA-02WD) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indooor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-02WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Note: link is to HA-02WD manual.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA-03WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-03WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Outdoor Lighting Module &lt;br /&gt;
| HA-04WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2012 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-04WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Thermostat Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| WDTC-20 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/WDTC-20---Z-Wave-Thermostat-Wayne-Dalton-P599C38.aspx Link] &lt;br /&gt;
| [http://www.amazon.com/Wayne-Dalton-Corporation-Z-Wave-Thermostat/dp/B001F8QKYQ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Has 2 inclusion modes: 1) press and release the bind button and the STAT will be included as a thermostat and works with Vera, 2) press and hold the bind button and it will be added as a binary switch for compatibility with old, non-compliant remotes. If it's added in the wrong mode, remove it and re-add it. Works great simple to use!&lt;br /&gt;
|-&lt;br /&gt;
| HAI &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| RC-80BZ &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homeauto.com Link] &lt;br /&gt;
| [http://www.homeauto.com/Downloads/Products/Omnistat/rcr80.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, Hold button feature not able to control by Vera at this time. Priced above 200.00. Has internal setback programs. Works great.&lt;br /&gt;
|-&lt;br /&gt;
| RCS &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| TZ43 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, much more feature rich the the WDTC-20 but comes with a hefty price tag ($214.95). Wish Vera could use all the features in this Thermostat! '''Note:'''''You need to set the thermostat to show the temperature, on its display, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Schlage/Trane &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| Trane &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.link.schlage.com/Products/Pages/Thermostat.aspx Link] &lt;br /&gt;
| [http://www.trane.com/Residential/Products/Thermostats Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| It's the same thermostat as the RCS TZ43 and it has the same issue: it's accepting &amp;quot;Set Temp Point&amp;quot; commands only in the measurement unit that is displayed on its screen. '''Note:'''''You need to set the thermostat to show the temperature, on its screen, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| InTouch &lt;br /&gt;
| CA8900 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-663-intermatic-intouch-ca8900-z-wave-digital-thermostat.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Looks very similar to the Wayne Dalton WDTC-20 listed here. works great, simple to use&lt;br /&gt;
|-&lt;br /&gt;
| Danfoss &lt;br /&gt;
| Radiator thermostat &lt;br /&gt;
| RA PLUS-w &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://raplusw.com/Content/E962FC0B-6461-4319-82FE-3E1E765142CF.html Link] [http://raplusw.com/PCMPDF/Data%20sheet%20RA-PLUS-w_02.pdf Link] &lt;br /&gt;
| [http://www.eurox10.com/Product/ZWave/Actuators/ZWDNF_RA_PLUS-W.htm Link] [http://www.eurox10.com] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See: [[Danfoss Thermostat]] for installation instructions&amp;lt;br&amp;gt;If the device cannot be configured at the final location, move the device closer to Vera and try again (this device might require a direct connection to Vera for configuration).&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT22 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.radiothermostat.com/documents/CT-22-Operation-27aug10.pdf Link] [http://www.radiothermostat.com/documents/CT-22-Installation-27aug10.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| &lt;br /&gt;
To include the thermostat into your network, you just have to install the USNAP module in the thermostat while Vera is in Include mode. To exclude the thermostat from your network, you just have to install the USNAP module in the thermostat while Vera is in Exclude mode.You can watch a video about how to install it [http://www.youtube.com/watch?v=M9VNuHGENP0 here]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT30 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvflorin&amp;lt;br&amp;gt; &lt;br /&gt;
| If you experience a problem with other Z-Wave devices, see this [http://wiki.micasaverde.com/images/3/39/RTCOA_Z-Wave_v7.4_workaround.zip note].&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Remotec &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| ZTS-100 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| To include the thermostat into your network, hold the home button for 2 seconds until the display says 'noc', which means 'no connection', then press the Prog button and the readout will say 'Srh'. If it doesn't say 'noc' or if the radio icon is visible in the upper right corner, the thermostat is already included and must be removed/reset. To remove/reset the thermostat hold the home button for 2 seconds until the display says 'done', then press the Prog button.&lt;br /&gt;
|-&lt;br /&gt;
| Horstmann &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| HRT4-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4-ZWweb.pdf Link] [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf Link] &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf &amp;lt;br&amp;gt;] &lt;br /&gt;
| Daniel &lt;br /&gt;
| After you include the thermostat in Vera's network, you will have to make some configuration changes in order for it to report the temperature change. See: [[HRT4-ZW]] for more information.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Sensors'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1369&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| ZIR000 / ZIR010 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU (ZIR010) or US (ZIR000) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR000_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR000_instr.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR010_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR010_instr.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Remove the cover, pair to Vera's dongle by using the push-button on the left of the circuit board. Vera must configure it to work, and it can only be configured within less of a minute (30 sec best) of inserting the batteries. With Vera's dongle removed, remove/reinsert the batteries, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs &lt;br /&gt;
| 3-in-1 sensor (light/humidity/temperature) &lt;br /&gt;
| MultiSensor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.aeon-labs.com/site/public/lib/download.php?type=s&amp;amp;f=29 Specs] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Pair to Vera by using the push-button. Vera must configure it to work, and it can only be configured within 10 minutes of inserting the batteries.&lt;br /&gt;
|-&lt;br /&gt;
| Express Controls aka HomeSeer &lt;br /&gt;
| 3-in-1 sensor (light/temperature/motion) &lt;br /&gt;
| HSM100 / EZMotion &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[ExpressControls3in1]]&amp;lt;br&amp;gt;If the motion sensor does not work right after inclusion and configuration, remove the batteries for a few seconds.&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Hawking/Home Manageables &lt;br /&gt;
| Door/window sensor &lt;br /&gt;
| SM103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=355&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110873R01_SM103_-ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Pair using the intrusion button. The sensor will accept configuration within a few minutes of the initial pairing, or of pressing the intrusion button on the back even after it's paired. Pair the device, or if it's already paired, press the intrusion button, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page. NOTE: There is some confusion about the orientation of the sensor. The main sensor body has a back (where the intrusion is), a front (where the logo and LED is), and the 2 other surfaces, one of which has a curved edge, and the other is flat. The magnet needs to go against the flat surface. And the flat surface on the magnet should be as close as possible to the flat surface on the sensor, lined up in the middle so the line which passes through the LED lines up with the sensor. &lt;br /&gt;
Note: In case the inclusion/exclusion fails you should remove/reinsert the batteries from the sensor and within a few seconds the sensor should be automatically detected. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Home Manageables &lt;br /&gt;
| Humidity + Temperature sensor &lt;br /&gt;
| HM-TS001 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jan 2010 (requires version 1.1.0 or greater) &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.asihome.com/ASIshop/product_info.php?products_id=3946 Link] [http://www.homeseer.com/pdfs/guides/HM_TD001.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| micasaverde &lt;br /&gt;
| Pair or unpair the device by tapping the CF button 3 times very quickly. Once it's paired and shows up in the UI as a generic device, press the CF button 3 times again quickly to make it wakeup and get configured. Then it will correctly be identified as 3 devices (combo device + temperature + humidity).&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Motion Detector &lt;br /&gt;
| SP103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=354&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110874R01_SP103_%20-%20ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Fortrezz &lt;br /&gt;
| Water /Freeze &lt;br /&gt;
| WWA-001 &lt;br /&gt;
| &amp;amp;nbsp;?????? &lt;br /&gt;
| US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.Fortrezz.com Link] [http://www.fortrezz.com/resources/WWA_manual_01May2009.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Zmistro &lt;br /&gt;
| Works great I would place a few in your house. Bathrooms, laundry , kitchen , basement. Great product!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| CA-9000 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthomeusa.com/Products/CA9000/manuals/CA9000.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Aaron &lt;br /&gt;
| This device has limited functionality as a sensor. It can only be used to turn on and off a light directly by setting an association, which Vera supports. It does not fire events, so you cannot use it as an event on a scene.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 4-gang radio transmitter, flush-mounted &lt;br /&gt;
| 506004 &lt;br /&gt;
| 2,2,27,1,4 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5060_581_02_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Note: There is proprietary functionality here. Support will be added soon. &lt;br /&gt;
Quite complex device; partially supported by Vera; can be used as a window/door sensor (as of firmware 1.0.900) ... &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs (Aeotec)&amp;lt;br&amp;gt; &lt;br /&gt;
| 4 in 1 Sensor (Multisensor)&amp;lt;br&amp;gt; &lt;br /&gt;
| DSB05106-ZWUS &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://aeotec.com/z-wave-sensor/47-multisensor-manual.html Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvadi&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://wiki.micasaverde.com/index.php/Aeon_4in1 Link]&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Fibaro&amp;lt;br&amp;gt; &lt;br /&gt;
| Relay Switch&amp;lt;br&amp;gt; &lt;br /&gt;
| FGS211 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [https://www.uk-automation.co.uk/pdf/FGS211.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| This device is identified as a master device with 1 child device. The master controls the S1 output, the child controls the S2 output.&lt;br /&gt;
|-&lt;br /&gt;
| Fibaro &lt;br /&gt;
| Double Relay Switch&lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://materialy.fibaro.com/instrukcje/relay%20switch%20FGS221%20v1_4%20eng.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| This device is identified as a master device with 1 child device. The master controls the S1 output, the child controls the S2 output.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Door Locks'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| BE369 (deadbolt) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Mid 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/link/product_tour/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Read the instructions here: [[Schlage Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Kwikset &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here:[[Kwikset Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Yale &lt;br /&gt;
| Deadbolt &lt;br /&gt;
| Real Living &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Quickstart%2018JUL11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Instructions%2023AUG11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here: [[Yale Lock]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Drapes/Blinds'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DBMZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/dc_mot_ctrls/z-wave/dbmz/dbmz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| ABMHZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/int_ac_mot_ctrls/z-wave/abmhz/abmhz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/AC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| AC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/DC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Relay controls'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Contactor control box &lt;br /&gt;
| CA3750 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.intouchcontrols.com/~/media/Files/InTouchControls/Products/Spec%20Sheets/CA3750.ashx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Multi-instance class supported for this device. Vera is able to control each of the 2 relays independently if desired. please note unit shows as three switches this is a bug with Intermatic not a real issue.You can check the box in devices to not show the second listing of the first relay in &amp;quot;Dasboard&amp;quot; You can control heavy loads like a water heater ,pool pump motor/s. great device&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Window Coverings'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 5025xx, 5035xx, 5045xx &lt;br /&gt;
| 6,2,27,2,3 and 6,2,27,2,4 &lt;br /&gt;
| EU &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5025_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work. GUI buttons do not work with Luup release 1.0.843 and 1.0.862 (fixed with Luup release 1.0.879).&amp;lt;br&amp;gt;Workaround: Use a Luup Scene with the following code:&amp;lt;tt&amp;gt;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&amp;lt;tt&amp;gt;local lul_arguments = {}&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_arguments[&amp;quot;newTargetValue&amp;quot;]=&amp;quot;0&amp;quot;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_resultcode,lul_resultstring,lul_job,lul_returnarguments = luup.call_action(&amp;quot;urn:upnp-org:serviceId:SwitchPower1&amp;quot;,&amp;quot;SetTarget&amp;quot;,lul_arguments,6) &amp;lt;/tt&amp;gt; Replace &amp;quot;6&amp;quot; with your device number, replace &amp;quot;0&amp;quot; with &amp;quot;1&amp;quot; for inverse action. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Duewi &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 054368 &lt;br /&gt;
| 6,2,51,1,0 &lt;br /&gt;
| EU &lt;br /&gt;
| Jun 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.de/index.php?productid=37344 Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Lutz &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Some additional observations by Ap15e (Vera V1, firmware 1.0.979): &lt;br /&gt;
*GUI button 'Stop' and corresponding UPnP service does not work. &lt;br /&gt;
*GUI button 'Up' moves the shutter down, GUI button 'Down' moves the shutter up ... &lt;br /&gt;
*After adjusting the running times even the slide bar seems to work! &lt;br /&gt;
*I got a report from a user that the düwi device may fail due to interference from the shutter motor. In this case an additional filter is required (costs about 25 €/direction). &lt;br /&gt;
*More information is available at [http://forum.micasaverde.com/index.php?topic=3359.msg16142#msg16142 Link]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that work'''  ===&lt;br /&gt;
&lt;br /&gt;
See [http://wiki.micasaverde.com/index.php/IP_Cameras IP Cameras] for a more comprehensive and up to date list &lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC54GCA &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive camera with moderate image quality. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC210 &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and pan/tilt ability. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC80N &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi?size=2&amp;amp;amp;quality=1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and wireless N. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera. &lt;br /&gt;
Size can be (160 x 120 = 1,320 x 240 = 2,640 x 480 = 3) and Quality can be (Very High= 1,High= 2,Normal= 3,Low= 4,Very Low= 5) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| iCamView &lt;br /&gt;
| IP Camera Server &lt;br /&gt;
| iCV-22, iCV-32 &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=1&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=2&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich IP camera server, suports up to two compatible USB cameras, optional WiFi support, USB storage, USB hubs, motion; works with range of cameras, see icamview.co.uk. Excellent modular solution. They do ship to North America.&lt;br /&gt;
|-&lt;br /&gt;
| SmartHome.com.au &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Z~Series Wireless Camera &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| tmpfs/auto.jpg &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Inexpensive IP security camera designed for the Australian and New Zealand Z-Wave users, but shipping world wide.&lt;br /&gt;
|-&lt;br /&gt;
| [http://global.level1.com LevelOne] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WCS-2030 &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| cgi-bin/video.jpg &lt;br /&gt;
| [http://reviews.cnet.com/search-results/levelone-camcon-wcs-2030/1707-5_7-31972011.html CNET review] &lt;br /&gt;
| An inexpensive IP camera with good image quality. Can be connected wired or wirelessly. Most LevelOne cameras use the same path for the JPEG image, so most of their line (both low and high end) should be compatible. Video and audio also stream over RTSP, which can be customized through the camera's web interface.&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Voyager I &lt;br /&gt;
| firmware 2.02 and above &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive&amp;amp;nbsp;IP&amp;amp;nbsp;camera that is very feature rich, has good image quality, night vision capabilities, motion detection, two-way audio, video streaming over TCP, UDP, or HTTP, and other configurable features. In firmware version 2.02, Asante added the capability to retrieve an image via a URL (however, it is delayed by 3 seconds). Offers a full-featured web interface in IE using an ActiveX plug-in (limited capabilites in other browsers).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Alarm Panels  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Model(s) &lt;br /&gt;
! Required module &lt;br /&gt;
! Plugin &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| DSC &lt;br /&gt;
| &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=1 PowerSeries PC1616] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=2 PowerSeries PC1832] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=3 PowerSeries PC1864]&lt;br /&gt;
&lt;br /&gt;
| [http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=22 IT-100] or [https://www.eyez-on.com/EZMAIN/envisalink2ds.php Envisalink IP170/2DS] &lt;br /&gt;
| [http://code.mios.com/trac/mios_dscalarmpanel/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Elk &lt;br /&gt;
| &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_2981420/M1_Gold_Cross_Platform_Control%C2%AE M1 Gold] &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_3127911/M1EZ8_Cross_Platform_Control%C2%AE M1EZ8]&lt;br /&gt;
&lt;br /&gt;
| The M1EZ8 panel requires the [http://www.elkproducts.com/_webapp_2981423/elk-m1ez8msi__m1ez8_main_serial_interface ELK-M1EZ8MSI] Main Serial Port Interface. &lt;br /&gt;
| [http://code.mios.com/trac/mios_elk-alarm-panel/wiki/WikiStart Link] &lt;br /&gt;
| You can use the ELK-M1XEP Ethernet Interface to connect the panels to Vera on the Ethernet port.&lt;br /&gt;
|-&lt;br /&gt;
| GE Security / Interlogix / Caddx &lt;br /&gt;
| &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-4] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-6] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8E]&lt;br /&gt;
&lt;br /&gt;
| [http://utcfssecurityproducts.com/ProductsAndServices/Pages/NX-584.aspx NX-584] &lt;br /&gt;
| [http://code.mios.com/trac/mios_caddxnx584/wiki/WikiStart Link] &lt;br /&gt;
| NetworX NX-8E already has a RS-232 interface, so it doesn't require the NX-584 module.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128BPT, VISTA-128BPE, VISTA-128FBP, VISTA-250BP, VISTA-250BPT, VISTA-250BPE and VISTA-250FBP &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128FBP, VISTA-250BP, and VISTA-250FBP panels require the [http://www.security.honeywell.com/me/intrusion/products/exp/ac/138478.html 4100SM] module. &lt;br /&gt;
| [http://code.mios.com/trac/mios_ademco-panels-plugin/wiki/WikiStart Link] &lt;br /&gt;
| If your Vista panel is not on this list, look at the next row.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| 10SE, 20SE, 10P, 15P, 20P, 50P, etc. &lt;br /&gt;
| [http://www.nutech.com/online-store/18.html AD2USB] &lt;br /&gt;
| [http://code.mios.com/trac/mios_vista-alarm-panel-ad2usb/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paradox &lt;br /&gt;
| &lt;br /&gt;
*Digiplex DGP-848 &lt;br /&gt;
*EVO48 &lt;br /&gt;
*[http://www.paradox.com/Products/default.asp?CATID=7 EVO192]&lt;br /&gt;
&lt;br /&gt;
| [http://www.paradox.com/Products/default.asp?CATID=7&amp;amp;SUBCATID=75&amp;amp;PRD=234 PRT3 Integration Module] &lt;br /&gt;
| [http://code.mios.com/trac/mios_paradox-alarm/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Visonic &lt;br /&gt;
| &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMax PowerMax] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPlus PowerMax+] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxComplete PowerMaxComplete] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPro PowerMaxPro]&lt;br /&gt;
&lt;br /&gt;
| RS-232 Interface Module &lt;br /&gt;
| [http://code.mios.com/trac/mios_visonic-powermax/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Misc  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Door Bell&amp;lt;br&amp;gt; &lt;br /&gt;
| UTSE03A&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| When added to a third party Z-Wave controller there is no way to associate the push button with the door bell itself, so the push button has no use. In order to make it work, the door bell needs to be associated with a regular Z-Wave switch either by creating associations or by creating a scene.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Supported_Hardware</id>
		<title>Supported Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Supported_Hardware"/>
				<updated>2013-02-05T13:05:32Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a page for Supported Z-Wave devices. &lt;br /&gt;
&lt;br /&gt;
Alternative hardware pages exist for &lt;br /&gt;
&lt;br /&gt;
*[[ZWave Add Controller|Z-Wave Handheld Remote Controls, Gateways and Scene Controllers]] &lt;br /&gt;
*[[IP Cameras|IP Enabled Cameras]] &lt;br /&gt;
*[[Insteon Supported Hardware|Insteon/X10 devices]] &lt;br /&gt;
*USB, or USB-Serial, [[Serial Supported Hardware|Interface devices]]&lt;br /&gt;
&lt;br /&gt;
In general, any device with the Z-Wave logo should work with Vera. A list of tested Z-Wave devices is below, with specific notes for each type of device. This is a wiki, so feel free to add to the page. To learn about Z-Wave routing and fixing routing problems see: [[Heal Network]] &lt;br /&gt;
&lt;br /&gt;
== Hardware Reported to Work  ==&lt;br /&gt;
&lt;br /&gt;
*We strongly encourage users to list any and all products they tested and installed. &lt;br /&gt;
*If a product works but you did not like it, please list it anyway. It may be the only product available to some users.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT! The devices listed here have been added by installers, technicians and users like yourself. Results may vary upon installations. MiCasaVerde does not guarantee operation and compatibility with your installation. The listed devices were found to work with their specific installation. Mixing different series and brands of equipment is not guaranteed in any way to work with other series and brands. It is very likely that users have not fully tested all features of the devices, so it is possible that a device listed here as compatible, will not prove compatible with your hardware. If you are editing this wiki DO NOT REMOVE a listed working device if it hasn't worked for you. Seek help to get the device to work under your individual circumstance. If you are adding to this wiki, please provide links to data for the device and add any tips you feel may benefit someone wanting to implement the device into an installation.''' &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Lighting Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;width: 1220px; height: 491px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Dimmer Switch &lt;br /&gt;
| ZDW120 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, easy to install, LED is a very bright blue....can be programmed to be off when the light is off or on. &amp;quot;series 200&amp;quot; model supports Group Associations 2 &amp;amp;amp; 3. (The older &amp;quot;series 100&amp;quot; supported Groups 1-4, but is no longer available.)&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| ZDW103 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, LED is a very bright blue....can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-wire Dimmer Switch &lt;br /&gt;
| ZDW232 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jul 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5198 Newb] &lt;br /&gt;
| Wall-mount, 230v, 500W, 2-Wire (no neutral), works well. Can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Relay Switch &lt;br /&gt;
| ZRW113 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Controls Florescent Lamps very well! No humming at all.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Companion Switch &lt;br /&gt;
| AS101 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, The trick here is to install this device where the power comes in.&lt;br /&gt;
|-&lt;br /&gt;
| ACT&amp;lt;br&amp;gt; &lt;br /&gt;
| 3-way Dimmer Switch, 2 rocker&amp;lt;br&amp;gt; &lt;br /&gt;
| ZDM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZDM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| Dimmer, Wall-mount, 230v, 500W,&amp;lt;br&amp;gt;3-way, 3 Wire, 2 rocker&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Relay Switch, 2 rocker &lt;br /&gt;
| ZRM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZRM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Relay, Wall-mount, 230v, 6A,&amp;lt;br&amp;gt; 3-way, 3 Wire, 2 rocker - '''Status polling does not work with Vera'''&amp;lt;br&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cooper &lt;br /&gt;
| Accessory (3-way slave) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[Cooper Accessory Slave]]&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 2 wire dimmer &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 05431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall switch.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 06431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| The newer in-wall Düwi switch (also designated Düwi.me), marked with a green sticker on the housing. This switch supports status push.&lt;br /&gt;
|-&lt;br /&gt;
| Fibar &lt;br /&gt;
| 3 wire double switch &lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| This device is designed to use (and be mounted behind) existing light switches. Supports status push. Also available: single switch, dimmer, blind control.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Lamp Module w/Dimmer &lt;br /&gt;
| 45602 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with most incandescent bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Fluorescent Light &amp;amp;amp; Appliance Module &lt;br /&gt;
| 45603 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Outdoor Switch Module &lt;br /&gt;
| 45604 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off/Dim Dimmer Switch &lt;br /&gt;
| 45606 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45606-Manual-Eng.pdf Link] [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Dimmer-Switch-63p555.htm Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Discontinued, See 45612. Requires neutral lead. Works fine with most bulbs. With Philips AmbientLED, flickers at &amp;amp;gt;95% brightness. Supports beaming. Flickers at low-levels with dimmable LED.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| 45607 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off Switch &lt;br /&gt;
| 45609 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Auxiliary Switch &lt;br /&gt;
| 45610 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No zwave function; for 3 and 4-way switching kits&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 2-way Rocker Dimmer &lt;br /&gt;
| 45612 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2012 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No neutral required; replaces 45606&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Dimmer Kit &lt;br /&gt;
| 45613 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Possible error in 45613 manual diagrams, see 45610 diagrams&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Switch Kit &lt;br /&gt;
| 45614 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Relay Switch Adapter &lt;br /&gt;
| RAone SmartPower &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartpower_zw_tech_doc.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Dimmer Switch Adapter &lt;br /&gt;
| RAone SmartDimmer &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartdimmer-00110001-tech.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA03C &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Sept 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha03.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5852 JonnyO] &lt;br /&gt;
| Easy to Instal, supports dimming&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Screw-in Lamp Module &lt;br /&gt;
| HA05C &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Easy install, easy to pair with Vera!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 300 watt dimmer &lt;br /&gt;
| HA06 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha06.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable Dimmer Switch. incandescent/halogen only. Loads for 300 watts or less no neutral required. Great for dimming one bulb.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Switch &lt;br /&gt;
| HA18 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha18.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Affordable 3-way Switch&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| HA20 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha20.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-460-intermatic-homesettings-ha20c-3-way-in-wall-switch-dimmer.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable 3-way 600W dimmer&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRI06-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305784&amp;amp;section=25501 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| VRCS4-MRX &lt;br /&gt;
| 7,2,67,0,2 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well, pair as per [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller], then again holding &amp;quot;2&amp;quot; and &amp;quot;4&amp;quot; to pair the Switch (&amp;quot;Load&amp;quot;) itself.&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRM10-1LX &lt;br /&gt;
| 1 &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=104&amp;amp;products_id=170 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000ZKM7I8/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=65 mark-hc] &lt;br /&gt;
| This is a high quality dimmer geared towards high-end installations&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1L &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| May 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| (Coordinating Remote??)&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LZ &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Light almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for dimmer inserts &lt;br /&gt;
| 5026xx, 5036xx, 5046xx &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5026_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for switch inserts &lt;br /&gt;
| 5024xx, 5034xx, 5044xx &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/5024xx_5034xx_5044xx_Sensorflaeche4pin_CONNECT_INT.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Single Radio flush-mounted receiver &lt;br /&gt;
| 507001 &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5070_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, flush-mounted &lt;br /&gt;
| 507501, 507601 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5075_581_00_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 1-gang universal dimmer, flush-mounted &lt;br /&gt;
| 507900 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5079_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Monster &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| IWC600 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is the same as the Leviton scene controller. Follow these instructions: [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller]&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| RP200 &lt;br /&gt;
| 1.0 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/products/Productdetail3.asp?StyleID=139&amp;amp;FinishID=12&amp;amp;FunctionID=77 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Works well&amp;lt;br&amp;gt;Sold with Schlage LiNK lock system&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Plug &amp;amp;amp; Receptacle Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1677&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRR150W &lt;br /&gt;
| 2.2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Works like a champ! Easy to Install. One receptacle RF controlled, the other is hot&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in switch.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZDP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Cooper Wiring Devices &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| RFTR9505-T &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://solutions.cooperwiringdevices.com/common/brands.cfm?pg=Detail&amp;amp;brandName=CWD%20Technology&amp;amp;category=Aspire%20RF%20Lighting%20Control%20System%3A%20Receptacles&amp;amp;id=16772 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| One receptacle is RF controlled, the other is hot. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Duwi &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;05437&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| Feb 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.com/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| ezhome &lt;br /&gt;
| High quality Plug-in switch, Easy install and works well&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN157-2&amp;lt;/span&amp;gt; &lt;br /&gt;
| 4,2,64,1,2 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=501&amp;amp;CateUIDList=0,83 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN158&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Works well. Supports status push and power metering&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| In-wall Duplex Receptacle &lt;br /&gt;
| 45605 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| US &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Duplex-Receptacle-63p554.htm Link] [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45605-Manual-Eng.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Easy. Works.&lt;br /&gt;
|-&lt;br /&gt;
| Home Manageables &lt;br /&gt;
| Lamp Module (Dimming) &lt;br /&gt;
| HM-LM001 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| 200W maximum load, 25W minimum load &lt;br /&gt;
| [http://www.homemanageables.com/manuals/HM-LM001%20Manual%20Final.pdf Link] &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Support for incandescent loads only. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| CA3500 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=105&amp;amp;products_id=97 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000U3XYPA/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is a decent, but expensive solution for in-wall receptacles. One receptacle RF controlled, the other is hot.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA02C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=108&amp;amp;products_id=98 Link] &lt;br /&gt;
| [http://www.amazon.com/Intermatic-HA02C-Settings-Heavy-Duty-Appliance/dp/B000BJSDZO/ref=sr_1_3?ie=UTF8&amp;amp;qid=1227467418&amp;amp;sr=8-3 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Seems to work well&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Outdoor Module &lt;br /&gt;
| HA04C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Easy to Install.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, plug adapter, 2000 W &lt;br /&gt;
| 508519 &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5085_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Monster Central &lt;br /&gt;
| 1800W Appliance Module &lt;br /&gt;
| ML-LAS1000 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Jan 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.monstercable.com/productdisplay.asp?pin=3164 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Easy to Install. I use this as a ZWave signal repeater. Appears to be a badge-engineering of [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=309748&amp;amp;section=25542 Leviton VRP15-1LW]&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA-02L&amp;lt;br&amp;gt;(HA-02WD) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indooor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-02WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Note: link is to HA-02WD manual.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA-03WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-03WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Outdoor Lighting Module &lt;br /&gt;
| HA-04WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2012 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-04WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Thermostat Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| WDTC-20 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/WDTC-20---Z-Wave-Thermostat-Wayne-Dalton-P599C38.aspx Link] &lt;br /&gt;
| [http://www.amazon.com/Wayne-Dalton-Corporation-Z-Wave-Thermostat/dp/B001F8QKYQ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Has 2 inclusion modes: 1) press and release the bind button and the STAT will be included as a thermostat and works with Vera, 2) press and hold the bind button and it will be added as a binary switch for compatibility with old, non-compliant remotes. If it's added in the wrong mode, remove it and re-add it. Works great simple to use!&lt;br /&gt;
|-&lt;br /&gt;
| HAI &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| RC-80BZ &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homeauto.com Link] &lt;br /&gt;
| [http://www.homeauto.com/Downloads/Products/Omnistat/rcr80.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, Hold button feature not able to control by Vera at this time. Priced above 200.00. Has internal setback programs. Works great.&lt;br /&gt;
|-&lt;br /&gt;
| RCS &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| TZ43 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, much more feature rich the the WDTC-20 but comes with a hefty price tag ($214.95). Wish Vera could use all the features in this Thermostat! '''Note:'''''You need to set the thermostat to show the temperature, on its display, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Schlage/Trane &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| Trane &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.link.schlage.com/Products/Pages/Thermostat.aspx Link] &lt;br /&gt;
| [http://www.trane.com/Residential/Products/Thermostats Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| It's the same thermostat as the RCS TZ43 and it has the same issue: it's accepting &amp;quot;Set Temp Point&amp;quot; commands only in the measurement unit that is displayed on its screen. '''Note:'''''You need to set the thermostat to show the temperature, on its screen, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| InTouch &lt;br /&gt;
| CA8900 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-663-intermatic-intouch-ca8900-z-wave-digital-thermostat.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Looks very similar to the Wayne Dalton WDTC-20 listed here. works great, simple to use&lt;br /&gt;
|-&lt;br /&gt;
| Danfoss &lt;br /&gt;
| Radiator thermostat &lt;br /&gt;
| RA PLUS-w &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://raplusw.com/Content/E962FC0B-6461-4319-82FE-3E1E765142CF.html Link] [http://raplusw.com/PCMPDF/Data%20sheet%20RA-PLUS-w_02.pdf Link] &lt;br /&gt;
| [http://www.eurox10.com/Product/ZWave/Actuators/ZWDNF_RA_PLUS-W.htm Link] [http://www.eurox10.com] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See: [[Danfoss Thermostat]] for installation instructions&amp;lt;br&amp;gt;If the device cannot be configured at the final location, move the device closer to Vera and try again (this device might require a direct connection to Vera for configuration).&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT22 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.radiothermostat.com/documents/CT-22-Operation-27aug10.pdf Link] [http://www.radiothermostat.com/documents/CT-22-Installation-27aug10.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| &lt;br /&gt;
To include the thermostat into your network, you just have to install the USNAP module in the thermostat while Vera is in Include mode. To exclude the thermostat from your network, you just have to install the USNAP module in the thermostat while Vera is in Exclude mode.You can watch a video about how to install it [http://www.youtube.com/watch?v=M9VNuHGENP0 here]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT30 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvflorin&amp;lt;br&amp;gt; &lt;br /&gt;
| If you experience a problem with other Z-Wave devices, see this [http://wiki.micasaverde.com/images/3/39/RTCOA_Z-Wave_v7.4_workaround.zip note].&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Remotec &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| ZTS-100 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| To include the thermostat into your network, hold the home button for 2 seconds until the display says 'noc', which means 'no connection', then press the Prog button and the readout will say 'Srh'. If it doesn't say 'noc' or if the radio icon is visible in the upper right corner, the thermostat is already included and must be removed/reset. To remove/reset the thermostat hold the home button for 2 seconds until the display says 'done', then press the Prog button.&lt;br /&gt;
|-&lt;br /&gt;
| Horstmann &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| HRT4-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4-ZWweb.pdf Link] [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf Link] &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf &amp;lt;br&amp;gt;] &lt;br /&gt;
| Daniel &lt;br /&gt;
| After you include the thermostat in Vera's network, you will have to make some configuration changes in order for it to report the temperature change. See: [[HRT4-ZW]] for more information.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Sensors'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1369&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| ZIR000 / ZIR010 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU (ZIR010) or US (ZIR000) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR000_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR000_instr.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR010_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR010_instr.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Remove the cover, pair to Vera's dongle by using the push-button on the left of the circuit board. Vera must configure it to work, and it can only be configured within less of a minute (30 sec best) of inserting the batteries. With Vera's dongle removed, remove/reinsert the batteries, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs &lt;br /&gt;
| 3-in-1 sensor (light/humidity/temperature) &lt;br /&gt;
| MultiSensor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.aeon-labs.com/site/public/lib/download.php?type=s&amp;amp;f=29 Specs] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Pair to Vera by using the push-button. Vera must configure it to work, and it can only be configured within 10 minutes of inserting the batteries.&lt;br /&gt;
|-&lt;br /&gt;
| Express Controls aka HomeSeer &lt;br /&gt;
| 3-in-1 sensor (light/temperature/motion) &lt;br /&gt;
| HSM100 / EZMotion &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[ExpressControls3in1]]&amp;lt;br&amp;gt;If the motion sensor does not work right after inclusion and configuration, remove the batteries for a few seconds.&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Hawking/Home Manageables &lt;br /&gt;
| Door/window sensor &lt;br /&gt;
| SM103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=355&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110873R01_SM103_-ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Pair using the intrusion button. The sensor will accept configuration within a few minutes of the initial pairing, or of pressing the intrusion button on the back even after it's paired. Pair the device, or if it's already paired, press the intrusion button, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page. NOTE: There is some confusion about the orientation of the sensor. The main sensor body has a back (where the intrusion is), a front (where the logo and LED is), and the 2 other surfaces, one of which has a curved edge, and the other is flat. The magnet needs to go against the flat surface. And the flat surface on the magnet should be as close as possible to the flat surface on the sensor, lined up in the middle so the line which passes through the LED lines up with the sensor. &lt;br /&gt;
Note: In case the inclusion/exclusion fails you should remove/reinsert the batteries from the sensor and within a few seconds the sensor should be automatically detected. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Home Manageables &lt;br /&gt;
| Humidity + Temperature sensor &lt;br /&gt;
| HM-TS001 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jan 2010 (requires version 1.1.0 or greater) &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.asihome.com/ASIshop/product_info.php?products_id=3946 Link] [http://www.homeseer.com/pdfs/guides/HM_TD001.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| micasaverde &lt;br /&gt;
| Pair or unpair the device by tapping the CF button 3 times very quickly. Once it's paired and shows up in the UI as a generic device, press the CF button 3 times again quickly to make it wakeup and get configured. Then it will correctly be identified as 3 devices (combo device + temperature + humidity).&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Motion Detector &lt;br /&gt;
| SP103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=354&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110874R01_SP103_%20-%20ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Fortrezz &lt;br /&gt;
| Water /Freeze &lt;br /&gt;
| WWA-001 &lt;br /&gt;
| &amp;amp;nbsp;?????? &lt;br /&gt;
| US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.Fortrezz.com Link] [http://www.fortrezz.com/resources/WWA_manual_01May2009.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Zmistro &lt;br /&gt;
| Works great I would place a few in your house. Bathrooms, laundry , kitchen , basement. Great product!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| CA-9000 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthomeusa.com/Products/CA9000/manuals/CA9000.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Aaron &lt;br /&gt;
| This device has limited functionality as a sensor. It can only be used to turn on and off a light directly by setting an association, which Vera supports. It does not fire events, so you cannot use it as an event on a scene.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 4-gang radio transmitter, flush-mounted &lt;br /&gt;
| 506004 &lt;br /&gt;
| 2,2,27,1,4 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5060_581_02_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Note: There is proprietary functionality here. Support will be added soon. &lt;br /&gt;
Quite complex device; partially supported by Vera; can be used as a window/door sensor (as of firmware 1.0.900) ... &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs (Aeotec)&amp;lt;br&amp;gt; &lt;br /&gt;
| 4 in 1 Sensor (Multisensor)&amp;lt;br&amp;gt; &lt;br /&gt;
| DSB05106-ZWUS &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://aeotec.com/z-wave-sensor/47-multisensor-manual.html Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvadi&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://wiki.micasaverde.com/index.php/Aeon_4in1 Link]&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Fibaro&amp;lt;br&amp;gt; &lt;br /&gt;
| Relay Switch&amp;lt;br&amp;gt; &lt;br /&gt;
| FGS211 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [https://www.uk-automation.co.uk/pdf/FGS211.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| This device is identified as a master device with 1 child device. The master controls the S1 output, the child controls the S2 output.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Door Locks'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| BE369 (deadbolt) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Mid 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/link/product_tour/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Read the instructions here: [[Schlage Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Kwikset &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here:[[Kwikset Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Yale &lt;br /&gt;
| Deadbolt &lt;br /&gt;
| Real Living &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Quickstart%2018JUL11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Instructions%2023AUG11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here: [[Yale Lock]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Drapes/Blinds'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DBMZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/dc_mot_ctrls/z-wave/dbmz/dbmz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| ABMHZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/int_ac_mot_ctrls/z-wave/abmhz/abmhz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/AC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| AC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/DC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Relay controls'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Contactor control box &lt;br /&gt;
| CA3750 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.intouchcontrols.com/~/media/Files/InTouchControls/Products/Spec%20Sheets/CA3750.ashx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Multi-instance class supported for this device. Vera is able to control each of the 2 relays independently if desired. please note unit shows as three switches this is a bug with Intermatic not a real issue.You can check the box in devices to not show the second listing of the first relay in &amp;quot;Dasboard&amp;quot; You can control heavy loads like a water heater ,pool pump motor/s. great device&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Window Coverings'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 5025xx, 5035xx, 5045xx &lt;br /&gt;
| 6,2,27,2,3 and 6,2,27,2,4 &lt;br /&gt;
| EU &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5025_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work. GUI buttons do not work with Luup release 1.0.843 and 1.0.862 (fixed with Luup release 1.0.879).&amp;lt;br&amp;gt;Workaround: Use a Luup Scene with the following code:&amp;lt;tt&amp;gt;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&amp;lt;tt&amp;gt;local lul_arguments = {}&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_arguments[&amp;quot;newTargetValue&amp;quot;]=&amp;quot;0&amp;quot;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_resultcode,lul_resultstring,lul_job,lul_returnarguments = luup.call_action(&amp;quot;urn:upnp-org:serviceId:SwitchPower1&amp;quot;,&amp;quot;SetTarget&amp;quot;,lul_arguments,6) &amp;lt;/tt&amp;gt; Replace &amp;quot;6&amp;quot; with your device number, replace &amp;quot;0&amp;quot; with &amp;quot;1&amp;quot; for inverse action. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Duewi &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 054368 &lt;br /&gt;
| 6,2,51,1,0 &lt;br /&gt;
| EU &lt;br /&gt;
| Jun 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.de/index.php?productid=37344 Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Lutz &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Some additional observations by Ap15e (Vera V1, firmware 1.0.979): &lt;br /&gt;
*GUI button 'Stop' and corresponding UPnP service does not work. &lt;br /&gt;
*GUI button 'Up' moves the shutter down, GUI button 'Down' moves the shutter up ... &lt;br /&gt;
*After adjusting the running times even the slide bar seems to work! &lt;br /&gt;
*I got a report from a user that the düwi device may fail due to interference from the shutter motor. In this case an additional filter is required (costs about 25 €/direction). &lt;br /&gt;
*More information is available at [http://forum.micasaverde.com/index.php?topic=3359.msg16142#msg16142 Link]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that work'''  ===&lt;br /&gt;
&lt;br /&gt;
See [http://wiki.micasaverde.com/index.php/IP_Cameras IP Cameras] for a more comprehensive and up to date list &lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC54GCA &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive camera with moderate image quality. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC210 &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and pan/tilt ability. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC80N &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi?size=2&amp;amp;amp;quality=1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and wireless N. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera. &lt;br /&gt;
Size can be (160 x 120 = 1,320 x 240 = 2,640 x 480 = 3) and Quality can be (Very High= 1,High= 2,Normal= 3,Low= 4,Very Low= 5) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| iCamView &lt;br /&gt;
| IP Camera Server &lt;br /&gt;
| iCV-22, iCV-32 &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=1&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=2&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich IP camera server, suports up to two compatible USB cameras, optional WiFi support, USB storage, USB hubs, motion; works with range of cameras, see icamview.co.uk. Excellent modular solution. They do ship to North America.&lt;br /&gt;
|-&lt;br /&gt;
| SmartHome.com.au &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Z~Series Wireless Camera &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| tmpfs/auto.jpg &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Inexpensive IP security camera designed for the Australian and New Zealand Z-Wave users, but shipping world wide.&lt;br /&gt;
|-&lt;br /&gt;
| [http://global.level1.com LevelOne] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WCS-2030 &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| cgi-bin/video.jpg &lt;br /&gt;
| [http://reviews.cnet.com/search-results/levelone-camcon-wcs-2030/1707-5_7-31972011.html CNET review] &lt;br /&gt;
| An inexpensive IP camera with good image quality. Can be connected wired or wirelessly. Most LevelOne cameras use the same path for the JPEG image, so most of their line (both low and high end) should be compatible. Video and audio also stream over RTSP, which can be customized through the camera's web interface.&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Voyager I &lt;br /&gt;
| firmware 2.02 and above &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive&amp;amp;nbsp;IP&amp;amp;nbsp;camera that is very feature rich, has good image quality, night vision capabilities, motion detection, two-way audio, video streaming over TCP, UDP, or HTTP, and other configurable features. In firmware version 2.02, Asante added the capability to retrieve an image via a URL (however, it is delayed by 3 seconds). Offers a full-featured web interface in IE using an ActiveX plug-in (limited capabilites in other browsers).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Alarm Panels  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Model(s) &lt;br /&gt;
! Required module &lt;br /&gt;
! Plugin &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| DSC &lt;br /&gt;
| &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=1 PowerSeries PC1616] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=2 PowerSeries PC1832] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=3 PowerSeries PC1864]&lt;br /&gt;
&lt;br /&gt;
| [http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=22 IT-100] or [https://www.eyez-on.com/EZMAIN/envisalink2ds.php Envisalink IP170/2DS] &lt;br /&gt;
| [http://code.mios.com/trac/mios_dscalarmpanel/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Elk &lt;br /&gt;
| &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_2981420/M1_Gold_Cross_Platform_Control%C2%AE M1 Gold] &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_3127911/M1EZ8_Cross_Platform_Control%C2%AE M1EZ8]&lt;br /&gt;
&lt;br /&gt;
| The M1EZ8 panel requires the [http://www.elkproducts.com/_webapp_2981423/elk-m1ez8msi__m1ez8_main_serial_interface ELK-M1EZ8MSI] Main Serial Port Interface. &lt;br /&gt;
| [http://code.mios.com/trac/mios_elk-alarm-panel/wiki/WikiStart Link] &lt;br /&gt;
| You can use the ELK-M1XEP Ethernet Interface to connect the panels to Vera on the Ethernet port.&lt;br /&gt;
|-&lt;br /&gt;
| GE Security / Interlogix / Caddx &lt;br /&gt;
| &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-4] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-6] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8E]&lt;br /&gt;
&lt;br /&gt;
| [http://utcfssecurityproducts.com/ProductsAndServices/Pages/NX-584.aspx NX-584] &lt;br /&gt;
| [http://code.mios.com/trac/mios_caddxnx584/wiki/WikiStart Link] &lt;br /&gt;
| NetworX NX-8E already has a RS-232 interface, so it doesn't require the NX-584 module.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128BPT, VISTA-128BPE, VISTA-128FBP, VISTA-250BP, VISTA-250BPT, VISTA-250BPE and VISTA-250FBP &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128FBP, VISTA-250BP, and VISTA-250FBP panels require the [http://www.security.honeywell.com/me/intrusion/products/exp/ac/138478.html 4100SM] module. &lt;br /&gt;
| [http://code.mios.com/trac/mios_ademco-panels-plugin/wiki/WikiStart Link] &lt;br /&gt;
| If your Vista panel is not on this list, look at the next row.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| 10SE, 20SE, 10P, 15P, 20P, 50P, etc. &lt;br /&gt;
| [http://www.nutech.com/online-store/18.html AD2USB] &lt;br /&gt;
| [http://code.mios.com/trac/mios_vista-alarm-panel-ad2usb/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paradox &lt;br /&gt;
| &lt;br /&gt;
*Digiplex DGP-848 &lt;br /&gt;
*EVO48 &lt;br /&gt;
*[http://www.paradox.com/Products/default.asp?CATID=7 EVO192]&lt;br /&gt;
&lt;br /&gt;
| [http://www.paradox.com/Products/default.asp?CATID=7&amp;amp;SUBCATID=75&amp;amp;PRD=234 PRT3 Integration Module] &lt;br /&gt;
| [http://code.mios.com/trac/mios_paradox-alarm/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Visonic &lt;br /&gt;
| &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMax PowerMax] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPlus PowerMax+] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxComplete PowerMaxComplete] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPro PowerMaxPro]&lt;br /&gt;
&lt;br /&gt;
| RS-232 Interface Module &lt;br /&gt;
| [http://code.mios.com/trac/mios_visonic-powermax/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Misc  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Door Bell&amp;lt;br&amp;gt; &lt;br /&gt;
| UTSE03A&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| When added to a third party Z-Wave controller there is no way to associate the push button with the door bell itself, so the push button has no use. In order to make it work, the door bell needs to be associated with a regular Z-Wave switch either by creating associations or by creating a scene.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Supported_Hardware</id>
		<title>Supported Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Supported_Hardware"/>
				<updated>2013-02-05T13:04:08Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a page for Supported Z-Wave devices. &lt;br /&gt;
&lt;br /&gt;
Alternative hardware pages exist for &lt;br /&gt;
&lt;br /&gt;
*[[ZWave Add Controller|Z-Wave Handheld Remote Controls, Gateways and Scene Controllers]] &lt;br /&gt;
*[[IP Cameras|IP Enabled Cameras]] &lt;br /&gt;
*[[Insteon Supported Hardware|Insteon/X10 devices]] &lt;br /&gt;
*USB, or USB-Serial, [[Serial Supported Hardware|Interface devices]]&lt;br /&gt;
&lt;br /&gt;
In general, any device with the Z-Wave logo should work with Vera. A list of tested Z-Wave devices is below, with specific notes for each type of device. This is a wiki, so feel free to add to the page. To learn about Z-Wave routing and fixing routing problems see: [[Heal Network]] &lt;br /&gt;
&lt;br /&gt;
== Hardware Reported to Work  ==&lt;br /&gt;
&lt;br /&gt;
*We strongly encourage users to list any and all products they tested and installed. &lt;br /&gt;
*If a product works but you did not like it, please list it anyway. It may be the only product available to some users.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT! The devices listed here have been added by installers, technicians and users like yourself. Results may vary upon installations. MiCasaVerde does not guarantee operation and compatibility with your installation. The listed devices were found to work with their specific installation. Mixing different series and brands of equipment is not guaranteed in any way to work with other series and brands. It is very likely that users have not fully tested all features of the devices, so it is possible that a device listed here as compatible, will not prove compatible with your hardware. If you are editing this wiki DO NOT REMOVE a listed working device if it hasn't worked for you. Seek help to get the device to work under your individual circumstance. If you are adding to this wiki, please provide links to data for the device and add any tips you feel may benefit someone wanting to implement the device into an installation.''' &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Lighting Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;width: 1220px; height: 491px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Dimmer Switch &lt;br /&gt;
| ZDW120 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, easy to install, LED is a very bright blue....can be programmed to be off when the light is off or on. &amp;quot;series 200&amp;quot; model supports Group Associations 2 &amp;amp;amp; 3. (The older &amp;quot;series 100&amp;quot; supported Groups 1-4, but is no longer available.)&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| ZDW103 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, LED is a very bright blue....can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-wire Dimmer Switch &lt;br /&gt;
| ZDW232 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jul 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5198 Newb] &lt;br /&gt;
| Wall-mount, 230v, 500W, 2-Wire (no neutral), works well. Can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Relay Switch &lt;br /&gt;
| ZRW113 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Controls Florescent Lamps very well! No humming at all.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Companion Switch &lt;br /&gt;
| AS101 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, The trick here is to install this device where the power comes in.&lt;br /&gt;
|-&lt;br /&gt;
| ACT&amp;lt;br&amp;gt; &lt;br /&gt;
| 3-way Dimmer Switch, 2 rocker&amp;lt;br&amp;gt; &lt;br /&gt;
| ZDM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZDM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| Dimmer, Wall-mount, 230v, 500W,&amp;lt;br&amp;gt;3-way, 3 Wire, 2 rocker&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Relay Switch, 2 rocker &lt;br /&gt;
| ZRM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZRM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Relay, Wall-mount, 230v, 6A,&amp;lt;br&amp;gt; 3-way, 3 Wire, 2 rocker - '''Status polling does not work with Vera'''&amp;lt;br&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cooper &lt;br /&gt;
| Accessory (3-way slave) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[Cooper Accessory Slave]]&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 2 wire dimmer &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 05431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall switch.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 06431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| The newer in-wall Düwi switch (also designated Düwi.me), marked with a green sticker on the housing. This switch supports status push.&lt;br /&gt;
|-&lt;br /&gt;
| Fibar &lt;br /&gt;
| 3 wire double switch &lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| This device is designed to use (and be mounted behind) existing light switches. Supports status push. Also available: single switch, dimmer, blind control.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Lamp Module w/Dimmer &lt;br /&gt;
| 45602 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with most incandescent bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Fluorescent Light &amp;amp;amp; Appliance Module &lt;br /&gt;
| 45603 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Outdoor Switch Module &lt;br /&gt;
| 45604 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off/Dim Dimmer Switch &lt;br /&gt;
| 45606 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45606-Manual-Eng.pdf Link] [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Dimmer-Switch-63p555.htm Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Discontinued, See 45612. Requires neutral lead. Works fine with most bulbs. With Philips AmbientLED, flickers at &amp;amp;gt;95% brightness. Supports beaming. Flickers at low-levels with dimmable LED.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| 45607 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off Switch &lt;br /&gt;
| 45609 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Auxiliary Switch &lt;br /&gt;
| 45610 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No zwave function; for 3 and 4-way switching kits&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 2-way Rocker Dimmer &lt;br /&gt;
| 45612 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2012 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No neutral required; replaces 45606&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Dimmer Kit &lt;br /&gt;
| 45613 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Possible error in 45613 manual diagrams, see 45610 diagrams&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Switch Kit &lt;br /&gt;
| 45614 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Relay Switch Adapter &lt;br /&gt;
| RAone SmartPower &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartpower_zw_tech_doc.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Dimmer Switch Adapter &lt;br /&gt;
| RAone SmartDimmer &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartdimmer-00110001-tech.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA03C &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Sept 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha03.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5852 JonnyO] &lt;br /&gt;
| Easy to Instal, supports dimming&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Screw-in Lamp Module &lt;br /&gt;
| HA05C &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Easy install, easy to pair with Vera!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 300 watt dimmer &lt;br /&gt;
| HA06 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha06.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable Dimmer Switch. incandescent/halogen only. Loads for 300 watts or less no neutral required. Great for dimming one bulb.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Switch &lt;br /&gt;
| HA18 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha18.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Affordable 3-way Switch&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| HA20 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha20.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-460-intermatic-homesettings-ha20c-3-way-in-wall-switch-dimmer.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable 3-way 600W dimmer&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRI06-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305784&amp;amp;section=25501 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| VRCS4-MRX &lt;br /&gt;
| 7,2,67,0,2 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well, pair as per [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller], then again holding &amp;quot;2&amp;quot; and &amp;quot;4&amp;quot; to pair the Switch (&amp;quot;Load&amp;quot;) itself.&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRM10-1LX &lt;br /&gt;
| 1 &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=104&amp;amp;products_id=170 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000ZKM7I8/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=65 mark-hc] &lt;br /&gt;
| This is a high quality dimmer geared towards high-end installations&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1L &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| May 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| (Coordinating Remote??)&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LZ &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Light almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for dimmer inserts &lt;br /&gt;
| 5026xx, 5036xx, 5046xx &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5026_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for switch inserts &lt;br /&gt;
| 5024xx, 5034xx, 5044xx &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/5024xx_5034xx_5044xx_Sensorflaeche4pin_CONNECT_INT.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Single Radio flush-mounted receiver &lt;br /&gt;
| 507001 &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5070_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, flush-mounted &lt;br /&gt;
| 507501, 507601 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5075_581_00_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 1-gang universal dimmer, flush-mounted &lt;br /&gt;
| 507900 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5079_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Monster &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| IWC600 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is the same as the Leviton scene controller. Follow these instructions: [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller]&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| RP200 &lt;br /&gt;
| 1.0 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/products/Productdetail3.asp?StyleID=139&amp;amp;FinishID=12&amp;amp;FunctionID=77 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Works well&amp;lt;br&amp;gt;Sold with Schlage LiNK lock system&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Plug &amp;amp;amp; Receptacle Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1677&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRR150W &lt;br /&gt;
| 2.2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Works like a champ! Easy to Install. One receptacle RF controlled, the other is hot&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in switch.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZDP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Cooper Wiring Devices &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| RFTR9505-T &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://solutions.cooperwiringdevices.com/common/brands.cfm?pg=Detail&amp;amp;brandName=CWD%20Technology&amp;amp;category=Aspire%20RF%20Lighting%20Control%20System%3A%20Receptacles&amp;amp;id=16772 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| One receptacle is RF controlled, the other is hot. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Duwi &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;05437&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| Feb 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.com/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| ezhome &lt;br /&gt;
| High quality Plug-in switch, Easy install and works well&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN157-2&amp;lt;/span&amp;gt; &lt;br /&gt;
| 4,2,64,1,2 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=501&amp;amp;CateUIDList=0,83 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN158&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Works well. Supports status push and power metering&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| In-wall Duplex Receptacle &lt;br /&gt;
| 45605 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| US &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Duplex-Receptacle-63p554.htm Link] [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45605-Manual-Eng.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Easy. Works.&lt;br /&gt;
|-&lt;br /&gt;
| Home Manageables &lt;br /&gt;
| Lamp Module (Dimming) &lt;br /&gt;
| HM-LM001 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| 200W maximum load, 25W minimum load &lt;br /&gt;
| [http://www.homemanageables.com/manuals/HM-LM001%20Manual%20Final.pdf Link] &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Support for incandescent loads only. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| CA3500 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=105&amp;amp;products_id=97 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000U3XYPA/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is a decent, but expensive solution for in-wall receptacles. One receptacle RF controlled, the other is hot.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA02C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=108&amp;amp;products_id=98 Link] &lt;br /&gt;
| [http://www.amazon.com/Intermatic-HA02C-Settings-Heavy-Duty-Appliance/dp/B000BJSDZO/ref=sr_1_3?ie=UTF8&amp;amp;qid=1227467418&amp;amp;sr=8-3 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Seems to work well&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Outdoor Module &lt;br /&gt;
| HA04C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Easy to Install.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, plug adapter, 2000 W &lt;br /&gt;
| 508519 &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5085_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Monster Central &lt;br /&gt;
| 1800W Appliance Module &lt;br /&gt;
| ML-LAS1000 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Jan 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.monstercable.com/productdisplay.asp?pin=3164 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Easy to Install. I use this as a ZWave signal repeater. Appears to be a badge-engineering of [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=309748&amp;amp;section=25542 Leviton VRP15-1LW]&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA-02L&amp;lt;br&amp;gt;(HA-02WD) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indooor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-02WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Note: link is to HA-02WD manual.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA-03WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-03WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Outdoor Lighting Module &lt;br /&gt;
| HA-04WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2012 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-04WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Thermostat Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| WDTC-20 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/WDTC-20---Z-Wave-Thermostat-Wayne-Dalton-P599C38.aspx Link] &lt;br /&gt;
| [http://www.amazon.com/Wayne-Dalton-Corporation-Z-Wave-Thermostat/dp/B001F8QKYQ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Has 2 inclusion modes: 1) press and release the bind button and the STAT will be included as a thermostat and works with Vera, 2) press and hold the bind button and it will be added as a binary switch for compatibility with old, non-compliant remotes. If it's added in the wrong mode, remove it and re-add it. Works great simple to use!&lt;br /&gt;
|-&lt;br /&gt;
| HAI &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| RC-80BZ &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homeauto.com Link] &lt;br /&gt;
| [http://www.homeauto.com/Downloads/Products/Omnistat/rcr80.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, Hold button feature not able to control by Vera at this time. Priced above 200.00. Has internal setback programs. Works great.&lt;br /&gt;
|-&lt;br /&gt;
| RCS &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| TZ43 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, much more feature rich the the WDTC-20 but comes with a hefty price tag ($214.95). Wish Vera could use all the features in this Thermostat! '''Note:'''''You need to set the thermostat to show the temperature, on its display, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Schlage/Trane &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| Trane &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.link.schlage.com/Products/Pages/Thermostat.aspx Link] &lt;br /&gt;
| [http://www.trane.com/Residential/Products/Thermostats Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| It's the same thermostat as the RCS TZ43 and it has the same issue: it's accepting &amp;quot;Set Temp Point&amp;quot; commands only in the measurement unit that is displayed on its screen. '''Note:'''''You need to set the thermostat to show the temperature, on its screen, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| InTouch &lt;br /&gt;
| CA8900 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-663-intermatic-intouch-ca8900-z-wave-digital-thermostat.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Looks very similar to the Wayne Dalton WDTC-20 listed here. works great, simple to use&lt;br /&gt;
|-&lt;br /&gt;
| Danfoss &lt;br /&gt;
| Radiator thermostat &lt;br /&gt;
| RA PLUS-w &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://raplusw.com/Content/E962FC0B-6461-4319-82FE-3E1E765142CF.html Link] [http://raplusw.com/PCMPDF/Data%20sheet%20RA-PLUS-w_02.pdf Link] &lt;br /&gt;
| [http://www.eurox10.com/Product/ZWave/Actuators/ZWDNF_RA_PLUS-W.htm Link] [http://www.eurox10.com] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See: [[Danfoss Thermostat]] for installation instructions&amp;lt;br&amp;gt;If the device cannot be configured at the final location, move the device closer to Vera and try again (this device might require a direct connection to Vera for configuration).&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT22 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.radiothermostat.com/documents/CT-22-Operation-27aug10.pdf Link] [http://www.radiothermostat.com/documents/CT-22-Installation-27aug10.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| &lt;br /&gt;
To include the thermostat into your network, you just have to install the USNAP module in the thermostat while Vera is in Include mode. To exclude the thermostat from your network, you just have to install the USNAP module in the thermostat while Vera is in Exclude mode.You can watch a video about how to install it [http://www.youtube.com/watch?v=M9VNuHGENP0 here]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT30 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvflorin&amp;lt;br&amp;gt; &lt;br /&gt;
| If you experience a problem with other Z-Wave devices, see this [http://wiki.micasaverde.com/images/3/39/RTCOA_Z-Wave_v7.4_workaround.zip note].&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Remotec &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| ZTS-100 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| To include the thermostat into your network, hold the home button for 2 seconds until the display says 'noc', which means 'no connection', then press the Prog button and the readout will say 'Srh'. If it doesn't say 'noc' or if the radio icon is visible in the upper right corner, the thermostat is already included and must be removed/reset. To remove/reset the thermostat hold the home button for 2 seconds until the display says 'done', then press the Prog button.&lt;br /&gt;
|-&lt;br /&gt;
| Horstmann &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| HRT4-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4-ZWweb.pdf Link] [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf Link] &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf &amp;lt;br&amp;gt;] &lt;br /&gt;
| Daniel &lt;br /&gt;
| After you include the thermostat in Vera's network, you will have to make some configuration changes in order for it to report the temperature change. See: [[HRT4-ZW]] for more information.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Sensors'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1369&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| ZIR000 / ZIR010 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU (ZIR010) or US (ZIR000) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR000_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR000_instr.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR010_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR010_instr.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Remove the cover, pair to Vera's dongle by using the push-button on the left of the circuit board. Vera must configure it to work, and it can only be configured within less of a minute (30 sec best) of inserting the batteries. With Vera's dongle removed, remove/reinsert the batteries, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs &lt;br /&gt;
| 3-in-1 sensor (light/humidity/temperature) &lt;br /&gt;
| MultiSensor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.aeon-labs.com/site/public/lib/download.php?type=s&amp;amp;f=29 Specs] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Pair to Vera by using the push-button. Vera must configure it to work, and it can only be configured within 10 minutes of inserting the batteries.&lt;br /&gt;
|-&lt;br /&gt;
| Express Controls aka HomeSeer &lt;br /&gt;
| 3-in-1 sensor (light/temperature/motion) &lt;br /&gt;
| HSM100 / EZMotion &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[ExpressControls3in1]]&amp;lt;br&amp;gt;If the motion sensor does not work right after inclusion and configuration, remove the batteries for a few seconds.&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Hawking/Home Manageables &lt;br /&gt;
| Door/window sensor &lt;br /&gt;
| SM103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=355&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110873R01_SM103_-ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Pair using the intrusion button. The sensor will accept configuration within a few minutes of the initial pairing, or of pressing the intrusion button on the back even after it's paired. Pair the device, or if it's already paired, press the intrusion button, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page. NOTE: There is some confusion about the orientation of the sensor. The main sensor body has a back (where the intrusion is), a front (where the logo and LED is), and the 2 other surfaces, one of which has a curved edge, and the other is flat. The magnet needs to go against the flat surface. And the flat surface on the magnet should be as close as possible to the flat surface on the sensor, lined up in the middle so the line which passes through the LED lines up with the sensor. &lt;br /&gt;
Note: In case the inclusion/exclusion fails you should remove/reinsert the batteries from the sensor and within a few seconds the sensor should be automatically detected. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Home Manageables &lt;br /&gt;
| Humidity + Temperature sensor &lt;br /&gt;
| HM-TS001 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jan 2010 (requires version 1.1.0 or greater) &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.asihome.com/ASIshop/product_info.php?products_id=3946 Link] [http://www.homeseer.com/pdfs/guides/HM_TD001.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| micasaverde &lt;br /&gt;
| Pair or unpair the device by tapping the CF button 3 times very quickly. Once it's paired and shows up in the UI as a generic device, press the CF button 3 times again quickly to make it wakeup and get configured. Then it will correctly be identified as 3 devices (combo device + temperature + humidity).&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Motion Detector &lt;br /&gt;
| SP103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=354&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110874R01_SP103_%20-%20ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Fortrezz &lt;br /&gt;
| Water /Freeze &lt;br /&gt;
| WWA-001 &lt;br /&gt;
| &amp;amp;nbsp;?????? &lt;br /&gt;
| US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.Fortrezz.com Link] [http://www.fortrezz.com/resources/WWA_manual_01May2009.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Zmistro &lt;br /&gt;
| Works great I would place a few in your house. Bathrooms, laundry , kitchen , basement. Great product!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| CA-9000 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthomeusa.com/Products/CA9000/manuals/CA9000.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Aaron &lt;br /&gt;
| This device has limited functionality as a sensor. It can only be used to turn on and off a light directly by setting an association, which Vera supports. It does not fire events, so you cannot use it as an event on a scene.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 4-gang radio transmitter, flush-mounted &lt;br /&gt;
| 506004 &lt;br /&gt;
| 2,2,27,1,4 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5060_581_02_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Note: There is proprietary functionality here. Support will be added soon. &lt;br /&gt;
Quite complex device; partially supported by Vera; can be used as a window/door sensor (as of firmware 1.0.900) ... &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs (Aeotec)&amp;lt;br&amp;gt; &lt;br /&gt;
| 4 in 1 Sensor (Multisensor)&amp;lt;br&amp;gt; &lt;br /&gt;
| DSB05106-ZWUS &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://aeotec.com/z-wave-sensor/47-multisensor-manual.html Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvadi&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://wiki.micasaverde.com/index.php/Aeon_4in1 Link]&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Fibaro&amp;lt;br&amp;gt; &lt;br /&gt;
| Relay Switch&amp;lt;br&amp;gt; &lt;br /&gt;
| FGS211 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [https://www.uk-automation.co.uk/pdf/FGS211.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| This device is identified as a master device with 1 child device. The master controls the S1 output, the child controls the S2 output.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Door Locks'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| BE369 (deadbolt) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Mid 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/link/product_tour/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Read the instructions here: [[Schlage Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Kwikset &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here:[[Kwikset Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Yale &lt;br /&gt;
| Deadbolt &lt;br /&gt;
| Real Living &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Quickstart%2018JUL11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Instructions%2023AUG11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here: [[Yale Lock]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Drapes/Blinds'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DBMZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/dc_mot_ctrls/z-wave/dbmz/dbmz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| ABMHZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/int_ac_mot_ctrls/z-wave/abmhz/abmhz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/AC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| AC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/DC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Relay controls'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Contactor control box &lt;br /&gt;
| CA3750 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.intouchcontrols.com/~/media/Files/InTouchControls/Products/Spec%20Sheets/CA3750.ashx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Multi-instance class supported for this device. Vera is able to control each of the 2 relays independently if desired. please note unit shows as three switches this is a bug with Intermatic not a real issue.You can check the box in devices to not show the second listing of the first relay in &amp;quot;Dasboard&amp;quot; You can control heavy loads like a water heater ,pool pump motor/s. great device&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Window Coverings'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 5025xx, 5035xx, 5045xx &lt;br /&gt;
| 6,2,27,2,3 and 6,2,27,2,4 &lt;br /&gt;
| EU &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5025_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work. GUI buttons do not work with Luup release 1.0.843 and 1.0.862 (fixed with Luup release 1.0.879).&amp;lt;br&amp;gt;Workaround: Use a Luup Scene with the following code:&amp;lt;tt&amp;gt;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&amp;lt;tt&amp;gt;local lul_arguments = {}&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_arguments[&amp;quot;newTargetValue&amp;quot;]=&amp;quot;0&amp;quot;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_resultcode,lul_resultstring,lul_job,lul_returnarguments = luup.call_action(&amp;quot;urn:upnp-org:serviceId:SwitchPower1&amp;quot;,&amp;quot;SetTarget&amp;quot;,lul_arguments,6) &amp;lt;/tt&amp;gt; Replace &amp;quot;6&amp;quot; with your device number, replace &amp;quot;0&amp;quot; with &amp;quot;1&amp;quot; for inverse action. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Duewi &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 054368 &lt;br /&gt;
| 6,2,51,1,0 &lt;br /&gt;
| EU &lt;br /&gt;
| Jun 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.de/index.php?productid=37344 Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Lutz &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Some additional observations by Ap15e (Vera V1, firmware 1.0.979): &lt;br /&gt;
*GUI button 'Stop' and corresponding UPnP service does not work. &lt;br /&gt;
*GUI button 'Up' moves the shutter down, GUI button 'Down' moves the shutter up ... &lt;br /&gt;
*After adjusting the running times even the slide bar seems to work! &lt;br /&gt;
*I got a report from a user that the düwi device may fail due to interference from the shutter motor. In this case an additional filter is required (costs about 25 €/direction). &lt;br /&gt;
*More information is available at [http://forum.micasaverde.com/index.php?topic=3359.msg16142#msg16142 Link]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that work'''  ===&lt;br /&gt;
&lt;br /&gt;
See [http://wiki.micasaverde.com/index.php/IP_Cameras IP Cameras] for a more comprehensive and up to date list &lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC54GCA &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive camera with moderate image quality. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC210 &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and pan/tilt ability. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC80N &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi?size=2&amp;amp;amp;quality=1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and wireless N. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera. &lt;br /&gt;
Size can be (160 x 120 = 1,320 x 240 = 2,640 x 480 = 3) and Quality can be (Very High= 1,High= 2,Normal= 3,Low= 4,Very Low= 5) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| iCamView &lt;br /&gt;
| IP Camera Server &lt;br /&gt;
| iCV-22, iCV-32 &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=1&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=2&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich IP camera server, suports up to two compatible USB cameras, optional WiFi support, USB storage, USB hubs, motion; works with range of cameras, see icamview.co.uk. Excellent modular solution. They do ship to North America.&lt;br /&gt;
|-&lt;br /&gt;
| SmartHome.com.au &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Z~Series Wireless Camera &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| tmpfs/auto.jpg &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Inexpensive IP security camera designed for the Australian and New Zealand Z-Wave users, but shipping world wide.&lt;br /&gt;
|-&lt;br /&gt;
| [http://global.level1.com LevelOne] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WCS-2030 &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| cgi-bin/video.jpg &lt;br /&gt;
| [http://reviews.cnet.com/search-results/levelone-camcon-wcs-2030/1707-5_7-31972011.html CNET review] &lt;br /&gt;
| An inexpensive IP camera with good image quality. Can be connected wired or wirelessly. Most LevelOne cameras use the same path for the JPEG image, so most of their line (both low and high end) should be compatible. Video and audio also stream over RTSP, which can be customized through the camera's web interface.&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Voyager I &lt;br /&gt;
| firmware 2.02 and above &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive&amp;amp;nbsp;IP&amp;amp;nbsp;camera that is very feature rich, has good image quality, night vision capabilities, motion detection, two-way audio, video streaming over TCP, UDP, or HTTP, and other configurable features. In firmware version 2.02, Asante added the capability to retrieve an image via a URL (however, it is delayed by 3 seconds). Offers a full-featured web interface in IE using an ActiveX plug-in (limited capabilites in other browsers).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Alarm Panels  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Model(s) &lt;br /&gt;
! Required module &lt;br /&gt;
! Plugin &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| DSC &lt;br /&gt;
| &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=1 PowerSeries PC1616] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=2 PowerSeries PC1832] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=3 PowerSeries PC1864]&lt;br /&gt;
&lt;br /&gt;
| [http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=22 IT-100] or [https://www.eyez-on.com/EZMAIN/envisalink2ds.php Envisalink IP170/2DS] &lt;br /&gt;
| [http://code.mios.com/trac/mios_dscalarmpanel/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Elk &lt;br /&gt;
| &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_2981420/M1_Gold_Cross_Platform_Control%C2%AE M1 Gold] &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_3127911/M1EZ8_Cross_Platform_Control%C2%AE M1EZ8]&lt;br /&gt;
&lt;br /&gt;
| The M1EZ8 panel requires the [http://www.elkproducts.com/_webapp_2981423/elk-m1ez8msi__m1ez8_main_serial_interface ELK-M1EZ8MSI] Main Serial Port Interface. &lt;br /&gt;
| [http://code.mios.com/trac/mios_elk-alarm-panel/wiki/WikiStart Link] &lt;br /&gt;
| You can use the ELK-M1XEP Ethernet Interface to connect the panels to Vera on the Ethernet port.&lt;br /&gt;
|-&lt;br /&gt;
| GE Security / Interlogix / Caddx &lt;br /&gt;
| &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-4] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-6] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8E]&lt;br /&gt;
&lt;br /&gt;
| [http://utcfssecurityproducts.com/ProductsAndServices/Pages/NX-584.aspx NX-584] &lt;br /&gt;
| [http://code.mios.com/trac/mios_caddxnx584/wiki/WikiStart Link] &lt;br /&gt;
| NetworX NX-8E already has a RS-232 interface, so it doesn't require the NX-584 module.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128BPT, VISTA-128BPE, VISTA-128FBP, VISTA-250BP, VISTA-250BPT, VISTA-250BPE and VISTA-250FBP &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128FBP, VISTA-250BP, and VISTA-250FBP panels require the [http://www.security.honeywell.com/me/intrusion/products/exp/ac/138478.html 4100SM] module. &lt;br /&gt;
| [http://code.mios.com/trac/mios_ademco-panels-plugin/wiki/WikiStart Link] &lt;br /&gt;
| If your Vista panel is not on this list, look at the next row.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| 10SE, 20SE, 10P, 15P, 20P, 50P, etc. &lt;br /&gt;
| [http://www.nutech.com/online-store/18.html AD2USB] &lt;br /&gt;
| [http://code.mios.com/trac/mios_vista-alarm-panel-ad2usb/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paradox &lt;br /&gt;
| &lt;br /&gt;
*Digiplex DGP-848 &lt;br /&gt;
*EVO48 &lt;br /&gt;
*[http://www.paradox.com/Products/default.asp?CATID=7 EVO192]&lt;br /&gt;
&lt;br /&gt;
| [http://www.paradox.com/Products/default.asp?CATID=7&amp;amp;SUBCATID=75&amp;amp;PRD=234 PRT3 Integration Module] &lt;br /&gt;
| [http://code.mios.com/trac/mios_paradox-alarm/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Visonic &lt;br /&gt;
| &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMax PowerMax] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPlus PowerMax+] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxComplete PowerMaxComplete] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPro PowerMaxPro]&lt;br /&gt;
&lt;br /&gt;
| RS-232 Interface Module &lt;br /&gt;
| [http://code.mios.com/trac/mios_visonic-powermax/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Misc  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Door Bell&amp;lt;br&amp;gt; &lt;br /&gt;
| UTSE03A&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| When added to a third party Z-Wave controller there is no way to associate the push button with the door bell itself, so the push button has no use. In order to make it work, the door bell needs to be associated with a regular Z-Wave switch either by creating associations or by creating a scene.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Supported_Hardware</id>
		<title>Supported Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Supported_Hardware"/>
				<updated>2013-02-05T12:53:46Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a page for Supported Z-Wave devices. &lt;br /&gt;
&lt;br /&gt;
Alternative hardware pages exist for &lt;br /&gt;
&lt;br /&gt;
*[[ZWave Add Controller|Z-Wave Handheld Remote Controls, Gateways and Scene Controllers]] &lt;br /&gt;
*[[IP Cameras|IP Enabled Cameras]] &lt;br /&gt;
*[[Insteon Supported Hardware|Insteon/X10 devices]] &lt;br /&gt;
*USB, or USB-Serial, [[Serial Supported Hardware|Interface devices]]&lt;br /&gt;
&lt;br /&gt;
In general, any device with the Z-Wave logo should work with Vera. A list of tested Z-Wave devices is below, with specific notes for each type of device. This is a wiki, so feel free to add to the page. To learn about Z-Wave routing and fixing routing problems see: [[Heal Network]] &lt;br /&gt;
&lt;br /&gt;
== Hardware Reported to Work  ==&lt;br /&gt;
&lt;br /&gt;
*We strongly encourage users to list any and all products they tested and installed. &lt;br /&gt;
*If a product works but you did not like it, please list it anyway. It may be the only product available to some users.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT! The devices listed here have been added by installers, technicians and users like yourself. Results may vary upon installations. MiCasaVerde does not guarantee operation and compatibility with your installation. The listed devices were found to work with their specific installation. Mixing different series and brands of equipment is not guaranteed in any way to work with other series and brands. It is very likely that users have not fully tested all features of the devices, so it is possible that a device listed here as compatible, will not prove compatible with your hardware. If you are editing this wiki DO NOT REMOVE a listed working device if it hasn't worked for you. Seek help to get the device to work under your individual circumstance. If you are adding to this wiki, please provide links to data for the device and add any tips you feel may benefit someone wanting to implement the device into an installation.''' &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Lighting Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;width: 1220px; height: 491px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Dimmer Switch &lt;br /&gt;
| ZDW120 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, easy to install, LED is a very bright blue....can be programmed to be off when the light is off or on. &amp;quot;series 200&amp;quot; model supports Group Associations 2 &amp;amp;amp; 3. (The older &amp;quot;series 100&amp;quot; supported Groups 1-4, but is no longer available.)&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| ZDW103 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, LED is a very bright blue....can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-wire Dimmer Switch &lt;br /&gt;
| ZDW232 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jul 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5198 Newb] &lt;br /&gt;
| Wall-mount, 230v, 500W, 2-Wire (no neutral), works well. Can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Relay Switch &lt;br /&gt;
| ZRW113 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Controls Florescent Lamps very well! No humming at all.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Companion Switch &lt;br /&gt;
| AS101 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, The trick here is to install this device where the power comes in.&lt;br /&gt;
|-&lt;br /&gt;
| ACT&amp;lt;br&amp;gt; &lt;br /&gt;
| 3-way Dimmer Switch, 2 rocker&amp;lt;br&amp;gt; &lt;br /&gt;
| ZDM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZDM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| Dimmer, Wall-mount, 230v, 500W,&amp;lt;br&amp;gt;3-way, 3 Wire, 2 rocker&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Relay Switch, 2 rocker &lt;br /&gt;
| ZRM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZRM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Relay, Wall-mount, 230v, 6A,&amp;lt;br&amp;gt; 3-way, 3 Wire, 2 rocker - '''Status polling does not work with Vera'''&amp;lt;br&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cooper &lt;br /&gt;
| Accessory (3-way slave) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[Cooper Accessory Slave]]&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 2 wire dimmer &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 05431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall switch.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 06431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| The newer in-wall Düwi switch (also designated Düwi.me), marked with a green sticker on the housing. This switch supports status push.&lt;br /&gt;
|-&lt;br /&gt;
| Fibar &lt;br /&gt;
| 3 wire double switch &lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| This device is designed to use (and be mounted behind) existing light switches. Supports status push. Also available: single switch, dimmer, blind control.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Lamp Module w/Dimmer &lt;br /&gt;
| 45602 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with most incandescent bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Fluorescent Light &amp;amp;amp; Appliance Module &lt;br /&gt;
| 45603 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Outdoor Switch Module &lt;br /&gt;
| 45604 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off/Dim Dimmer Switch &lt;br /&gt;
| 45606 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45606-Manual-Eng.pdf Link] [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Dimmer-Switch-63p555.htm Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Discontinued, See 45612. Requires neutral lead. Works fine with most bulbs. With Philips AmbientLED, flickers at &amp;amp;gt;95% brightness. Supports beaming. Flickers at low-levels with dimmable LED.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| 45607 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off Switch &lt;br /&gt;
| 45609 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Auxiliary Switch &lt;br /&gt;
| 45610 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No zwave function; for 3 and 4-way switching kits&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 2-way Rocker Dimmer &lt;br /&gt;
| 45612 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2012 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No neutral required; replaces 45606&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Dimmer Kit &lt;br /&gt;
| 45613 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Possible error in 45613 manual diagrams, see 45610 diagrams&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Switch Kit &lt;br /&gt;
| 45614 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Relay Switch Adapter &lt;br /&gt;
| RAone SmartPower &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartpower_zw_tech_doc.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Dimmer Switch Adapter &lt;br /&gt;
| RAone SmartDimmer &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartdimmer-00110001-tech.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA03C &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Sept 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha03.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5852 JonnyO] &lt;br /&gt;
| Easy to Instal, supports dimming&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Screw-in Lamp Module &lt;br /&gt;
| HA05C &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Easy install, easy to pair with Vera!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 300 watt dimmer &lt;br /&gt;
| HA06 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha06.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable Dimmer Switch. incandescent/halogen only. Loads for 300 watts or less no neutral required. Great for dimming one bulb.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Switch &lt;br /&gt;
| HA18 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha18.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Affordable 3-way Switch&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| HA20 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha20.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-460-intermatic-homesettings-ha20c-3-way-in-wall-switch-dimmer.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable 3-way 600W dimmer&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRI06-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305784&amp;amp;section=25501 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| VRCS4-MRX &lt;br /&gt;
| 7,2,67,0,2 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well, pair as per [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller], then again holding &amp;quot;2&amp;quot; and &amp;quot;4&amp;quot; to pair the Switch (&amp;quot;Load&amp;quot;) itself.&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRM10-1LX &lt;br /&gt;
| 1 &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=104&amp;amp;products_id=170 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000ZKM7I8/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=65 mark-hc] &lt;br /&gt;
| This is a high quality dimmer geared towards high-end installations&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1L &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| May 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| (Coordinating Remote??)&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LZ &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Light almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for dimmer inserts &lt;br /&gt;
| 5026xx, 5036xx, 5046xx &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5026_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for switch inserts &lt;br /&gt;
| 5024xx, 5034xx, 5044xx &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/5024xx_5034xx_5044xx_Sensorflaeche4pin_CONNECT_INT.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Single Radio flush-mounted receiver &lt;br /&gt;
| 507001 &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5070_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, flush-mounted &lt;br /&gt;
| 507501, 507601 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5075_581_00_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 1-gang universal dimmer, flush-mounted &lt;br /&gt;
| 507900 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5079_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Monster &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| IWC600 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is the same as the Leviton scene controller. Follow these instructions: [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller]&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| RP200 &lt;br /&gt;
| 1.0 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/products/Productdetail3.asp?StyleID=139&amp;amp;FinishID=12&amp;amp;FunctionID=77 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Works well&amp;lt;br&amp;gt;Sold with Schlage LiNK lock system&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Plug &amp;amp;amp; Receptacle Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1677&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRR150W &lt;br /&gt;
| 2.2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Works like a champ! Easy to Install. One receptacle RF controlled, the other is hot&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in switch.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZDP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Cooper Wiring Devices &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| RFTR9505-T &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://solutions.cooperwiringdevices.com/common/brands.cfm?pg=Detail&amp;amp;brandName=CWD%20Technology&amp;amp;category=Aspire%20RF%20Lighting%20Control%20System%3A%20Receptacles&amp;amp;id=16772 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| One receptacle is RF controlled, the other is hot. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Duwi &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;05437&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| Feb 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.com/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| ezhome &lt;br /&gt;
| High quality Plug-in switch, Easy install and works well&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN157-2&amp;lt;/span&amp;gt; &lt;br /&gt;
| 4,2,64,1,2 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=501&amp;amp;CateUIDList=0,83 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN158&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Works well. Supports status push and power metering&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| In-wall Duplex Receptacle &lt;br /&gt;
| 45605 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| US &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Duplex-Receptacle-63p554.htm Link] [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45605-Manual-Eng.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Easy. Works.&lt;br /&gt;
|-&lt;br /&gt;
| Home Manageables &lt;br /&gt;
| Lamp Module (Dimming) &lt;br /&gt;
| HM-LM001 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| 200W maximum load, 25W minimum load &lt;br /&gt;
| [http://www.homemanageables.com/manuals/HM-LM001%20Manual%20Final.pdf Link] &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Support for incandescent loads only. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| CA3500 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=105&amp;amp;products_id=97 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000U3XYPA/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is a decent, but expensive solution for in-wall receptacles. One receptacle RF controlled, the other is hot.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA02C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=108&amp;amp;products_id=98 Link] &lt;br /&gt;
| [http://www.amazon.com/Intermatic-HA02C-Settings-Heavy-Duty-Appliance/dp/B000BJSDZO/ref=sr_1_3?ie=UTF8&amp;amp;qid=1227467418&amp;amp;sr=8-3 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Seems to work well&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Outdoor Module &lt;br /&gt;
| HA04C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Easy to Install.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, plug adapter, 2000 W &lt;br /&gt;
| 508519 &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5085_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Monster Central &lt;br /&gt;
| 1800W Appliance Module &lt;br /&gt;
| ML-LAS1000 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Jan 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.monstercable.com/productdisplay.asp?pin=3164 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Easy to Install. I use this as a ZWave signal repeater. Appears to be a badge-engineering of [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=309748&amp;amp;section=25542 Leviton VRP15-1LW]&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA-02L&amp;lt;br&amp;gt;(HA-02WD) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indooor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-02WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Note: link is to HA-02WD manual.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA-03WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-03WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Outdoor Lighting Module &lt;br /&gt;
| HA-04WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2012 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-04WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Thermostat Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| WDTC-20 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/WDTC-20---Z-Wave-Thermostat-Wayne-Dalton-P599C38.aspx Link] &lt;br /&gt;
| [http://www.amazon.com/Wayne-Dalton-Corporation-Z-Wave-Thermostat/dp/B001F8QKYQ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Has 2 inclusion modes: 1) press and release the bind button and the STAT will be included as a thermostat and works with Vera, 2) press and hold the bind button and it will be added as a binary switch for compatibility with old, non-compliant remotes. If it's added in the wrong mode, remove it and re-add it. Works great simple to use!&lt;br /&gt;
|-&lt;br /&gt;
| HAI &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| RC-80BZ &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homeauto.com Link] &lt;br /&gt;
| [http://www.homeauto.com/Downloads/Products/Omnistat/rcr80.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, Hold button feature not able to control by Vera at this time. Priced above 200.00. Has internal setback programs. Works great.&lt;br /&gt;
|-&lt;br /&gt;
| RCS &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| TZ43 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, much more feature rich the the WDTC-20 but comes with a hefty price tag ($214.95). Wish Vera could use all the features in this Thermostat! '''Note:'''''You need to set the thermostat to show the temperature, on its display, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Schlage/Trane &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| Trane &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.link.schlage.com/Products/Pages/Thermostat.aspx Link] &lt;br /&gt;
| [http://www.trane.com/Residential/Products/Thermostats Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| It's the same thermostat as the RCS TZ43 and it has the same issue: it's accepting &amp;quot;Set Temp Point&amp;quot; commands only in the measurement unit that is displayed on its screen. '''Note:'''''You need to set the thermostat to show the temperature, on its screen, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| InTouch &lt;br /&gt;
| CA8900 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-663-intermatic-intouch-ca8900-z-wave-digital-thermostat.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Looks very similar to the Wayne Dalton WDTC-20 listed here. works great, simple to use&lt;br /&gt;
|-&lt;br /&gt;
| Danfoss &lt;br /&gt;
| Radiator thermostat &lt;br /&gt;
| RA PLUS-w &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://raplusw.com/Content/E962FC0B-6461-4319-82FE-3E1E765142CF.html Link] [http://raplusw.com/PCMPDF/Data%20sheet%20RA-PLUS-w_02.pdf Link] &lt;br /&gt;
| [http://www.eurox10.com/Product/ZWave/Actuators/ZWDNF_RA_PLUS-W.htm Link] [http://www.eurox10.com] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See: [[Danfoss Thermostat]] for installation instructions&amp;lt;br&amp;gt;If the device cannot be configured at the final location, move the device closer to Vera and try again (this device might require a direct connection to Vera for configuration).&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT22 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.radiothermostat.com/documents/CT-22-Operation-27aug10.pdf Link] [http://www.radiothermostat.com/documents/CT-22-Installation-27aug10.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| &lt;br /&gt;
To include the thermostat into your network, you just have to install the USNAP module in the thermostat while Vera is in Include mode. To exclude the thermostat from your network, you just have to install the USNAP module in the thermostat while Vera is in Exclude mode.You can watch a video about how to install it [http://www.youtube.com/watch?v=M9VNuHGENP0 here]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT30 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvflorin&amp;lt;br&amp;gt; &lt;br /&gt;
| If you experience a problem with other Z-Wave devices, see this [http://wiki.micasaverde.com/images/3/39/RTCOA_Z-Wave_v7.4_workaround.zip note].&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Remotec &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| ZTS-100 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| To include the thermostat into your network, hold the home button for 2 seconds until the display says 'noc', which means 'no connection', then press the Prog button and the readout will say 'Srh'. If it doesn't say 'noc' or if the radio icon is visible in the upper right corner, the thermostat is already included and must be removed/reset. To remove/reset the thermostat hold the home button for 2 seconds until the display says 'done', then press the Prog button.&lt;br /&gt;
|-&lt;br /&gt;
| Horstmann &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| HRT4-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4-ZWweb.pdf Link] [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf Link] &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf &amp;lt;br&amp;gt;] &lt;br /&gt;
| Daniel &lt;br /&gt;
| After you include the thermostat in Vera's network, you will have to make some configuration changes in order for it to report the temperature change. See: [[HRT4-ZW]] for more information.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Sensors'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1369&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| ZIR000 / ZIR010 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU (ZIR010) or US (ZIR000) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR000_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR000_instr.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR010_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR010_instr.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Remove the cover, pair to Vera's dongle by using the push-button on the left of the circuit board. Vera must configure it to work, and it can only be configured within less of a minute (30 sec best) of inserting the batteries. With Vera's dongle removed, remove/reinsert the batteries, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs &lt;br /&gt;
| 3-in-1 sensor (light/humidity/temperature) &lt;br /&gt;
| MultiSensor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.aeon-labs.com/site/public/lib/download.php?type=s&amp;amp;f=29 Specs] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Pair to Vera by using the push-button. Vera must configure it to work, and it can only be configured within 10 minutes of inserting the batteries.&lt;br /&gt;
|-&lt;br /&gt;
| Express Controls aka HomeSeer &lt;br /&gt;
| 3-in-1 sensor (light/temperature/motion) &lt;br /&gt;
| HSM100 / EZMotion &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[ExpressControls3in1]]&amp;lt;br&amp;gt;If the motion sensor does not work right after inclusion and configuration, remove the batteries for a few seconds.&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Hawking/Home Manageables &lt;br /&gt;
| Door/window sensor &lt;br /&gt;
| SM103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=355&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110873R01_SM103_-ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Pair using the intrusion button. The sensor will accept configuration within a few minutes of the initial pairing, or of pressing the intrusion button on the back even after it's paired. Pair the device, or if it's already paired, press the intrusion button, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page. NOTE: There is some confusion about the orientation of the sensor. The main sensor body has a back (where the intrusion is), a front (where the logo and LED is), and the 2 other surfaces, one of which has a curved edge, and the other is flat. The magnet needs to go against the flat surface. And the flat surface on the magnet should be as close as possible to the flat surface on the sensor, lined up in the middle so the line which passes through the LED lines up with the sensor. &lt;br /&gt;
Note: In case the inclusion/exclusion fails you should remove/reinsert the batteries from the sensor and within a few seconds the sensor should be automatically detected. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Home Manageables &lt;br /&gt;
| Humidity + Temperature sensor &lt;br /&gt;
| HM-TS001 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jan 2010 (requires version 1.1.0 or greater) &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.asihome.com/ASIshop/product_info.php?products_id=3946 Link] [http://www.homeseer.com/pdfs/guides/HM_TD001.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| micasaverde &lt;br /&gt;
| Pair or unpair the device by tapping the CF button 3 times very quickly. Once it's paired and shows up in the UI as a generic device, press the CF button 3 times again quickly to make it wakeup and get configured. Then it will correctly be identified as 3 devices (combo device + temperature + humidity).&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Motion Detector &lt;br /&gt;
| SP103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=354&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110874R01_SP103_%20-%20ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Fortrezz &lt;br /&gt;
| Water /Freeze &lt;br /&gt;
| WWA-001 &lt;br /&gt;
| &amp;amp;nbsp;?????? &lt;br /&gt;
| US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.Fortrezz.com Link] [http://www.fortrezz.com/resources/WWA_manual_01May2009.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Zmistro &lt;br /&gt;
| Works great I would place a few in your house. Bathrooms, laundry , kitchen , basement. Great product!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| CA-9000 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthomeusa.com/Products/CA9000/manuals/CA9000.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Aaron &lt;br /&gt;
| This device has limited functionality as a sensor. It can only be used to turn on and off a light directly by setting an association, which Vera supports. It does not fire events, so you cannot use it as an event on a scene.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 4-gang radio transmitter, flush-mounted &lt;br /&gt;
| 506004 &lt;br /&gt;
| 2,2,27,1,4 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5060_581_02_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Note: There is proprietary functionality here. Support will be added soon. &lt;br /&gt;
Quite complex device; partially supported by Vera; can be used as a window/door sensor (as of firmware 1.0.900) ... &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs (Aeotec)&amp;lt;br&amp;gt;&lt;br /&gt;
| 4 in 1 Sensor (Multisensor)&amp;lt;br&amp;gt;&lt;br /&gt;
| DSB05106-ZWUS &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| US&amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| Indoor/Outdoor&amp;lt;br&amp;gt;&lt;br /&gt;
| [http://aeotec.com/z-wave-sensor/47-multisensor-manual.html Link]&amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| mcvadi&amp;lt;br&amp;gt;&lt;br /&gt;
| [http://wiki.micasaverde.com/index.php/Aeon_4in1 Link]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Fibaro&amp;lt;br&amp;gt;&lt;br /&gt;
| FGS211 Relay Switch&amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Door Locks'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| BE369 (deadbolt) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Mid 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/link/product_tour/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Read the instructions here: [[Schlage Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Kwikset &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here:[[Kwikset Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Yale &lt;br /&gt;
| Deadbolt &lt;br /&gt;
| Real Living &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Quickstart%2018JUL11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Instructions%2023AUG11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here: [[Yale Lock]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Drapes/Blinds'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DBMZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/dc_mot_ctrls/z-wave/dbmz/dbmz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| ABMHZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/int_ac_mot_ctrls/z-wave/abmhz/abmhz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/AC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| AC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/DC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Relay controls'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Contactor control box &lt;br /&gt;
| CA3750 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.intouchcontrols.com/~/media/Files/InTouchControls/Products/Spec%20Sheets/CA3750.ashx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Multi-instance class supported for this device. Vera is able to control each of the 2 relays independently if desired. please note unit shows as three switches this is a bug with Intermatic not a real issue.You can check the box in devices to not show the second listing of the first relay in &amp;quot;Dasboard&amp;quot; You can control heavy loads like a water heater ,pool pump motor/s. great device&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Window Coverings'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 5025xx, 5035xx, 5045xx &lt;br /&gt;
| 6,2,27,2,3 and 6,2,27,2,4 &lt;br /&gt;
| EU &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5025_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work. GUI buttons do not work with Luup release 1.0.843 and 1.0.862 (fixed with Luup release 1.0.879).&amp;lt;br&amp;gt;Workaround: Use a Luup Scene with the following code:&amp;lt;tt&amp;gt;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&amp;lt;tt&amp;gt;local lul_arguments = {}&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_arguments[&amp;quot;newTargetValue&amp;quot;]=&amp;quot;0&amp;quot;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_resultcode,lul_resultstring,lul_job,lul_returnarguments = luup.call_action(&amp;quot;urn:upnp-org:serviceId:SwitchPower1&amp;quot;,&amp;quot;SetTarget&amp;quot;,lul_arguments,6) &amp;lt;/tt&amp;gt; Replace &amp;quot;6&amp;quot; with your device number, replace &amp;quot;0&amp;quot; with &amp;quot;1&amp;quot; for inverse action. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Duewi &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 054368 &lt;br /&gt;
| 6,2,51,1,0 &lt;br /&gt;
| EU &lt;br /&gt;
| Jun 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.de/index.php?productid=37344 Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Lutz &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Some additional observations by Ap15e (Vera V1, firmware 1.0.979): &lt;br /&gt;
*GUI button 'Stop' and corresponding UPnP service does not work. &lt;br /&gt;
*GUI button 'Up' moves the shutter down, GUI button 'Down' moves the shutter up ... &lt;br /&gt;
*After adjusting the running times even the slide bar seems to work! &lt;br /&gt;
*I got a report from a user that the düwi device may fail due to interference from the shutter motor. In this case an additional filter is required (costs about 25 €/direction). &lt;br /&gt;
*More information is available at [http://forum.micasaverde.com/index.php?topic=3359.msg16142#msg16142 Link]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that work'''  ===&lt;br /&gt;
&lt;br /&gt;
See [http://wiki.micasaverde.com/index.php/IP_Cameras IP Cameras] for a more comprehensive and up to date list &lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC54GCA &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive camera with moderate image quality. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC210 &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and pan/tilt ability. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC80N &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi?size=2&amp;amp;amp;quality=1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and wireless N. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera. &lt;br /&gt;
Size can be (160 x 120 = 1,320 x 240 = 2,640 x 480 = 3) and Quality can be (Very High= 1,High= 2,Normal= 3,Low= 4,Very Low= 5) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| iCamView &lt;br /&gt;
| IP Camera Server &lt;br /&gt;
| iCV-22, iCV-32 &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=1&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=2&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich IP camera server, suports up to two compatible USB cameras, optional WiFi support, USB storage, USB hubs, motion; works with range of cameras, see icamview.co.uk. Excellent modular solution. They do ship to North America.&lt;br /&gt;
|-&lt;br /&gt;
| SmartHome.com.au &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Z~Series Wireless Camera &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| tmpfs/auto.jpg &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Inexpensive IP security camera designed for the Australian and New Zealand Z-Wave users, but shipping world wide.&lt;br /&gt;
|-&lt;br /&gt;
| [http://global.level1.com LevelOne] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WCS-2030 &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| cgi-bin/video.jpg &lt;br /&gt;
| [http://reviews.cnet.com/search-results/levelone-camcon-wcs-2030/1707-5_7-31972011.html CNET review] &lt;br /&gt;
| An inexpensive IP camera with good image quality. Can be connected wired or wirelessly. Most LevelOne cameras use the same path for the JPEG image, so most of their line (both low and high end) should be compatible. Video and audio also stream over RTSP, which can be customized through the camera's web interface.&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Voyager I &lt;br /&gt;
| firmware 2.02 and above &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive&amp;amp;nbsp;IP&amp;amp;nbsp;camera that is very feature rich, has good image quality, night vision capabilities, motion detection, two-way audio, video streaming over TCP, UDP, or HTTP, and other configurable features. In firmware version 2.02, Asante added the capability to retrieve an image via a URL (however, it is delayed by 3 seconds). Offers a full-featured web interface in IE using an ActiveX plug-in (limited capabilites in other browsers).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Alarm Panels  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Model(s) &lt;br /&gt;
! Required module &lt;br /&gt;
! Plugin &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| DSC &lt;br /&gt;
| &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=1 PowerSeries PC1616] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=2 PowerSeries PC1832] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=3 PowerSeries PC1864]&lt;br /&gt;
&lt;br /&gt;
| [http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=22 IT-100] or [https://www.eyez-on.com/EZMAIN/envisalink2ds.php Envisalink IP170/2DS] &lt;br /&gt;
| [http://code.mios.com/trac/mios_dscalarmpanel/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Elk &lt;br /&gt;
| &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_2981420/M1_Gold_Cross_Platform_Control%C2%AE M1 Gold] &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_3127911/M1EZ8_Cross_Platform_Control%C2%AE M1EZ8]&lt;br /&gt;
&lt;br /&gt;
| The M1EZ8 panel requires the [http://www.elkproducts.com/_webapp_2981423/elk-m1ez8msi__m1ez8_main_serial_interface ELK-M1EZ8MSI] Main Serial Port Interface. &lt;br /&gt;
| [http://code.mios.com/trac/mios_elk-alarm-panel/wiki/WikiStart Link] &lt;br /&gt;
| You can use the ELK-M1XEP Ethernet Interface to connect the panels to Vera on the Ethernet port.&lt;br /&gt;
|-&lt;br /&gt;
| GE Security / Interlogix / Caddx &lt;br /&gt;
| &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-4] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-6] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8E]&lt;br /&gt;
&lt;br /&gt;
| [http://utcfssecurityproducts.com/ProductsAndServices/Pages/NX-584.aspx NX-584] &lt;br /&gt;
| [http://code.mios.com/trac/mios_caddxnx584/wiki/WikiStart Link] &lt;br /&gt;
| NetworX NX-8E already has a RS-232 interface, so it doesn't require the NX-584 module.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128BPT, VISTA-128BPE, VISTA-128FBP, VISTA-250BP, VISTA-250BPT, VISTA-250BPE and VISTA-250FBP &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128FBP, VISTA-250BP, and VISTA-250FBP panels require the [http://www.security.honeywell.com/me/intrusion/products/exp/ac/138478.html 4100SM] module. &lt;br /&gt;
| [http://code.mios.com/trac/mios_ademco-panels-plugin/wiki/WikiStart Link] &lt;br /&gt;
| If your Vista panel is not on this list, look at the next row.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| 10SE, 20SE, 10P, 15P, 20P, 50P, etc. &lt;br /&gt;
| [http://www.nutech.com/online-store/18.html AD2USB] &lt;br /&gt;
| [http://code.mios.com/trac/mios_vista-alarm-panel-ad2usb/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paradox &lt;br /&gt;
| &lt;br /&gt;
*Digiplex DGP-848 &lt;br /&gt;
*EVO48 &lt;br /&gt;
*[http://www.paradox.com/Products/default.asp?CATID=7 EVO192]&lt;br /&gt;
&lt;br /&gt;
| [http://www.paradox.com/Products/default.asp?CATID=7&amp;amp;SUBCATID=75&amp;amp;PRD=234 PRT3 Integration Module] &lt;br /&gt;
| [http://code.mios.com/trac/mios_paradox-alarm/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Visonic &lt;br /&gt;
| &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMax PowerMax] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPlus PowerMax+] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxComplete PowerMaxComplete] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPro PowerMaxPro]&lt;br /&gt;
&lt;br /&gt;
| RS-232 Interface Module &lt;br /&gt;
| [http://code.mios.com/trac/mios_visonic-powermax/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Misc  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Door Bell&amp;lt;br&amp;gt; &lt;br /&gt;
| UTSE03A&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| When added to a third party Z-Wave controller there is no way to associate the push button with the door bell itself, so the push button has no use. In order to make it work, the door bell needs to be associated with a regular Z-Wave switch either by creating associations or by creating a scene.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Insteon_Intro</id>
		<title>Insteon Intro</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Insteon_Intro"/>
				<updated>2013-01-22T07:24:01Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here's a quick walkthrough of how to get started with Insteon/X10 in Vera. &lt;br /&gt;
&lt;br /&gt;
1. Connect a SmartLabs 2413U (works only with latest UI4 and UI5 firmware) '''PowerLinc Modem''' to one of Vera's USB ports. Alternatively, you can use a 2412S (RS-232) version and this Serial to USB adapter: http://www.futureelectronics.com/en/Technologies/Product.aspx?ProductID=UC232R10FUTURETECHNOLOGYDEVICES2297802 &lt;br /&gt;
&lt;br /&gt;
2. Go to Vera's Dashboard in your browser and click 'Devices', 'Add Devices', 'Add  Insteon or X10 devices'. If you see the message: &amp;quot;Insteon interface not found, do you want to enable it?&amp;quot;, click the 'Enable it' button, and then click 'Save'. Wait a minute for Vera to enable the Insteon/X10 module and find the PowerLinc. &lt;br /&gt;
&lt;br /&gt;
3. Go to 'Devices', 'Add Devices', 'Add  Insteon or X10 devices'. If Vera had a problem finding or setting up your Insteon modem, then you will see an error message at the top of the page. Otherwise you're good to go. &lt;br /&gt;
&lt;br /&gt;
4. To add Insteon devices, either tap the 'Set' button on the device itself, or enter the Insteon ID in the first box and click the 'Add' button. To add X10 devices, choose the device type, house id and room in the 'Add an X10' section, then click 'go'. &lt;br /&gt;
&lt;br /&gt;
5. When you've added new Insteon devices and Vera doesn't yet know what room they're in, you will see the 'unassigned devices' page, which shows you the new devices and asks you to pick the room the device is in. Do this and click continue. &lt;br /&gt;
&lt;br /&gt;
6. If Vera was successfully able to talk to your Insteon device, you will see it on the Dashboard. You can click the 'Settings' button next to a device to see more detailed information on the device, including it's ID. &lt;br /&gt;
&lt;br /&gt;
Refer to the page [[Insteon Supported Hardware]] for notes on specific Insteon devices and how they work.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*'''NOTE''': To control Insteon devices you need a Power Link MODEM (not a controller). For example the 2414U won't work because it's an Insteon controller (not a modem) and uses a different protocol. &lt;br /&gt;
*'''NOTE''': The Insteon devices use a mix of proprietary RF signals and powerline signal. In most cases Insteon devices run over powerline, and should connect to the Insteon Modem using the electrical wiring. However, if your house has a main breaker and one or more subpanels and Vera is tied to one subpanel and the devices are on another subpanel or on the main power panel, will not receive signals of the Insteon devices. PLM communications do not go across power panels! So you should have your Vera and the Insteon devices on the same circuit breaker panel.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Supported_Hardware</id>
		<title>Supported Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Supported_Hardware"/>
				<updated>2012-09-05T20:40:34Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a page for Supported Z-Wave devices. &lt;br /&gt;
&lt;br /&gt;
Alternative hardware pages exist for &lt;br /&gt;
&lt;br /&gt;
*[[ZWave Add Controller|Z-Wave Handheld Remote Controls, Gateways and Scene Controllers]] &lt;br /&gt;
*[[IP Cameras|IP Enabled Cameras]] &lt;br /&gt;
*[[Insteon Supported Hardware|Insteon/X10 devices]] &lt;br /&gt;
*USB, or USB-Serial, [[Serial Supported Hardware|Interface devices]]&lt;br /&gt;
&lt;br /&gt;
In general, any device with the Z-Wave logo should work with Vera. A list of tested Z-Wave devices is below, with specific notes for each type of device. This is a wiki, so feel free to add to the page. To learn about Z-Wave routing and fixing routing problems see: [[Heal Network]] &lt;br /&gt;
&lt;br /&gt;
== Hardware Reported to Work  ==&lt;br /&gt;
&lt;br /&gt;
*We strongly encourage users to list any and all products they tested and installed. &lt;br /&gt;
*If a product works but you did not like it, please list it anyway. It may be the only product available to some users.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT! The devices listed here have been added by installers, technicians and users like yourself. Results may vary upon installations. MiCasaVerde does not guarantee operation and compatibility with your installation. The listed devices were found to work with their specific installation. Mixing different series and brands of equipment is not guaranteed in any way to work with other series and brands. It is very likely that users have not fully tested all features of the devices, so it is possible that a device listed here as compatible, will not prove compatible with your hardware. If you are editing this wiki DO NOT REMOVE a listed working device if it hasn't worked for you. Seek help to get the device to work under your individual circumstance. If you are adding to this wiki, please provide links to data for the device and add any tips you feel may benefit someone wanting to implement the device into an installation.''' &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Lighting Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;width: 1220px; height: 491px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Dimmer Switch &lt;br /&gt;
| ZDW120 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, easy to install, LED is a very bright blue....can be programmed to be off when the light is off or on. &amp;quot;series 200&amp;quot; model supports Group Associations 2 &amp;amp;amp; 3. (The older &amp;quot;series 100&amp;quot; supported Groups 1-4, but is no longer available.)&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| ZDW103 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, LED is a very bright blue....can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-wire Dimmer Switch &lt;br /&gt;
| ZDW232 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jul 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5198 Newb] &lt;br /&gt;
| Wall-mount, 230v, 500W, 2-Wire (no neutral), works well. Can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Relay Switch &lt;br /&gt;
| ZRW113 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Controls Florescent Lamps very well! No humming at all.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Companion Switch &lt;br /&gt;
| AS101 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, The trick here is to install this device where the power comes in.&lt;br /&gt;
|-&lt;br /&gt;
| ACT&amp;lt;br&amp;gt; &lt;br /&gt;
| 3-way Dimmer Switch, 2 rocker&amp;lt;br&amp;gt; &lt;br /&gt;
| ZDM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZDM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| Dimmer, Wall-mount, 230v, 500W,&amp;lt;br&amp;gt;3-way, 3 Wire, 2 rocker&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Relay Switch, 2 rocker &lt;br /&gt;
| ZRM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZRM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Relay, Wall-mount, 230v, 6A,&amp;lt;br&amp;gt; 3-way, 3 Wire, 2 rocker - '''Status polling does not work with Vera'''&amp;lt;br&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cooper &lt;br /&gt;
| Accessory (3-way slave) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[Cooper Accessory Slave]]&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 2 wire dimmer &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 05431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall switch.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 06431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| The newer in-wall Düwi switch (also designated Düwi.me), marked with a green sticker on the housing. This switch supports status push.&lt;br /&gt;
|-&lt;br /&gt;
| Fibar &lt;br /&gt;
| 3 wire double switch &lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| This device is designed to use (and be mounted behind) existing light switches. Supports status push. Also available: single switch, dimmer, blind control.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Lamp Module w/Dimmer &lt;br /&gt;
| 45602 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with most incandescent bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Fluorescent Light &amp;amp;amp; Appliance Module &lt;br /&gt;
| 45603 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Outdoor Switch Module &lt;br /&gt;
| 45604 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off/Dim Dimmer Switch &lt;br /&gt;
| 45606 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45606-Manual-Eng.pdf Link] [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Dimmer-Switch-63p555.htm Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Discontinued, See 45612. Requires neutral lead. Works fine with most bulbs. With Philips AmbientLED, flickers at &amp;amp;gt;95% brightness. Supports beaming. Flickers at low-levels with dimmable LED.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| 45607 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off Switch &lt;br /&gt;
| 45609 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Auxiliary Switch &lt;br /&gt;
| 45610 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No zwave function; for 3 and 4-way switching kits&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 2-way Rocker Dimmer &lt;br /&gt;
| 45612 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2012 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No neutral required; replaces 45606&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Dimmer Kit &lt;br /&gt;
| 45613 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Possible error in 45613 manual diagrams, see 45610 diagrams&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Switch Kit &lt;br /&gt;
| 45614 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Relay Switch Adapter &lt;br /&gt;
| RAone SmartPower &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartpower_zw_tech_doc.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Dimmer Switch Adapter &lt;br /&gt;
| RAone SmartDimmer &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartdimmer-00110001-tech.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA03C &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Sept 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha03.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5852 JonnyO] &lt;br /&gt;
| Easy to Instal, supports dimming&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Screw-in Lamp Module &lt;br /&gt;
| HA05C &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Easy install, easy to pair with Vera!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 300 watt dimmer &lt;br /&gt;
| HA06 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha06.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable Dimmer Switch. incandescent/halogen only. Loads for 300 watts or less no neutral required. Great for dimming one bulb.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Switch &lt;br /&gt;
| HA18 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha18.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Affordable 3-way Switch&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| HA20 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha20.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-460-intermatic-homesettings-ha20c-3-way-in-wall-switch-dimmer.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable 3-way 600W dimmer&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRI06-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305784&amp;amp;section=25501 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| VRCS4-MRX &lt;br /&gt;
| 7,2,67,0,2 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well, pair as per [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller], then again holding &amp;quot;2&amp;quot; and &amp;quot;4&amp;quot; to pair the Switch (&amp;quot;Load&amp;quot;) itself.&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRM10-1LX &lt;br /&gt;
| 1 &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=104&amp;amp;products_id=170 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000ZKM7I8/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=65 mark-hc] &lt;br /&gt;
| This is a high quality dimmer geared towards high-end installations&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1L &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| May 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| (Coordinating Remote??)&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LZ &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Light almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for dimmer inserts &lt;br /&gt;
| 5026xx, 5036xx, 5046xx &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5026_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for switch inserts &lt;br /&gt;
| 5024xx, 5034xx, 5044xx &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/5024xx_5034xx_5044xx_Sensorflaeche4pin_CONNECT_INT.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Single Radio flush-mounted receiver &lt;br /&gt;
| 507001 &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5070_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, flush-mounted &lt;br /&gt;
| 507501, 507601 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5075_581_00_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 1-gang universal dimmer, flush-mounted &lt;br /&gt;
| 507900 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5079_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Monster &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| IWC600 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is the same as the Leviton scene controller. Follow these instructions: [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller]&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| RP200 &lt;br /&gt;
| 1.0 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/products/Productdetail3.asp?StyleID=139&amp;amp;FinishID=12&amp;amp;FunctionID=77 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Works well&amp;lt;br&amp;gt;Sold with Schlage LiNK lock system&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Plug &amp;amp;amp; Receptacle Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRR150W &lt;br /&gt;
| 2.2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Works like a champ! Easy to Install. One receptacle RF controlled, the other is hot&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in switch.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZDP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Cooper Wiring Devices &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| RFTR9505-T &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://solutions.cooperwiringdevices.com/common/brands.cfm?pg=Detail&amp;amp;brandName=CWD%20Technology&amp;amp;category=Aspire%20RF%20Lighting%20Control%20System%3A%20Receptacles&amp;amp;id=16772 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| One receptacle is RF controlled, the other is hot&lt;br /&gt;
|-&lt;br /&gt;
| Duwi &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;05437&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| Feb 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.com/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| ezhome &lt;br /&gt;
| High quality Plug-in switch, Easy install and works well&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN157-2&amp;lt;/span&amp;gt; &lt;br /&gt;
| 4,2,64,1,2 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=501&amp;amp;CateUIDList=0,83 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN158&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Works well. Supports status push and power metering&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| In-wall Duplex Receptacle &lt;br /&gt;
| 45605 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| US &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Duplex-Receptacle-63p554.htm Link] [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45605-Manual-Eng.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Easy. Works.&lt;br /&gt;
|-&lt;br /&gt;
| Home Manageables &lt;br /&gt;
| Lamp Module (Dimming) &lt;br /&gt;
| HM-LM001 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| 200W maximum load, 25W minimum load &lt;br /&gt;
| [http://www.homemanageables.com/manuals/HM-LM001%20Manual%20Final.pdf Link] &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Support for incandescent loads only. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| CA3500 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=105&amp;amp;products_id=97 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000U3XYPA/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is a decent, but expensive solution for in-wall receptacles. One receptacle RF controlled, the other is hot.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA02C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=108&amp;amp;products_id=98 Link] &lt;br /&gt;
| [http://www.amazon.com/Intermatic-HA02C-Settings-Heavy-Duty-Appliance/dp/B000BJSDZO/ref=sr_1_3?ie=UTF8&amp;amp;qid=1227467418&amp;amp;sr=8-3 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Seems to work well&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Outdoor Module &lt;br /&gt;
| HA04C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Easy to Install.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, plug adapter, 2000 W &lt;br /&gt;
| 508519 &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5085_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Monster Central &lt;br /&gt;
| 1800W Appliance Module &lt;br /&gt;
| ML-LAS1000 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Jan 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.monstercable.com/productdisplay.asp?pin=3164 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Easy to Install. I use this as a ZWave signal repeater. Appears to be a badge-engineering of [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=309748&amp;amp;section=25542 Leviton VRP15-1LW]&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| &lt;br /&gt;
HA-02L&amp;lt;br&amp;gt;(HA-02WD) &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indooor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-02WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Note: link is to HA-02WD manual.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA-03WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-03WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Thermostat Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| WDTC-20 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/WDTC-20---Z-Wave-Thermostat-Wayne-Dalton-P599C38.aspx Link] &lt;br /&gt;
| [http://www.amazon.com/Wayne-Dalton-Corporation-Z-Wave-Thermostat/dp/B001F8QKYQ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Has 2 inclusion modes: 1) press and release the bind button and the STAT will be included as a thermostat and works with Vera, 2) press and hold the bind button and it will be added as a binary switch for compatibility with old, non-compliant remotes. If it's added in the wrong mode, remove it and re-add it. Works great simple to use!&lt;br /&gt;
|-&lt;br /&gt;
| HAI &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| RC-80BZ &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homeauto.com Link] &lt;br /&gt;
| [http://www.homeauto.com/Downloads/Products/Omnistat/rcr80.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, Hold button feature not able to control by Vera at this time. Priced above 200.00. Has internal setback programs. Works great.&lt;br /&gt;
|-&lt;br /&gt;
| RCS &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| TZ43 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, much more feature rich the the WDTC-20 but comes with a hefty price tag ($214.95). Wish Vera could use all the features in this Thermostat! '''Note:'''''You need to set the thermostat to show the temperature, on its display, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Schlage/Trane &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| Trane &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.link.schlage.com/Products/Pages/Thermostat.aspx Link] &lt;br /&gt;
| [http://www.trane.com/Residential/Products/Thermostats Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| It's the same thermostat as the RCS TZ43 and it has the same issue: it's accepting &amp;quot;Set Temp Point&amp;quot; commands only in the measurement unit that is displayed on its screen. '''Note:'''''You need to set the thermostat to show the temperature, on its screen, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| InTouch &lt;br /&gt;
| CA8900 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-663-intermatic-intouch-ca8900-z-wave-digital-thermostat.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Looks very similar to the Wayne Dalton WDTC-20 listed here. works great, simple to use&lt;br /&gt;
|-&lt;br /&gt;
| Danfoss &lt;br /&gt;
| Radiator thermostat &lt;br /&gt;
| RA PLUS-w &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://raplusw.com/Content/E962FC0B-6461-4319-82FE-3E1E765142CF.html Link] [http://raplusw.com/PCMPDF/Data%20sheet%20RA-PLUS-w_02.pdf Link] &lt;br /&gt;
| [http://www.eurox10.com/Product/ZWave/Actuators/ZWDNF_RA_PLUS-W.htm Link] [http://www.eurox10.com] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See: [[Danfoss Thermostat]] for installation instructions&amp;lt;br&amp;gt;If the device cannot be configured at the final location, move the device closer to Vera and try again (this device might require a direct connection to Vera for configuration).&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT22 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.radiothermostat.com/documents/CT-22-Operation-27aug10.pdf Link] [http://www.radiothermostat.com/documents/CT-22-Installation-27aug10.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| &lt;br /&gt;
To include the thermostat into your network, you just have to install the USNAP module in the thermostat while Vera is in Include mode. To exclude the thermostat from your network, you just have to install the USNAP module in the thermostat while Vera is in Exclude mode.You can watch a video about how to install it [http://www.youtube.com/watch?v=M9VNuHGENP0 here]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT30 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvflorin&amp;lt;br&amp;gt; &lt;br /&gt;
| If you experience a problem with other Z-Wave devices, see this [http://wiki.micasaverde.com/images/3/39/RTCOA_Z-Wave_v7.4_workaround.zip note].&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Remotec &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| ZTS-100 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| To include the thermostat into your network, hold the home button for 2 seconds until the display says 'noc', which means 'no connection', then press the Prog button and the readout will say 'Srh'. If it doesn't say 'noc' or if the radio icon is visible in the upper right corner, the thermostat is already included and must be removed/reset. To remove/reset the thermostat hold the home button for 2 seconds until the display says 'done', then press the Prog button.&lt;br /&gt;
|-&lt;br /&gt;
| Horstmann &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| HRT4-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4-ZWweb.pdf Link] [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf Link] &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf &amp;lt;br&amp;gt;] &lt;br /&gt;
| Daniel &lt;br /&gt;
| After you include the thermostat in Vera's network, you will have to make some configuration changes in order for it to report the temperature change. See: [[HRT4-ZW]] for more information.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Sensors'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1369&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| ZIR000 / ZIR010 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU (ZIR010) or US (ZIR000) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR000_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR000_instr.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR010_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR010_instr.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Remove the cover, pair to Vera's dongle by using the push-button on the left of the circuit board. Vera must configure it to work, and it can only be configured within less of a minute (30 sec best) of inserting the batteries. With Vera's dongle removed, remove/reinsert the batteries, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs &lt;br /&gt;
| 3-in-1 sensor (light/humidity/temperature) &lt;br /&gt;
| MultiSensor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.aeon-labs.com/site/public/lib/download.php?type=s&amp;amp;f=29 Specs] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Pair to Vera by using the push-button. Vera must configure it to work, and it can only be configured within 10 minutes of inserting the batteries.&lt;br /&gt;
|-&lt;br /&gt;
| Express Controls aka HomeSeer &lt;br /&gt;
| 3-in-1 sensor (light/temperature/motion) &lt;br /&gt;
| HSM100 / EZMotion &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[ExpressControls3in1]]&amp;lt;br&amp;gt;If the motion sensor does not work right after inclusion and configuration, remove the batteries for a few seconds.&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Hawking/Home Manageables &lt;br /&gt;
| Door/window sensor &lt;br /&gt;
| SM103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=355&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110873R01_SM103_-ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Pair using the intrusion button. The sensor will accept configuration within a few minutes of the initial pairing, or of pressing the intrusion button on the back even after it's paired. Pair the device, or if it's already paired, press the intrusion button, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page. NOTE: There is some confusion about the orientation of the sensor. The main sensor body has a back (where the intrusion is), a front (where the logo and LED is), and the 2 other surfaces, one of which has a curved edge, and the other is flat. The magnet needs to go against the flat surface. And the flat surface on the magnet should be as close as possible to the flat surface on the sensor, lined up in the middle so the line which passes through the LED lines up with the sensor. &lt;br /&gt;
Note: In case the inclusion/exclusion fails you should remove/reinsert the batteries from the sensor and within a few seconds the sensor should be automatically detected. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Home Manageables &lt;br /&gt;
| Humidity + Temperature sensor &lt;br /&gt;
| HM-TS001 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jan 2010 (requires version 1.1.0 or greater) &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.asihome.com/ASIshop/product_info.php?products_id=3946 Link] [http://www.homeseer.com/pdfs/guides/HM_TD001.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| micasaverde &lt;br /&gt;
| Pair or unpair the device by tapping the CF button 3 times very quickly. Once it's paired and shows up in the UI as a generic device, press the CF button 3 times again quickly to make it wakeup and get configured. Then it will correctly be identified as 3 devices (combo device + temperature + humidity).&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Motion Detector &lt;br /&gt;
| SP103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=354&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110874R01_SP103_%20-%20ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Fortrezz &lt;br /&gt;
| Water /Freeze &lt;br /&gt;
| WWA-001 &lt;br /&gt;
| &amp;amp;nbsp;?????? &lt;br /&gt;
| US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.Fortrezz.com Link] [http://www.fortrezz.com/resources/WWA_manual_01May2009.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Zmistro &lt;br /&gt;
| Works great I would place a few in your house. Bathrooms, laundry , kitchen , basement. Great product!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| CA-9000 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthomeusa.com/Products/CA9000/manuals/CA9000.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Aaron &lt;br /&gt;
| This device has limited functionality as a sensor. It can only be used to turn on and off a light directly by setting an association, which Vera supports. It does not fire events, so you cannot use it as an event on a scene.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 4-gang radio transmitter, flush-mounted &lt;br /&gt;
| 506004 &lt;br /&gt;
| 2,2,27,1,4 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5060_581_02_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Note: There is proprietary functionality here. Support will be added soon. &lt;br /&gt;
Quite complex device; partially supported by Vera; can be used as a window/door sensor (as of firmware 1.0.900) ... &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Door Locks'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| BE369 (deadbolt) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Mid 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/link/product_tour/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Read the instructions here: [[Schlage Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Kwikset &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here:[[Kwikset Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Yale &lt;br /&gt;
| Deadbolt &lt;br /&gt;
| Real Living &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Quickstart%2018JUL11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Instructions%2023AUG11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here: [[Yale Lock]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Drapes/Blinds'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DBMZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/dc_mot_ctrls/z-wave/dbmz/dbmz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| ABMHZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/int_ac_mot_ctrls/z-wave/abmhz/abmhz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/AC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| AC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/DC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Relay controls'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Contactor control box &lt;br /&gt;
| CA3750 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.intouchcontrols.com/~/media/Files/InTouchControls/Products/Spec%20Sheets/CA3750.ashx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Multi-instance class supported for this device. Vera is able to control each of the 2 relays independently if desired. please note unit shows as three switches this is a bug with Intermatic not a real issue.You can check the box in devices to not show the second listing of the first relay in &amp;quot;Dasboard&amp;quot; You can control heavy loads like a water heater ,pool pump motor/s. great device&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Window Coverings'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 5025xx, 5035xx, 5045xx &lt;br /&gt;
| 6,2,27,2,3 and 6,2,27,2,4 &lt;br /&gt;
| EU &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5025_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work. GUI buttons do not work with Luup release 1.0.843 and 1.0.862 (fixed with Luup release 1.0.879).&amp;lt;br&amp;gt;Workaround: Use a Luup Scene with the following code:&amp;lt;tt&amp;gt;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&amp;lt;tt&amp;gt;local lul_arguments = {}&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_arguments[&amp;quot;newTargetValue&amp;quot;]=&amp;quot;0&amp;quot;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_resultcode,lul_resultstring,lul_job,lul_returnarguments = luup.call_action(&amp;quot;urn:upnp-org:serviceId:SwitchPower1&amp;quot;,&amp;quot;SetTarget&amp;quot;,lul_arguments,6) &amp;lt;/tt&amp;gt; Replace &amp;quot;6&amp;quot; with your device number, replace &amp;quot;0&amp;quot; with &amp;quot;1&amp;quot; for inverse action. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Duewi &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 054368 &lt;br /&gt;
| 6,2,51,1,0 &lt;br /&gt;
| EU &lt;br /&gt;
| Jun 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.de/index.php?productid=37344 Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Lutz &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Some additional observations by Ap15e (Vera V1, firmware 1.0.979): &lt;br /&gt;
*GUI button 'Stop' and corresponding UPnP service does not work. &lt;br /&gt;
*GUI button 'Up' moves the shutter down, GUI button 'Down' moves the shutter up ... &lt;br /&gt;
*After adjusting the running times even the slide bar seems to work! &lt;br /&gt;
*I got a report from a user that the düwi device may fail due to interference from the shutter motor. In this case an additional filter is required (costs about 25 €/direction). &lt;br /&gt;
*More information is available at [http://forum.micasaverde.com/index.php?topic=3359.msg16142#msg16142 Link]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that work'''  ===&lt;br /&gt;
&lt;br /&gt;
See [http://wiki.micasaverde.com/index.php/IP_Cameras IP Cameras] for a more comprehensive and up to date list &lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC54GCA &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive camera with moderate image quality. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC210 &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and pan/tilt ability. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC80N &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi?size=2&amp;amp;amp;quality=1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and wireless N. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera. &lt;br /&gt;
Size can be (160 x 120 = 1,320 x 240 = 2,640 x 480 = 3) and Quality can be (Very High= 1,High= 2,Normal= 3,Low= 4,Very Low= 5) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| iCamView &lt;br /&gt;
| IP Camera Server &lt;br /&gt;
| iCV-22, iCV-32 &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=1&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=2&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich IP camera server, suports up to two compatible USB cameras, optional WiFi support, USB storage, USB hubs, motion; works with range of cameras, see icamview.co.uk. Excellent modular solution. They do ship to North America.&lt;br /&gt;
|-&lt;br /&gt;
| SmartHome.com.au &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Z~Series Wireless Camera &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| tmpfs/auto.jpg &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Inexpensive IP security camera designed for the Australian and New Zealand Z-Wave users, but shipping world wide.&lt;br /&gt;
|-&lt;br /&gt;
| [http://global.level1.com LevelOne] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WCS-2030 &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| cgi-bin/video.jpg &lt;br /&gt;
| [http://reviews.cnet.com/search-results/levelone-camcon-wcs-2030/1707-5_7-31972011.html CNET review] &lt;br /&gt;
| An inexpensive IP camera with good image quality. Can be connected wired or wirelessly. Most LevelOne cameras use the same path for the JPEG image, so most of their line (both low and high end) should be compatible. Video and audio also stream over RTSP, which can be customized through the camera's web interface.&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Voyager I &lt;br /&gt;
| firmware 2.02 and above &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive&amp;amp;nbsp;IP&amp;amp;nbsp;camera that is very feature rich, has good image quality, night vision capabilities, motion detection, two-way audio, video streaming over TCP, UDP, or HTTP, and other configurable features. In firmware version 2.02, Asante added the capability to retrieve an image via a URL (however, it is delayed by 3 seconds). Offers a full-featured web interface in IE using an ActiveX plug-in (limited capabilites in other browsers).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Alarm Panels  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Model(s) &lt;br /&gt;
! Required module &lt;br /&gt;
! Plugin &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| DSC &lt;br /&gt;
| &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=1 PowerSeries PC1616] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=2 PowerSeries PC1832] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=3 PowerSeries PC1864]&lt;br /&gt;
&lt;br /&gt;
| [http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=22 IT-100] &lt;br /&gt;
| [http://code.mios.com/trac/mios_dscalarmpanel/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Elk &lt;br /&gt;
| &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_2981420/M1_Gold_Cross_Platform_Control%C2%AE M1 Gold] &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_3127911/M1EZ8_Cross_Platform_Control%C2%AE M1EZ8]&lt;br /&gt;
&lt;br /&gt;
| The M1EZ8 panel requires the [http://www.elkproducts.com/_webapp_2981423/elk-m1ez8msi__m1ez8_main_serial_interface ELK-M1EZ8MSI] Main Serial Port Interface. &lt;br /&gt;
| [http://code.mios.com/trac/mios_elk-alarm-panel/wiki/WikiStart Link] &lt;br /&gt;
| You can use the ELK-M1XEP Ethernet Interface to connect the panels to Vera on the Ethernet port.&lt;br /&gt;
|-&lt;br /&gt;
| GE Security / Interlogix / Caddx &lt;br /&gt;
| &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-4] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-6] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8E]&lt;br /&gt;
&lt;br /&gt;
| [http://utcfssecurityproducts.com/ProductsAndServices/Pages/NX-584.aspx NX-584] &lt;br /&gt;
| [http://code.mios.com/trac/mios_caddxnx584/wiki/WikiStart Link] &lt;br /&gt;
| NetworX NX-8E already has a RS-232 interface, so it doesn't require the NX-584 module.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128BPT, VISTA-128BPE, VISTA-128FBP, VISTA-250BP, VISTA-250BPT, VISTA-250BPE and VISTA-250FBP &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128FBP, VISTA-250BP, and VISTA-250FBP panels require the [http://www.security.honeywell.com/me/intrusion/products/exp/ac/138478.html 4100SM] module. &lt;br /&gt;
| [http://code.mios.com/trac/mios_ademco-panels-plugin/wiki/WikiStart Link] &lt;br /&gt;
| If your Vista panel is not on this list, look at the next row.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| 10SE, 20SE, 10P, 15P, 20P, 50P, etc. &lt;br /&gt;
| [http://www.nutech.com/online-store/18.html AD2USB] &lt;br /&gt;
| [http://code.mios.com/trac/mios_vista-alarm-panel-ad2usb/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paradox &lt;br /&gt;
| &lt;br /&gt;
*Digiplex DGP-848 &lt;br /&gt;
*EVO48 &lt;br /&gt;
*[http://www.paradox.com/Products/default.asp?CATID=7 EVO192]&lt;br /&gt;
&lt;br /&gt;
| [http://www.paradox.com/Products/default.asp?CATID=7&amp;amp;SUBCATID=75&amp;amp;PRD=234 PRT3 Integration Module] &lt;br /&gt;
| [http://code.mios.com/trac/mios_paradox-alarm/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Visonic &lt;br /&gt;
| &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMax PowerMax] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPlus PowerMax+] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxComplete PowerMaxComplete] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPro PowerMaxPro]&lt;br /&gt;
&lt;br /&gt;
| RS-232 Interface Module &lt;br /&gt;
| [http://code.mios.com/trac/mios_visonic-powermax/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Misc  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Door Bell&amp;lt;br&amp;gt; &lt;br /&gt;
| UTSE03A&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| When added to a third party Z-Wave controller there is no way to associate the push button with the door bell itself, so the push button has no use. In order to make it work, the door bell needs to be associated with a regular Z-Wave switch either by creating associations or by creating a scene.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Supported_Hardware</id>
		<title>Supported Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Supported_Hardware"/>
				<updated>2012-09-05T20:23:14Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a page for Supported Z-Wave devices. &lt;br /&gt;
&lt;br /&gt;
Alternative hardware pages exist for &lt;br /&gt;
&lt;br /&gt;
*[[ZWave Add Controller|Z-Wave Handheld Remote Controls, Gateways and Scene Controllers]] &lt;br /&gt;
*[[IP Cameras|IP Enabled Cameras]] &lt;br /&gt;
*[[Insteon Supported Hardware|Insteon/X10 devices]] &lt;br /&gt;
*USB, or USB-Serial, [[Serial Supported Hardware|Interface devices]]&lt;br /&gt;
&lt;br /&gt;
In general, any device with the Z-Wave logo should work with Vera. A list of tested Z-Wave devices is below, with specific notes for each type of device. This is a wiki, so feel free to add to the page. To learn about Z-Wave routing and fixing routing problems see: [[Heal Network]] &lt;br /&gt;
&lt;br /&gt;
== Hardware Reported to Work  ==&lt;br /&gt;
&lt;br /&gt;
*We strongly encourage users to list any and all products they tested and installed. &lt;br /&gt;
*If a product works but you did not like it, please list it anyway. It may be the only product available to some users.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT! The devices listed here have been added by installers, technicians and users like yourself. Results may vary upon installations. MiCasaVerde does not guarantee operation and compatibility with your installation. The listed devices were found to work with their specific installation. Mixing different series and brands of equipment is not guaranteed in any way to work with other series and brands. It is very likely that users have not fully tested all features of the devices, so it is possible that a device listed here as compatible, will not prove compatible with your hardware. If you are editing this wiki DO NOT REMOVE a listed working device if it hasn't worked for you. Seek help to get the device to work under your individual circumstance. If you are adding to this wiki, please provide links to data for the device and add any tips you feel may benefit someone wanting to implement the device into an installation.''' &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Lighting Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;width: 1220px; height: 491px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Dimmer Switch &lt;br /&gt;
| ZDW120 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW120---Z-Wave-600-Watt-2-Wire-Dimmer-ACT-HomePro-P17C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, easy to install, LED is a very bright blue....can be programmed to be off when the light is off or on. &amp;quot;series 200&amp;quot; model supports Group Associations 2 &amp;amp;amp; 3. (The older &amp;quot;series 100&amp;quot; supported Groups 1-4, but is no longer available.)&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| ZDW103 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZDW103---Z-Wave-500-Watt-3-way-Dimmer-ACT-HomePro-P19C64.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, LED is a very bright blue....can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-wire Dimmer Switch &lt;br /&gt;
| ZDW232 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jul 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://www.zwave4u.com/products/en/Switches-and-Dimmers/HomePro-Single-Wall-Dimmer-2-wire.html Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5198 Newb] &lt;br /&gt;
| Wall-mount, 230v, 500W, 2-Wire (no neutral), works well. Can be programmed to be off when the light is off or on.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 2-way Relay Switch &lt;br /&gt;
| ZRW113 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/ZRW113---Z-Wave-20-Amp-3-way-ISO-Relay-ACT-HomePro-P491C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Controls Florescent Lamps very well! No humming at all.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Companion Switch &lt;br /&gt;
| AS101 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/AS101---Z-Wave-3-Way-Companion-Switch-ACT-HomePro-P10C63.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Works well, can be tricky to install due to the different combination of 3 way circuits, The trick here is to install this device where the power comes in.&lt;br /&gt;
|-&lt;br /&gt;
| ACT&amp;lt;br&amp;gt; &lt;br /&gt;
| 3-way Dimmer Switch, 2 rocker&amp;lt;br&amp;gt; &lt;br /&gt;
| ZDM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZDM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| Dimmer, Wall-mount, 230v, 500W,&amp;lt;br&amp;gt;3-way, 3 Wire, 2 rocker&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| 3-way Relay Switch, 2 rocker &lt;br /&gt;
| ZRM230&amp;lt;br&amp;gt; &lt;br /&gt;
| 1.1&amp;lt;br&amp;gt; &lt;br /&gt;
| Aug 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZRM230_spec.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Relay, Wall-mount, 230v, 6A,&amp;lt;br&amp;gt; 3-way, 3 Wire, 2 rocker - '''Status polling does not work with Vera'''&amp;lt;br&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cooper &lt;br /&gt;
| Accessory (3-way slave) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[Cooper Accessory Slave]]&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 2 wire dimmer &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 05431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| In-wall switch.&lt;br /&gt;
|-&lt;br /&gt;
| Düwi &lt;br /&gt;
| 3 wire switch &lt;br /&gt;
| 06431 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| The newer in-wall Düwi switch (also designated Düwi.me), marked with a green sticker on the housing. This switch supports status push.&lt;br /&gt;
|-&lt;br /&gt;
| Fibar &lt;br /&gt;
| 3 wire double switch &lt;br /&gt;
| FGS221 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| This device is designed to use (and be mounted behind) existing light switches. Supports status push. Also available: single switch, dimmer, blind control.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Lamp Module w/Dimmer &lt;br /&gt;
| 45602 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with most incandescent bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Fluorescent Light &amp;amp;amp; Appliance Module &lt;br /&gt;
| 45603 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Outdoor Switch Module &lt;br /&gt;
| 45604 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Works with small appliances, incandescent, fluorescent and LED bulbs.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off/Dim Dimmer Switch &lt;br /&gt;
| 45606 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45606-Manual-Eng.pdf Link] [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Dimmer-Switch-63p555.htm Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Discontinued, See 45612. Requires neutral lead. Works fine with most bulbs. With Philips AmbientLED, flickers at &amp;amp;gt;95% brightness. Supports beaming. Flickers at low-levels with dimmable LED.&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| 45607 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| On/Off Switch &lt;br /&gt;
| 45609 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| Auxiliary Switch &lt;br /&gt;
| 45610 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No zwave function; for 3 and 4-way switching kits&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 2-way Rocker Dimmer &lt;br /&gt;
| 45612 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 2/2012 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| No neutral required; replaces 45606&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Dimmer Kit &lt;br /&gt;
| 45613 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Possible error in 45613 manual diagrams, see 45610 diagrams&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| 3-way Switch Kit &lt;br /&gt;
| 45614 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| 7/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Relay Switch Adapter &lt;br /&gt;
| RAone SmartPower &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartpower_zw_tech_doc.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Innovus &lt;br /&gt;
| Dimmer Switch Adapter &lt;br /&gt;
| RAone SmartDimmer &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.innovus.eu/fileadmin/user_upload/manual/z-wave/smartdimmer-00110001-tech.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=3015 TedStriker] &lt;br /&gt;
| Works very well + it has a build in powermeter which works perfect with Vera&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA03C &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Sept 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha03.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=5852 JonnyO] &lt;br /&gt;
| Easy to Instal, supports dimming&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Screw-in Lamp Module &lt;br /&gt;
| HA05C &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA05C---Z-Wave-IndoorOutdoor-Screw-in-Module-Intermatic-HomeSettings-P1C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=49 WSeverino] &lt;br /&gt;
| Easy install, easy to pair with Vera!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 300 watt dimmer &lt;br /&gt;
| HA06 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| July 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/modules/ha06.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable Dimmer Switch. incandescent/halogen only. Loads for 300 watts or less no neutral required. Great for dimming one bulb.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Switch &lt;br /&gt;
| HA18 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha18.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Affordable 3-way Switch&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| 3-way Dimmer Switch &lt;br /&gt;
| HA20 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homesettings.com/products/new%20products/ha20.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-460-intermatic-homesettings-ha20c-3-way-in-wall-switch-dimmer.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Affordable 3-way 600W dimmer&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRI06-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305784&amp;amp;section=25501 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| VRCS4-MRX &lt;br /&gt;
| 7,2,67,0,2 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Works well, pair as per [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller], then again holding &amp;quot;2&amp;quot; and &amp;quot;4&amp;quot; to pair the Switch (&amp;quot;Load&amp;quot;) itself.&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Dimmer Switch &lt;br /&gt;
| VRM10-1LX &lt;br /&gt;
| 1 &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=104&amp;amp;products_id=170 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000ZKM7I8/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=65 mark-hc] &lt;br /&gt;
| This is a high quality dimmer geared towards high-end installations&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1L &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| May 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| (Coordinating Remote??)&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LX &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Oct 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Leviton &lt;br /&gt;
| Scene capable 3-way switch (non-dimming) &lt;br /&gt;
| VRS15-1LZ &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=305791&amp;amp;section=25502&amp;amp;minisite=10026 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Pair normally. Can also be used in single pole applications. [Note: white, ivory, [[Light almond]].]&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for dimmer inserts &lt;br /&gt;
| 5026xx, 5036xx, 5046xx &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5026_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio sensor cover for switch inserts &lt;br /&gt;
| 5024xx, 5034xx, 5044xx &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/5024xx_5034xx_5044xx_Sensorflaeche4pin_CONNECT_INT.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Single Radio flush-mounted receiver &lt;br /&gt;
| 507001 &lt;br /&gt;
| 6,2,27,2,2 &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5070_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, flush-mounted &lt;br /&gt;
| 507501, 507601 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5075_581_00_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 1-gang universal dimmer, flush-mounted &lt;br /&gt;
| 507900 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5079_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well (according to [http://forum.micasaverde.com/index.php?topic=276.15 Link])&lt;br /&gt;
|-&lt;br /&gt;
| Monster &lt;br /&gt;
| 4-Scene Controller with Switch &lt;br /&gt;
| IWC600 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=433270&amp;amp;section=28563 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is the same as the Leviton scene controller. Follow these instructions: [http://wiki.micasaverde.com/index.php/Leviton_Scene_Controller Leviton 4-Scene Controller]&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| RP200 &lt;br /&gt;
| 1.0 &lt;br /&gt;
| Aug 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/products/Productdetail3.asp?StyleID=139&amp;amp;FinishID=12&amp;amp;FunctionID=77 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Works well&amp;lt;br&amp;gt;Sold with Schlage LiNK lock system&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Plug &amp;amp;amp; Receptacle Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRR150W &lt;br /&gt;
| 2.2 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| [http://www.smarthome-products.com/p-527-homepro-zrr150-wall-receptacle.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Works like a champ! Easy to Install. One receptacle RF controlled, the other is hot&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZRP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in switch.&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| ZDP200 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| July 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Basic plug-in dimmer.&lt;br /&gt;
|-&lt;br /&gt;
| Cooper Wiring Devices &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| RFTR9505-T &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://solutions.cooperwiringdevices.com/common/brands.cfm?pg=Detail&amp;amp;brandName=CWD%20Technology&amp;amp;category=Aspire%20RF%20Lighting%20Control%20System%3A%20Receptacles&amp;amp;id=16772 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| One receptacle is RF controlled, the other is hot&lt;br /&gt;
|-&lt;br /&gt;
| Duwi &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;05437&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| Feb 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.com/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| ezhome &lt;br /&gt;
| High quality Plug-in switch, Easy install and works well&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN157-2&amp;lt;/span&amp;gt; &lt;br /&gt;
| 4,2,64,1,2 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=501&amp;amp;CateUIDList=0,83 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S33&amp;quot;&amp;gt;Z-Wave switch 3500 W&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;lt;span class=&amp;quot;S31&amp;quot;&amp;gt;AN158&amp;lt;/span&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| intveltr &lt;br /&gt;
| Works well. Supports status push and power metering&lt;br /&gt;
|-&lt;br /&gt;
| GE/Jasco &lt;br /&gt;
| In-wall Duplex Receptacle &lt;br /&gt;
| 45605 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| US &lt;br /&gt;
| 2/2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.jascoproducts.com/products/pc/GE-Z-Wave-Wireless-Lighting-Control-Duplex-Receptacle-63p554.htm Link] [http://www.jascoproducts.com/support/manual-downloads/applications/DocumentLibraryManager/upload/45605-Manual-Eng.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=64 Anthonyris] &lt;br /&gt;
| Easy. Works.&lt;br /&gt;
|-&lt;br /&gt;
| Home Manageables &lt;br /&gt;
| Lamp Module (Dimming) &lt;br /&gt;
| HM-LM001 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| 200W maximum load, 25W minimum load &lt;br /&gt;
| [http://www.homemanageables.com/manuals/HM-LM001%20Manual%20Final.pdf Link] &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Works well. Support for incandescent loads only. Not load sensing.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| In-Wall Receptacle &lt;br /&gt;
| CA3500 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=105&amp;amp;products_id=97 Link] &lt;br /&gt;
| [http://www.amazon.com/review/product/B000U3XYPA/ref=dp_top_cm_cr_acr_txt?_encoding=UTF8&amp;amp;showViewpoints=1 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| This is a decent, but expensive solution for in-wall receptacles. One receptacle RF controlled, the other is hot.&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| HA02C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://shop.micasaverde.com/index.php?main_page=product_info&amp;amp;cPath=108&amp;amp;products_id=98 Link] &lt;br /&gt;
| [http://www.amazon.com/Intermatic-HA02C-Settings-Heavy-Duty-Appliance/dp/B000BJSDZO/ref=sr_1_3?ie=UTF8&amp;amp;qid=1227467418&amp;amp;sr=8-3 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Seems to work well&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Outdoor Module &lt;br /&gt;
| HA04C &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Dec 2008 &lt;br /&gt;
| Outdoor &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/HA04C---Z-Wave-Outdoor-Module-Intermatic-HomeSettings-P6C62.aspx Link] &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=66 Kozanator] &lt;br /&gt;
| Easy to Install.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| switch, plug adapter, 2000 W &lt;br /&gt;
| 508519 &lt;br /&gt;
| 6,2,7,1,5 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5085_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well.&lt;br /&gt;
|-&lt;br /&gt;
| Monster Central &lt;br /&gt;
| 1800W Appliance Module &lt;br /&gt;
| ML-LAS1000 &lt;br /&gt;
| 1 &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Jan 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.monstercable.com/productdisplay.asp?pin=3164 Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2618 guessed] &lt;br /&gt;
| Easy to Install. I use this as a ZWave signal repeater. Appears to be a badge-engineering of [http://www.leviton.com/OA_HTML/ibeCCtpItmDspRte.jsp?item=309748&amp;amp;section=25542 Leviton VRP15-1LW]&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Appliance Module &lt;br /&gt;
| &lt;br /&gt;
HA-02L&amp;lt;br&amp;gt;(HA-02WD) &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indooor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-02WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Note: link is to HA-02WD manual.&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Lamp Module &lt;br /&gt;
| HA-03WD &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Dec 2011 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.waynedaltonstore.com/ssi/pdf/wayne/HA-03WD.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| DaveL17 &lt;br /&gt;
| Not load sensing.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Thermostat Devices'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Wayne Dalton &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| WDTC-20 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/WDTC-20---Z-Wave-Thermostat-Wayne-Dalton-P599C38.aspx Link] &lt;br /&gt;
| [http://www.amazon.com/Wayne-Dalton-Corporation-Z-Wave-Thermostat/dp/B001F8QKYQ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Has 2 inclusion modes: 1) press and release the bind button and the STAT will be included as a thermostat and works with Vera, 2) press and hold the bind button and it will be added as a binary switch for compatibility with old, non-compliant remotes. If it's added in the wrong mode, remove it and re-add it. Works great simple to use!&lt;br /&gt;
|-&lt;br /&gt;
| HAI &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| RC-80BZ &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.homeauto.com Link] &lt;br /&gt;
| [http://www.homeauto.com/Downloads/Products/Omnistat/rcr80.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, Hold button feature not able to control by Vera at this time. Priced above 200.00. Has internal setback programs. Works great.&lt;br /&gt;
|-&lt;br /&gt;
| RCS &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| TZ43 &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| [http://store.homeseer.com/store/TZ43---Z-Wave-Thermostat-RCS-P627C67.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Shows up as Standard Thermostat in Vera, much more feature rich the the WDTC-20 but comes with a hefty price tag ($214.95). Wish Vera could use all the features in this Thermostat! '''Note:'''''You need to set the thermostat to show the temperature, on its display, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Schlage/Trane &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| Trane &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| &amp;amp;nbsp;?? &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.link.schlage.com/Products/Pages/Thermostat.aspx Link] &lt;br /&gt;
| [http://www.trane.com/Residential/Products/Thermostats Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| It's the same thermostat as the RCS TZ43 and it has the same issue: it's accepting &amp;quot;Set Temp Point&amp;quot; commands only in the measurement unit that is displayed on its screen. '''Note:'''''You need to set the thermostat to show the temperature, on its screen, in Celsius degree in order to be able to receive &amp;quot;Set Temp&amp;quot; commands from Vera. This is no longer required in firmwares above '''''&amp;lt;i&amp;gt;1.0.862 (luup)&amp;lt;/i&amp;gt;'''&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| InTouch &lt;br /&gt;
| CA8900 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Nov 2008 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthome-products.com/p-663-intermatic-intouch-ca8900-z-wave-digital-thermostat.aspx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Looks very similar to the Wayne Dalton WDTC-20 listed here. works great, simple to use&lt;br /&gt;
|-&lt;br /&gt;
| Danfoss &lt;br /&gt;
| Radiator thermostat &lt;br /&gt;
| RA PLUS-w &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://raplusw.com/Content/E962FC0B-6461-4319-82FE-3E1E765142CF.html Link] [http://raplusw.com/PCMPDF/Data%20sheet%20RA-PLUS-w_02.pdf Link] &lt;br /&gt;
| [http://www.eurox10.com/Product/ZWave/Actuators/ZWDNF_RA_PLUS-W.htm Link] [http://www.eurox10.com] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See: [[Danfoss Thermostat]] for installation instructions&amp;lt;br&amp;gt;If the device cannot be configured at the final location, move the device closer to Vera and try again (this device might require a direct connection to Vera for configuration).&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT22 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.radiothermostat.com/documents/CT-22-Operation-27aug10.pdf Link] [http://www.radiothermostat.com/documents/CT-22-Installation-27aug10.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Daniel &lt;br /&gt;
| &lt;br /&gt;
To include the thermostat into your network, you just have to install the USNAP module in the thermostat while Vera is in Include mode. To exclude the thermostat from your network, you just have to install the USNAP module in the thermostat while Vera is in Exclude mode.You can watch a video about how to install it [http://www.youtube.com/watch?v=M9VNuHGENP0 here]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Radio Thermostat &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| CT30 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| mcvflorin&amp;lt;br&amp;gt; &lt;br /&gt;
| If you experience a problem with other Z-Wave devices, see this [http://wiki.micasaverde.com/images/3/39/RTCOA_Z-Wave_v7.4_workaround.zip note].&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Remotec &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| ZTS-100 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| To include the thermostat into your network, hold the home button for 2 seconds until the display says 'noc', which means 'no connection', then press the Prog button and the readout will say 'Srh'. If it doesn't say 'noc' or if the radio icon is visible in the upper right corner, the thermostat is already included and must be removed/reset. To remove/reset the thermostat hold the home button for 2 seconds until the display says 'done', then press the Prog button.&lt;br /&gt;
|-&lt;br /&gt;
| Horstmann &lt;br /&gt;
| Wall Stat &lt;br /&gt;
| HRT4-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4-ZWweb.pdf Link] [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf Link] &lt;br /&gt;
| [http://horstmann.co.uk/downloads/ElectronicDocuments/Central-Heating/HRT4B-ZWManual.pdf &amp;lt;br&amp;gt;] &lt;br /&gt;
| Daniel &lt;br /&gt;
| After you include the thermostat in Vera's network, you will have to make some configuration changes in order for it to report the temperature change. See: [[HRT4-ZW]] for more information.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Sensors'''  ===&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;1369&amp;quot; cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| ACT &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| ZIR000 / ZIR010 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU (ZIR010) or US (ZIR000) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR000_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR000_instr.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Specs/ZIR010_spec.pdf Link] [http://www.act-solutions.com/HomePro/pdfs/HomePro/Inst/ZIR010_instr.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Remove the cover, pair to Vera's dongle by using the push-button on the left of the circuit board. Vera must configure it to work, and it can only be configured within less of a minute (30 sec best) of inserting the batteries. With Vera's dongle removed, remove/reinsert the batteries, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page&lt;br /&gt;
|-&lt;br /&gt;
| Aeon Labs &lt;br /&gt;
| 3-in-1 sensor (light/humidity/temperature) &lt;br /&gt;
| MultiSensor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.aeon-labs.com/site/public/lib/download.php?type=s&amp;amp;f=29 Specs] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Pair to Vera by using the push-button. Vera must configure it to work, and it can only be configured within 10 minutes of inserting the batteries.&lt;br /&gt;
|-&lt;br /&gt;
| Express Controls aka HomeSeer &lt;br /&gt;
| 3-in-1 sensor (light/temperature/motion) &lt;br /&gt;
| HSM100 / EZMotion &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| EU or US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| See [[ExpressControls3in1]]&amp;lt;br&amp;gt;If the motion sensor does not work right after inclusion and configuration, remove the batteries for a few seconds.&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Hawking/Home Manageables &lt;br /&gt;
| Door/window sensor &lt;br /&gt;
| SM103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=355&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110873R01_SM103_-ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Pair using the intrusion button. The sensor will accept configuration within a few minutes of the initial pairing, or of pressing the intrusion button on the back even after it's paired. Pair the device, or if it's already paired, press the intrusion button, and within 30 seconds insert Vera's dongle. Within a few minutes confirm the &amp;quot;configure&amp;quot; icon for the device is green on Vera's setup page. NOTE: There is some confusion about the orientation of the sensor. The main sensor body has a back (where the intrusion is), a front (where the logo and LED is), and the 2 other surfaces, one of which has a curved edge, and the other is flat. The magnet needs to go against the flat surface. And the flat surface on the magnet should be as close as possible to the flat surface on the sensor, lined up in the middle so the line which passes through the LED lines up with the sensor. &lt;br /&gt;
Note: In case the inclusion/exclusion fails you should remove/reinsert the batteries from the sensor and within a few seconds the sensor should be automatically detected. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| EverSpring/Home Manageables &lt;br /&gt;
| Humidity + Temperature sensor &lt;br /&gt;
| HM-TS001 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Jan 2010 (requires version 1.1.0 or greater) &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.asihome.com/ASIshop/product_info.php?products_id=3946 Link] [http://www.homeseer.com/pdfs/guides/HM_TD001.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| micasaverde &lt;br /&gt;
| Pair or unpair the device by tapping the CF button 3 times very quickly. Once it's paired and shows up in the UI as a generic device, press the CF button 3 times again quickly to make it wakeup and get configured. Then it will correctly be identified as 3 devices (combo device + temperature + humidity).&lt;br /&gt;
|-&lt;br /&gt;
| Everspring &lt;br /&gt;
| Motion Detector &lt;br /&gt;
| SP103 &lt;br /&gt;
| 6,2,9,1,0 &lt;br /&gt;
| EU or US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.everspring.com/Products/Home_Automation_Detail.asp?parentUID=83&amp;amp;UID=354&amp;amp;CateUIDList=0,83 Link] [http://www.everspring.com/Archive/Image/File/A501110874R01_SP103_%20-%20ECR.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Works well&lt;br /&gt;
|-&lt;br /&gt;
| Fortrezz &lt;br /&gt;
| Water /Freeze &lt;br /&gt;
| WWA-001 &lt;br /&gt;
| &amp;amp;nbsp;?????? &lt;br /&gt;
| US &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.Fortrezz.com Link] [http://www.fortrezz.com/resources/WWA_manual_01May2009.pdf Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Zmistro &lt;br /&gt;
| Works great I would place a few in your house. Bathrooms, laundry , kitchen , basement. Great product!&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Motion Sensor &lt;br /&gt;
| CA-9000 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| US &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.smarthomeusa.com/Products/CA9000/manuals/CA9000.pdf Link]&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Aaron &lt;br /&gt;
| This device has limited functionality as a sensor. It can only be used to turn on and off a light directly by setting an association, which Vera supports. It does not fire events, so you cannot use it as an event on a scene.&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| 4-gang radio transmitter, flush-mounted &lt;br /&gt;
| 506004 &lt;br /&gt;
| 2,2,27,1,4 &lt;br /&gt;
| EU &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5060_581_02_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Note: There is proprietary functionality here. Support will be added soon. &lt;br /&gt;
Quite complex device; partially supported by Vera; can be used as a window/door sensor (as of firmware 1.0.900) ... &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Door Locks'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Schlage &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| BE369 (deadbolt) &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Mid 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://consumer.schlage.com/link/product_tour/ Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| [http://forum.micasaverde.com/index.php?action=profile;u=2870 LibraSun] &lt;br /&gt;
| Read the instructions here: [[Schlage Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Kwikset &lt;br /&gt;
| Door lock and deadbolt &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here:[[Kwikset Lock]]&lt;br /&gt;
|-&lt;br /&gt;
| Yale &lt;br /&gt;
| Deadbolt &lt;br /&gt;
| Real Living &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| &lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Quickstart%2018JUL11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20DB%20PUSH%20Instructions%2023AUG11_Rev%20B.pdf Link] &lt;br /&gt;
&lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Read instructions here: [[Yale Lock]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Drapes/Blinds'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DBMZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/dc_mot_ctrls/z-wave/dbmz/dbmz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Electronic Solutions &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| ABMHZ &lt;br /&gt;
| V2+1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.elec-solutions.com/products/int_ac_mot_ctrls/z-wave/abmhz/abmhz.html Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| DC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 12-24VDC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/AC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 2-Wire Motors&lt;br /&gt;
|-&lt;br /&gt;
| Lagotek / RSSceneAutomation &lt;br /&gt;
| Drape/Blind Motor Controller &lt;br /&gt;
| AC1-ZW &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| For 110-230VAC Motors &lt;br /&gt;
| [http://www.lagotek.com/blindspdf/DC1-ZW%20Cut%20Sheet.pdf Link] &lt;br /&gt;
| Shady &lt;br /&gt;
| 4-Wire Motors&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Relay controls'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added&amp;lt;br&amp;gt;By User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Intermatic &lt;br /&gt;
| Contactor control box &lt;br /&gt;
| CA3750 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Nov 2007 &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| [http://www.intouchcontrols.com/~/media/Files/InTouchControls/Products/Spec%20Sheets/CA3750.ashx Link] &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Multi-instance class supported for this device. Vera is able to control each of the 2 relays independently if desired. please note unit shows as three switches this is a bug with Intermatic not a real issue.You can check the box in devices to not show the second listing of the first relay in &amp;quot;Dasboard&amp;quot; You can control heavy loads like a water heater ,pool pump motor/s. great device&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Window Coverings'''  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Merten &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 5025xx, 5035xx, 5045xx &lt;br /&gt;
| 6,2,27,2,3 and 6,2,27,2,4 &lt;br /&gt;
| EU &lt;br /&gt;
| Apr 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.merten.de/download/DL_doku/V5025_581_01_web.pdf Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Ap15e &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work. GUI buttons do not work with Luup release 1.0.843 and 1.0.862 (fixed with Luup release 1.0.879).&amp;lt;br&amp;gt;Workaround: Use a Luup Scene with the following code:&amp;lt;tt&amp;gt;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&amp;lt;tt&amp;gt;local lul_arguments = {}&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_arguments[&amp;quot;newTargetValue&amp;quot;]=&amp;quot;0&amp;quot;&amp;lt;/tt&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;lul_resultcode,lul_resultstring,lul_job,lul_returnarguments = luup.call_action(&amp;quot;urn:upnp-org:serviceId:SwitchPower1&amp;quot;,&amp;quot;SetTarget&amp;quot;,lul_arguments,6) &amp;lt;/tt&amp;gt; Replace &amp;quot;6&amp;quot; with your device number, replace &amp;quot;0&amp;quot; with &amp;quot;1&amp;quot; for inverse action. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Duewi &lt;br /&gt;
| Radio roller shutter push-button &lt;br /&gt;
| 054368 &lt;br /&gt;
| 6,2,51,1,0 &lt;br /&gt;
| EU &lt;br /&gt;
| Jun 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| [http://www.duewi.de/index.php?productid=37344 Link] &lt;br /&gt;
| &amp;amp;nbsp; &lt;br /&gt;
| Lutz &lt;br /&gt;
| Open/Close buttons work well, but slide bar does not work.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Some additional observations by Ap15e (Vera V1, firmware 1.0.979): &lt;br /&gt;
*GUI button 'Stop' and corresponding UPnP service does not work. &lt;br /&gt;
*GUI button 'Up' moves the shutter down, GUI button 'Down' moves the shutter up ... &lt;br /&gt;
*After adjusting the running times even the slide bar seems to work! &lt;br /&gt;
*I got a report from a user that the düwi device may fail due to interference from the shutter motor. In this case an additional filter is required (costs about 25 €/direction). &lt;br /&gt;
*More information is available at [http://forum.micasaverde.com/index.php?topic=3359.msg16142#msg16142 Link]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== '''Cameras that work'''  ===&lt;br /&gt;
&lt;br /&gt;
See [http://wiki.micasaverde.com/index.php/IP_Cameras IP Cameras] for a more comprehensive and up to date list &lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Path for JPEG image &lt;br /&gt;
! Product Review &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC54GCA &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive camera with moderate image quality. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC210 &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and pan/tilt ability. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera.&lt;br /&gt;
|-&lt;br /&gt;
| Linksys &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WVC80N &lt;br /&gt;
| all &lt;br /&gt;
| 2009 &lt;br /&gt;
| Indoor &lt;br /&gt;
| img/snapshot.cgi?size=2&amp;amp;amp;quality=1 &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| A more expensive camera with good image quality and wireless N. Use the Linksys setup wizard for initial setup, then copy IP address and path into Vera setup fields. Use a static IP address. Pan/tilt controls will not work with Vera. &lt;br /&gt;
Size can be (160 x 120 = 1,320 x 240 = 2,640 x 480 = 3) and Quality can be (Very High= 1,High= 2,Normal= 3,Low= 4,Very Low= 5) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| iCamView &lt;br /&gt;
| IP Camera Server &lt;br /&gt;
| iCV-22, iCV-32 &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor/Outdoor &lt;br /&gt;
| pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=1&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;pda.cgi?user=admin&amp;amp;amp;password=1234&amp;amp;amp;page=image&amp;amp;amp;cam=2&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Feature-rich IP camera server, suports up to two compatible USB cameras, optional WiFi support, USB storage, USB hubs, motion; works with range of cameras, see icamview.co.uk. Excellent modular solution. They do ship to North America.&lt;br /&gt;
|-&lt;br /&gt;
| SmartHome.com.au &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Z~Series Wireless Camera &lt;br /&gt;
| all &lt;br /&gt;
| 2009&amp;lt;br&amp;gt; &lt;br /&gt;
| Indoor &lt;br /&gt;
| tmpfs/auto.jpg &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| Inexpensive IP security camera designed for the Australian and New Zealand Z-Wave users, but shipping world wide.&lt;br /&gt;
|-&lt;br /&gt;
| [http://global.level1.com LevelOne] &lt;br /&gt;
| IP Camera &lt;br /&gt;
| WCS-2030 &lt;br /&gt;
| all &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| cgi-bin/video.jpg &lt;br /&gt;
| [http://reviews.cnet.com/search-results/levelone-camcon-wcs-2030/1707-5_7-31972011.html CNET review] &lt;br /&gt;
| An inexpensive IP camera with good image quality. Can be connected wired or wirelessly. Most LevelOne cameras use the same path for the JPEG image, so most of their line (both low and high end) should be compatible. Video and audio also stream over RTSP, which can be customized through the camera's web interface.&lt;br /&gt;
|-&lt;br /&gt;
| Asante &lt;br /&gt;
| IP Camera &lt;br /&gt;
| Voyager I &lt;br /&gt;
| firmware 2.02 and above &lt;br /&gt;
| 2010 &lt;br /&gt;
| Indoor &lt;br /&gt;
| image.cgi &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| An inexpensive&amp;amp;nbsp;IP&amp;amp;nbsp;camera that is very feature rich, has good image quality, night vision capabilities, motion detection, two-way audio, video streaming over TCP, UDP, or HTTP, and other configurable features. In firmware version 2.02, Asante added the capability to retrieve an image via a URL (however, it is delayed by 3 seconds). Offers a full-featured web interface in IE using an ActiveX plug-in (limited capabilites in other browsers).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Alarm Panels  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Model(s) &lt;br /&gt;
! Required module &lt;br /&gt;
! Plugin &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| DSC &lt;br /&gt;
| &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=1 PowerSeries PC1616] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=2 PowerSeries PC1832] &lt;br /&gt;
*[http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=3 PowerSeries PC1864]&lt;br /&gt;
&lt;br /&gt;
| [http://www.dsc.com/index.php?n=products&amp;amp;o=view&amp;amp;id=22 IT-100] &lt;br /&gt;
| [http://code.mios.com/trac/mios_dscalarmpanel/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Elk &lt;br /&gt;
| &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_2981420/M1_Gold_Cross_Platform_Control%C2%AE M1 Gold] &lt;br /&gt;
*[http://www.elkproducts.com/_webapp_3127911/M1EZ8_Cross_Platform_Control%C2%AE M1EZ8]&lt;br /&gt;
&lt;br /&gt;
| The M1EZ8 panel requires the [http://www.elkproducts.com/_webapp_2981423/elk-m1ez8msi__m1ez8_main_serial_interface ELK-M1EZ8MSI] Main Serial Port Interface. &lt;br /&gt;
| [http://code.mios.com/trac/mios_elk-alarm-panel/wiki/WikiStart Link] &lt;br /&gt;
| You can use the ELK-M1XEP Ethernet Interface to connect the panels to Vera on the Ethernet port.&lt;br /&gt;
|-&lt;br /&gt;
| GE Security / Interlogix / Caddx &lt;br /&gt;
| &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-4] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-6] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8] &lt;br /&gt;
*[http://www.interlogix.com/resources/intrusion/906-3179_NetworX_brochure.pdf NetworX NX-8E]&lt;br /&gt;
&lt;br /&gt;
| [http://utcfssecurityproducts.com/ProductsAndServices/Pages/NX-584.aspx NX-584] &lt;br /&gt;
| [http://code.mios.com/trac/mios_caddxnx584/wiki/WikiStart Link] &lt;br /&gt;
| NetworX NX-8E already has a RS-232 interface, so it doesn't require the NX-584 module.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128BPT, VISTA-128BPE, VISTA-128FBP, VISTA-250BP, VISTA-250BPT, VISTA-250BPE and VISTA-250FBP &lt;br /&gt;
| VISTA-50P, VISTA-128BP, VISTA-128FBP, VISTA-250BP, and VISTA-250FBP panels require the [http://www.security.honeywell.com/me/intrusion/products/exp/ac/138478.html 4100SM] module. &lt;br /&gt;
| [http://code.mios.com/trac/mios_ademco-panels-plugin/wiki/WikiStart Link] &lt;br /&gt;
| If your Vista panel is not on this list, look at the next row.&lt;br /&gt;
|-&lt;br /&gt;
| Honeywell / Ademco &lt;br /&gt;
| 10SE, 20SE, 10P, 15P, 20P, 50P, etc. &lt;br /&gt;
| [http://www.nutech.com/online-store/18.html AD2USB] &lt;br /&gt;
| [http://code.mios.com/trac/mios_vista-alarm-panel-ad2usb/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paradox &lt;br /&gt;
| &lt;br /&gt;
*Digiplex DGP-848 &lt;br /&gt;
*EVO48 &lt;br /&gt;
*[http://www.paradox.com/Products/default.asp?CATID=7 EVO192]&lt;br /&gt;
&lt;br /&gt;
| [http://www.paradox.com/Products/default.asp?CATID=7&amp;amp;SUBCATID=75&amp;amp;PRD=234 PRT3 Integration Module] &lt;br /&gt;
| [http://code.mios.com/trac/mios_paradox-alarm/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Visonic &lt;br /&gt;
| &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMax PowerMax] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPlus PowerMax+] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxComplete PowerMaxComplete] &lt;br /&gt;
*[http://www.visonic.com/Products/Wireless-Property-Protection/PowerMaxPro PowerMaxPro]&lt;br /&gt;
&lt;br /&gt;
| RS-232 Interface Module &lt;br /&gt;
| [http://code.mios.com/trac/mios_visonic-powermax/wiki/WikiStart Link] &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Misc  ===&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;2&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Manufacturer &lt;br /&gt;
! Device Type &lt;br /&gt;
! Model no. &lt;br /&gt;
! Version &lt;br /&gt;
! Frequency &lt;br /&gt;
! Date Purchased &lt;br /&gt;
! Location (indoor/outdoor) &lt;br /&gt;
! Specs &lt;br /&gt;
! Product Review &lt;br /&gt;
! Added by User &lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Everspring&lt;br /&gt;
| Door Bell&amp;lt;br&amp;gt;&lt;br /&gt;
| UTSE03A&amp;lt;br&amp;gt;&lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| When added to a third party Z-Wave controller there is no way to associate the push button with the door bell itself, so the push button has no use. In order to make it work, the door bell needs to be associated with a regular Z-Wave switch either by creating associations or by creating a scene.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Fortrezz_WWA-002</id>
		<title>Fortrezz WWA-002</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Fortrezz_WWA-002"/>
				<updated>2012-07-26T16:53:09Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The WWA-02 alarms when water is detected and will also provide a Z-WaveTM alarm signal when the temperature drops below a low temperature setpoint or rises above a high temperature setpoint. The WWA-02 functionality is based on wireless (RF) transmissions. Any wireless transmission can be subject to RF interference and, although unlikely, this interference may cause the unit to not operate as intended. The WWA-02 must not be used in life support and/or safety applications. &lt;br /&gt;
&lt;br /&gt;
== Adding the sensor to Vera&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
To '''include '''a Z-Wave device you must put Vera in include mode by pressing the Z-Wave button once. When it goes into learn mode the Z-Wave light should be blinking slowly, then briefly press the button once and the controller will indicate the unit has been included in the network. Also, the LED will blink when the inclusion completes. Inclusion and exclusion are always done at normal transmit power mode.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If the sensor is not getting included, it could mean it has been added into another Z-Wave network previously, so you will have to exclude it. &lt;br /&gt;
&lt;br /&gt;
To '''exclude '''a Z-Wave device you must put Vera in exclude mode by keeping the Z-Wave button pressed for about 3 seconds. When you release it, the Z-Wave light should start blinking fast and you will have to press and hold the button for approx. 2 seconds until the controller indicates the unit has been removed from the network. The LED will blink when the exclusion completes.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Associations&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Once in a network, a controller can be used to associate the WWA-02 with other devices in the Z-WaveTM network, such as a light or another remote audible alarm. Refer to your controller’s documentation on how to associate WWA-02 with another device in your network. The WWA-02 supports three association groups with a maximum of 5 devices in each group. Basic Set commands are sent at 30-minute intervals to the associated groups while alarms are active. &lt;br /&gt;
&lt;br /&gt;
*A Basic Set Command is sent to the associated nodes, if any, assigned to Group1 to indicate that EITHER a Water Alarm OR Heat Alarm (under or over temperature) is active. &lt;br /&gt;
*A Basic Set Command with value = 0xFF is sent to the associated nodes, if any, assigned to Group2 to indicate that a Water Alarm is active. When the water alarm is cleared by drying the contacts, one additional report with value = 0x00 is sent.&amp;lt;br&amp;gt; &lt;br /&gt;
*A Basic Set Command is sent to the associated nodes, if any, assigned to Group3 to indicate that a Temperature Alarm (over or under temperature) is active. When the temperature alarm is cleared due to temperature change, one additional report with value = 0x00 is sent.&lt;br /&gt;
&lt;br /&gt;
== Wakeup Notification&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
The WWA-02 will wakeup and send a notification every 4 hours (default) to allow a controller to query and update the status of the unit. A brief button press while in network will also cause the WWA-02 to wakeup and send a notification. The device stays awake for 5 seconds during this time or longer if communicating with the controller.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;Status LED Indications&amp;lt;/u&amp;gt;'''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;width: 730px; height: 257px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| bgcolor=&amp;quot;#cccccc&amp;quot; | '''Number of Blinks&amp;amp;nbsp;'''&amp;amp;nbsp; &amp;lt;br&amp;gt; &lt;br /&gt;
| bgcolor=&amp;quot;#cccccc&amp;quot; | '''&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; Meaning'''&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | '''Fast Blinks, Normal Operation'''&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 1&amp;lt;br&amp;gt; &lt;br /&gt;
| Wakeup Notification Sent (after quick button press while in Network)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 2&amp;lt;br&amp;gt; &lt;br /&gt;
| Water Alarm&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 3&amp;lt;br&amp;gt; &lt;br /&gt;
| Temperature Alarm (either high or low setpoint triggered)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 4&amp;lt;br&amp;gt; &lt;br /&gt;
| An active alarm has been cleared (when a water alarm or a temperature alarm is no longer active)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 5&amp;lt;br&amp;gt; &lt;br /&gt;
| Low Battery (repeated every approx. 40 seconds)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | '''Slow Blinks, After Battery Replacement or Inclusion / Exclusion'''&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 1&amp;lt;br&amp;gt; &lt;br /&gt;
| In-Network (also, after button held while in-Network)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 3&amp;lt;br&amp;gt; &lt;br /&gt;
| Out of Network (also given if inclusion was not completed)&amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Configuration&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
The high and low temperature setpoints in the WWA-02 can be configured. The low temperature setpoint must always be set at least two degrees below the high temperature setpoint. The low temperature setpoint cannot be set less than –10 degrees C and the high temperature setpoint cannot be set greater than 70 degrees C.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*Parameter 1 sets Low Temperature Trigger Point (degrees Centigrade, 1 signed byte, Default = 4) &lt;br /&gt;
*Parameter 2 sets High Temperature Trigger Point (degrees Centigrade, 1 signed byte, Default = 70)&lt;br /&gt;
&lt;br /&gt;
On Vera's Dashboard go to the sensor's properties page by clicking on the ''wrench key'' then on the &amp;quot;Device Options&amp;quot; tab where you can set or edit these parameters.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;To do this click on the 'Add Configuration Setting' button, then indicate which variable number to set, and what value to set it to. Put the setting you want in 'Desired Value'. Vera will attempt to configure the node after you click the red 'Save' button. Since the sensor 's a battery operated device, Vera can't configure it right away, and you will have to configure it by pressing the button on the sensor several times near Vera. &amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Once Vera has configured the Z-Wave device, Vera will ask the device again for the value of the configuration setting and show it under 'Current Value'. If you set a value, configured the device, and the current value is something other than your desired value, that means the Z-Wave device did not accept the 'Desired Value' you gave it, and you may need to contact the manufacturer for clarification. &amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;If you change the 'Data Size' option to say 'Monitor only', then when the device is next configured Vera will not change the value, but Vera will ask the device for the current value and show it in the 'Current Value' column. If you change it to 'Default', then the next time Vera configures the device, Vera will tell the device to go back to the default value for this setting, and you'll see the value in the 'Current Value' column.&amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== References  ==&lt;br /&gt;
&lt;br /&gt;
[http://fortrezz.com/files/WWA_02_manual.pdf http://fortrezz.com/files/WWA_02_manual.pdf] &lt;br /&gt;
&lt;br /&gt;
[[Category:How_To]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/ExpressControls3in1</id>
		<title>ExpressControls3in1</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/ExpressControls3in1"/>
				<updated>2012-07-24T18:40:27Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Overview  ==&lt;br /&gt;
&lt;br /&gt;
The EZMotion Wireless 3-in-1 sensor is functionally identical to the HomeSeer HSM100 device. The user's manual is here: http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf &lt;br /&gt;
&lt;br /&gt;
=== Features  ===&lt;br /&gt;
&lt;br /&gt;
This unit is a contains three sensors that report values to the Vera: &lt;br /&gt;
&lt;br /&gt;
*'''Motion Sensor''' with adjustable sensitivity and timeout &lt;br /&gt;
*'''Temperature Sensor''' &lt;br /&gt;
*'''Luminosity (Light Level) Sensor''' reporting level of light as a percentage between the brightest and darkest levels it has encountered since being switched on for the first time&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; The temperature and light levels are reported when the device wakes up and reports back to Vera, but the motion sensor will report automatically whenever it has been tripped, wether the device is sleeping or not.&amp;lt;br&amp;gt; The unit has a red LED which indicates when motion is detected and it can be disabled. It can also report its battery level as a percentage to the Vera.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Basic Configuration  ==&lt;br /&gt;
&lt;br /&gt;
For more information about Device Options, please visit:&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[http://docs5.mios.com/doc.php?language=1&amp;amp;manual=1&amp;amp;platform=3Pro&amp;amp;page=add_device_zwave_properties_dev_option http://docs5.mios.com/doc.php?language=1&amp;amp;amp;manual=1&amp;amp;amp;platform=3Pro&amp;amp;amp;page=add_device_zwave_properties_dev_option]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Wake Up interval  ===&lt;br /&gt;
&lt;br /&gt;
The unit sleeps for the duration of the Wake Up interval, which defaults to 1800 seconds or 30 minutes. When the interval expires, it wakes up and reports Temperature and Luminosity to the Vera. Note that while all 4 devices in the Vera MIOS screen can be configured for Wake Up intervals, only the setting for the '3-in-1 Sensor' has any effect and controls both Temperature and Luminosity intervals. The Motion Sensor is unaffected by the Wakeup Interval (see On Time below) &lt;br /&gt;
&lt;br /&gt;
To set the Wake Up Interval, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Setting and set Wakeup Interval to the desired interval (in seconds, e.g. 1800(seconds) = 30 min before the sensor wakes up again). Reducing the wake up interval (causing the sensor to transmit radio signals more often) reduces battery life. &lt;br /&gt;
&lt;br /&gt;
=== On Time  ===&lt;br /&gt;
&lt;br /&gt;
When the Motion Sensor is tripped, it transmits a tripped command and changes its state to Tripped=1 for the duration of the ON TIME variable. After this time has expired, it sends an Untripped command to the Vera and resets it state to Tripped=0. While the device is in a tripped state, any motion detected resets the interval timer but doesn't report a new trip event to the Vera. During the wait time the Motion Sensor device in the Vera will show Tripped=1 in the Advanced tab. &lt;br /&gt;
&lt;br /&gt;
To set the ON TIME, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Device Options and set variable 2 (On Time) to 5 (or the desired interval in minutes) &lt;br /&gt;
&lt;br /&gt;
'''Direct Association:''' The unit can be associated directly with another device such as a light. If you've done this, the unit will turn the light on when motion is sensed, then turn it off after the ON TIME. According to the sensor's manual up to four associated devices are supported, but associating more than one device does not work (as of Vera's firmware 1.0.900, see http://bugs.micasaverde.com/view.php?id=705). &lt;br /&gt;
&lt;br /&gt;
Leave Parameter #6, &amp;quot;OnValue&amp;quot;, at the default if you want the sensor tripped events in Vera. &lt;br /&gt;
&lt;br /&gt;
=== Polling Frequency  ===&lt;br /&gt;
&lt;br /&gt;
The unit can only be polled when it is either in Test mode or within 3 seconds after waking up (see Wake Up Interval above). Polling at any other time will fail since the unit will not respond. Also, every time the unit wakes up, it updates Vera with the temperature and luminosity. This means that polling is unnecessary and the polling frequency should be set to 0 (disabled) or a long interval to avoid unnecessary traffic on Vera, which could cause updates to be missed. &lt;br /&gt;
&lt;br /&gt;
An exception to this rule is when Vera is set to Always Awake (see AC Power below). In that case, the unit is always awake, so never reports its values (which happens at wake-up) and must be polled at regular intervals. &lt;br /&gt;
&lt;br /&gt;
=== Example  ===&lt;br /&gt;
&lt;br /&gt;
Consider the following example of how to configure the sensor and the Vera for a common application. Suppose you want to install a motion sensor in your garage to turn the lights on when you enter, keep them on for as long as you move around in the garage, then turn them off 5 minutes after you've left. &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;UI4&amp;lt;/u&amp;gt;'''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#Put the unit in Test mode by pressing the button on the side &lt;br /&gt;
#Configure the On Time to 5 minutes &lt;br /&gt;
#Create two scenes in Vera: &lt;br /&gt;
##Turn on the light when the unit has tripped (New Scene, Events tab, Add Event, Device=Motion sensor, Type of Event=Armed sensor has tripped, Name=whatever, Tripped=Yes) &lt;br /&gt;
##Turn off the light when the unit sends an untrip command which happens after the On Time interval. (New Scene, Events tab, Add Event, Device=Motion sensor, Type of Event=Armed sensor has tripped, Name=whatever, Tripped=No)&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;UI5&amp;lt;/u&amp;gt;'''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#Put the unit in Test mode by pressing the button on the side &lt;br /&gt;
#Configure the On Time to 5 minutes &lt;br /&gt;
#Create two scenes in Vera: &lt;br /&gt;
##Turn on the light when the unit has tripped (Automation -&amp;amp;gt; Create Scene, Triggers tab, Add trigger, Device=Motion sensor, What type of event is the trigger?=An armed sensor is tripped, Name for this trigger=whatever, Device armed is tripped) &lt;br /&gt;
##Turn off the light when the unit sends an untrip command which happens after the On Time interval. (Automation -&amp;amp;gt; Create Scene, Triggers tab, Add trigger, Device=Motion sensor, What type of event is the trigger?=An armed sensor is tripped, Name for this trigger=whatever, Device armed is not tripped)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Advanced Configuration  ==&lt;br /&gt;
&lt;br /&gt;
=== Running from AC Power  ===&lt;br /&gt;
&lt;br /&gt;
==== Overview  ====&lt;br /&gt;
&lt;br /&gt;
It is possible to run the unit from AC power instead of batteries, which will have the following benefits: &lt;br /&gt;
&lt;br /&gt;
*Allow you to keep the unit awake permanently, allowing you to poll it and customise it without being in Test mode &lt;br /&gt;
*Report continuously every time motion is sensed, as opposed to waiting for the ON TIME duration in between trips &lt;br /&gt;
*Set the unit to report temperature and light levels at higher frequencies up to 1 minute &lt;br /&gt;
*Let the unit act as a Z-Wave repeater, increasing the span of your network &lt;br /&gt;
*Never worry about running down batteries. All of the above options are possible on battery power, but will run your batteries down within a few days&lt;br /&gt;
&lt;br /&gt;
==== Configure  ====&lt;br /&gt;
&lt;br /&gt;
To do this, you will need to connect a AC to DC transformer that supplies 4.5v to 5.5v at up to 1amp to the battery terminals directly. Ensure that you measure that actual output voltage of the transformer using a multi/voltage meter (don't rely on its advertised rating). Any over-voltage may fry the unit. Also make sure that the polarity is correct. It may be helpful to add a diode in series with the positive terminal to prevent accidentally frying the unit if the polarity is incorrect. It will drop the voltage by 0.6v though. &lt;br /&gt;
&lt;br /&gt;
'''Setting ''Stay Awake'' to On''' By default, the unit is constantly asleep and only wakes up at regular intervals to report the luminosity and temperature, before sleeping again. This is to save batteries. While asleep, the unit cannot be programmed from the Vera and cannot be polled for information. To get around this, one normally activates the Test mode by pressing the button on the side of the unit, which keeps it awake for 10 minutes so that it can be programmed. By setting the unit to stay awake constantly, you can program, poll or configure it at any time. It also has the side effect of enabling the unit to become a repeater of Z Wave signals throughout the network. &lt;br /&gt;
&lt;br /&gt;
To set it, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Device Options and set variable 5 (Stay Awake) to 1 or any number greater than 0. &lt;br /&gt;
&lt;br /&gt;
To activate this setting, you will need to exclude and reinclude the unit using the standard Vera process. Remember to save your settings first. &lt;br /&gt;
&lt;br /&gt;
'''Setting ''On Time'' to ''Always Fire''''' When the unit detects motion, it reports it by sending a Tripped command to the Vera. It then waits for the duration of the On Time and then sends un Untripped command to the Vera and waits for the next motion. Since battery life is not a consideration while on AC power, you can set it to 'Always Fire', which sends a Tripped command whenever motion is detected with no waiting period. Note, this will also prevent an Untripped command from being sent. &lt;br /&gt;
&lt;br /&gt;
To set it, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Device Options and set variable 2 (On Time) to 0. &lt;br /&gt;
&lt;br /&gt;
'''Setting Poll frequency''' The unit usually only reports temperate and luminosity every time it wakes up, but since the unit is now constantly awake, you will have to configure a poll frequency to gather that information. &lt;br /&gt;
&lt;br /&gt;
To set it, click on the spanner (wrench) icon for the &amp;quot;Motion Sensor&amp;quot; device, click on Settings and set &amp;quot;Poll this node at most every&amp;quot; to the required update frequency. The Wakeup interval setting on this same screen has no effect since it's been overridden by Always Awake setting. &lt;br /&gt;
&lt;br /&gt;
== Known issues  ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:Plugins]] [[Category:3rd_Party]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/ExpressControls3in1</id>
		<title>ExpressControls3in1</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/ExpressControls3in1"/>
				<updated>2012-07-24T18:40:04Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Overview  ==&lt;br /&gt;
&lt;br /&gt;
The EZMotion Wireless 3-in-1 sensor is functionally identical to the HomeSeer HSM100 device. The user's manual is here: http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf &lt;br /&gt;
&lt;br /&gt;
=== Features  ===&lt;br /&gt;
&lt;br /&gt;
This unit is a contains three sensors that report values to the Vera: &lt;br /&gt;
&lt;br /&gt;
*'''Motion Sensor''' with adjustable sensitivity and timeout &lt;br /&gt;
*'''Temperature Sensor''' &lt;br /&gt;
*'''Luminosity (Light Level) Sensor''' reporting level of light as a percentage between the brightest and darkest levels it has encountered since being switched on for the first time&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The temperature and light levels are reported when the device wakes up and reports back to Vera, but the motion sensor will report automatically whenever it has been tripped, wether the device is sleeping or not.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The unit has a red LED which indicates when motion is detected and it can be disabled. It can also report its battery level as a percentage to the Vera.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Basic Configuration  ==&lt;br /&gt;
&lt;br /&gt;
For more information about Device Options, please visit:&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[http://docs5.mios.com/doc.php?language=1&amp;amp;manual=1&amp;amp;platform=3Pro&amp;amp;page=add_device_zwave_properties_dev_option http://docs5.mios.com/doc.php?language=1&amp;amp;amp;manual=1&amp;amp;amp;platform=3Pro&amp;amp;amp;page=add_device_zwave_properties_dev_option]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Wake Up interval  ===&lt;br /&gt;
&lt;br /&gt;
The unit sleeps for the duration of the Wake Up interval, which defaults to 1800 seconds or 30 minutes. When the interval expires, it wakes up and reports Temperature and Luminosity to the Vera. Note that while all 4 devices in the Vera MIOS screen can be configured for Wake Up intervals, only the setting for the '3-in-1 Sensor' has any effect and controls both Temperature and Luminosity intervals. The Motion Sensor is unaffected by the Wakeup Interval (see On Time below) &lt;br /&gt;
&lt;br /&gt;
To set the Wake Up Interval, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Setting and set Wakeup Interval to the desired interval (in seconds, e.g. 1800(seconds) = 30 min before the sensor wakes up again). Reducing the wake up interval (causing the sensor to transmit radio signals more often) reduces battery life. &lt;br /&gt;
&lt;br /&gt;
=== On Time  ===&lt;br /&gt;
&lt;br /&gt;
When the Motion Sensor is tripped, it transmits a tripped command and changes its state to Tripped=1 for the duration of the ON TIME variable. After this time has expired, it sends an Untripped command to the Vera and resets it state to Tripped=0. While the device is in a tripped state, any motion detected resets the interval timer but doesn't report a new trip event to the Vera. During the wait time the Motion Sensor device in the Vera will show Tripped=1 in the Advanced tab. &lt;br /&gt;
&lt;br /&gt;
To set the ON TIME, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Device Options and set variable 2 (On Time) to 5 (or the desired interval in minutes) &lt;br /&gt;
&lt;br /&gt;
'''Direct Association:''' The unit can be associated directly with another device such as a light. If you've done this, the unit will turn the light on when motion is sensed, then turn it off after the ON TIME. According to the sensor's manual up to four associated devices are supported, but associating more than one device does not work (as of Vera's firmware 1.0.900, see http://bugs.micasaverde.com/view.php?id=705). &lt;br /&gt;
&lt;br /&gt;
Leave Parameter #6, &amp;quot;OnValue&amp;quot;, at the default if you want the sensor tripped events in Vera. &lt;br /&gt;
&lt;br /&gt;
=== Polling Frequency  ===&lt;br /&gt;
&lt;br /&gt;
The unit can only be polled when it is either in Test mode or within 3 seconds after waking up (see Wake Up Interval above). Polling at any other time will fail since the unit will not respond. Also, every time the unit wakes up, it updates Vera with the temperature and luminosity. This means that polling is unnecessary and the polling frequency should be set to 0 (disabled) or a long interval to avoid unnecessary traffic on Vera, which could cause updates to be missed. &lt;br /&gt;
&lt;br /&gt;
An exception to this rule is when Vera is set to Always Awake (see AC Power below). In that case, the unit is always awake, so never reports its values (which happens at wake-up) and must be polled at regular intervals. &lt;br /&gt;
&lt;br /&gt;
=== Example  ===&lt;br /&gt;
&lt;br /&gt;
Consider the following example of how to configure the sensor and the Vera for a common application. Suppose you want to install a motion sensor in your garage to turn the lights on when you enter, keep them on for as long as you move around in the garage, then turn them off 5 minutes after you've left. &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;UI4&amp;lt;/u&amp;gt;'''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#Put the unit in Test mode by pressing the button on the side &lt;br /&gt;
#Configure the On Time to 5 minutes &lt;br /&gt;
#Create two scenes in Vera: &lt;br /&gt;
##Turn on the light when the unit has tripped (New Scene, Events tab, Add Event, Device=Motion sensor, Type of Event=Armed sensor has tripped, Name=whatever, Tripped=Yes) &lt;br /&gt;
##Turn off the light when the unit sends an untrip command which happens after the On Time interval. (New Scene, Events tab, Add Event, Device=Motion sensor, Type of Event=Armed sensor has tripped, Name=whatever, Tripped=No)&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;UI5&amp;lt;/u&amp;gt;'''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#Put the unit in Test mode by pressing the button on the side &lt;br /&gt;
#Configure the On Time to 5 minutes &lt;br /&gt;
#Create two scenes in Vera: &lt;br /&gt;
##Turn on the light when the unit has tripped (Automation -&amp;amp;gt; Create Scene, Triggers tab, Add trigger, Device=Motion sensor, What type of event is the trigger?=An armed sensor is tripped, Name for this trigger=whatever, Device armed is tripped) &lt;br /&gt;
##Turn off the light when the unit sends an untrip command which happens after the On Time interval. (Automation -&amp;amp;gt; Create Scene, Triggers tab, Add trigger, Device=Motion sensor, What type of event is the trigger?=An armed sensor is tripped, Name for this trigger=whatever, Device armed is not tripped)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Advanced Configuration  ==&lt;br /&gt;
&lt;br /&gt;
=== Running from AC Power  ===&lt;br /&gt;
&lt;br /&gt;
==== Overview  ====&lt;br /&gt;
&lt;br /&gt;
It is possible to run the unit from AC power instead of batteries, which will have the following benefits: &lt;br /&gt;
&lt;br /&gt;
*Allow you to keep the unit awake permanently, allowing you to poll it and customise it without being in Test mode &lt;br /&gt;
*Report continuously every time motion is sensed, as opposed to waiting for the ON TIME duration in between trips &lt;br /&gt;
*Set the unit to report temperature and light levels at higher frequencies up to 1 minute &lt;br /&gt;
*Let the unit act as a Z-Wave repeater, increasing the span of your network &lt;br /&gt;
*Never worry about running down batteries. All of the above options are possible on battery power, but will run your batteries down within a few days&lt;br /&gt;
&lt;br /&gt;
==== Configure  ====&lt;br /&gt;
&lt;br /&gt;
To do this, you will need to connect a AC to DC transformer that supplies 4.5v to 5.5v at up to 1amp to the battery terminals directly. Ensure that you measure that actual output voltage of the transformer using a multi/voltage meter (don't rely on its advertised rating). Any over-voltage may fry the unit. Also make sure that the polarity is correct. It may be helpful to add a diode in series with the positive terminal to prevent accidentally frying the unit if the polarity is incorrect. It will drop the voltage by 0.6v though. &lt;br /&gt;
&lt;br /&gt;
'''Setting ''Stay Awake'' to On''' By default, the unit is constantly asleep and only wakes up at regular intervals to report the luminosity and temperature, before sleeping again. This is to save batteries. While asleep, the unit cannot be programmed from the Vera and cannot be polled for information. To get around this, one normally activates the Test mode by pressing the button on the side of the unit, which keeps it awake for 10 minutes so that it can be programmed. By setting the unit to stay awake constantly, you can program, poll or configure it at any time. It also has the side effect of enabling the unit to become a repeater of Z Wave signals throughout the network. &lt;br /&gt;
&lt;br /&gt;
To set it, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Device Options and set variable 5 (Stay Awake) to 1 or any number greater than 0. &lt;br /&gt;
&lt;br /&gt;
To activate this setting, you will need to exclude and reinclude the unit using the standard Vera process. Remember to save your settings first. &lt;br /&gt;
&lt;br /&gt;
'''Setting ''On Time'' to ''Always Fire''''' When the unit detects motion, it reports it by sending a Tripped command to the Vera. It then waits for the duration of the On Time and then sends un Untripped command to the Vera and waits for the next motion. Since battery life is not a consideration while on AC power, you can set it to 'Always Fire', which sends a Tripped command whenever motion is detected with no waiting period. Note, this will also prevent an Untripped command from being sent. &lt;br /&gt;
&lt;br /&gt;
To set it, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Device Options and set variable 2 (On Time) to 0. &lt;br /&gt;
&lt;br /&gt;
'''Setting Poll frequency''' The unit usually only reports temperate and luminosity every time it wakes up, but since the unit is now constantly awake, you will have to configure a poll frequency to gather that information. &lt;br /&gt;
&lt;br /&gt;
To set it, click on the spanner (wrench) icon for the &amp;quot;Motion Sensor&amp;quot; device, click on Settings and set &amp;quot;Poll this node at most every&amp;quot; to the required update frequency. The Wakeup interval setting on this same screen has no effect since it's been overridden by Always Awake setting. &lt;br /&gt;
&lt;br /&gt;
== Known issues  ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:Plugins]] [[Category:3rd_Party]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/ExpressControls3in1</id>
		<title>ExpressControls3in1</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/ExpressControls3in1"/>
				<updated>2012-07-24T18:39:23Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Overview  ==&lt;br /&gt;
&lt;br /&gt;
The EZMotion Wireless 3-in-1 sensor is functionally identical to the HomeSeer HSM100 device. The user's manual is here: http://www.expresscontrols.com/pdf/EZMotionOwnerManual.pdf &lt;br /&gt;
&lt;br /&gt;
=== Features  ===&lt;br /&gt;
&lt;br /&gt;
This unit is a contains three sensors that report values to the Vera: &lt;br /&gt;
&lt;br /&gt;
*'''Motion Sensor''' with adjustable sensitivity and timeout &lt;br /&gt;
*'''Temperature Sensor'''&lt;br /&gt;
*'''Luminosity (Light Level) Sensor''' reporting level of light as a percentage between the brightest and darkest levels it has encountered since being switched on for the first time&lt;br /&gt;
&lt;br /&gt;
The unit has a red LED which indicates when motion is detected and it can be disabled. It can also report its battery level as a percentage to the Vera.&lt;br /&gt;
&lt;br /&gt;
The temperature and light levels are reported when the device wakes up and reports back to Vera, but the motion sensor will report automatically whenever it has been tripped, wether the device is sleeping or not.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Basic Configuration  ==&lt;br /&gt;
&lt;br /&gt;
For more information about Device Options, please visit:&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[http://docs5.mios.com/doc.php?language=1&amp;amp;manual=1&amp;amp;platform=3Pro&amp;amp;page=add_device_zwave_properties_dev_option http://docs5.mios.com/doc.php?language=1&amp;amp;amp;manual=1&amp;amp;amp;platform=3Pro&amp;amp;amp;page=add_device_zwave_properties_dev_option]&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Wake Up interval  ===&lt;br /&gt;
&lt;br /&gt;
The unit sleeps for the duration of the Wake Up interval, which defaults to 1800 seconds or 30 minutes. When the interval expires, it wakes up and reports Temperature and Luminosity to the Vera. Note that while all 4 devices in the Vera MIOS screen can be configured for Wake Up intervals, only the setting for the '3-in-1 Sensor' has any effect and controls both Temperature and Luminosity intervals. The Motion Sensor is unaffected by the Wakeup Interval (see On Time below) &lt;br /&gt;
&lt;br /&gt;
To set the Wake Up Interval, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Setting and set Wakeup Interval to the desired interval (in seconds, e.g. 1800(seconds) = 30 min before the sensor wakes up again). Reducing the wake up interval (causing the sensor to transmit radio signals more often) reduces battery life. &lt;br /&gt;
&lt;br /&gt;
=== On Time  ===&lt;br /&gt;
&lt;br /&gt;
When the Motion Sensor is tripped, it transmits a tripped command and changes its state to Tripped=1 for the duration of the ON TIME variable. After this time has expired, it sends an Untripped command to the Vera and resets it state to Tripped=0. While the device is in a tripped state, any motion detected resets the interval timer but doesn't report a new trip event to the Vera. During the wait time the Motion Sensor device in the Vera will show Tripped=1 in the Advanced tab. &lt;br /&gt;
&lt;br /&gt;
To set the ON TIME, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Device Options and set variable 2 (On Time) to 5 (or the desired interval in minutes) &lt;br /&gt;
&lt;br /&gt;
'''Direct Association:''' The unit can be associated directly with another device such as a light. If you've done this, the unit will turn the light on when motion is sensed, then turn it off after the ON TIME. According to the sensor's manual up to four associated devices are supported, but associating more than one device does not work (as of Vera's firmware 1.0.900, see http://bugs.micasaverde.com/view.php?id=705). &lt;br /&gt;
&lt;br /&gt;
Leave Parameter #6, &amp;quot;OnValue&amp;quot;, at the default if you want the sensor tripped events in Vera. &lt;br /&gt;
&lt;br /&gt;
=== Polling Frequency  ===&lt;br /&gt;
&lt;br /&gt;
The unit can only be polled when it is either in Test mode or within 3 seconds after waking up (see Wake Up Interval above). Polling at any other time will fail since the unit will not respond. Also, every time the unit wakes up, it updates Vera with the temperature and luminosity. This means that polling is unnecessary and the polling frequency should be set to 0 (disabled) or a long interval to avoid unnecessary traffic on Vera, which could cause updates to be missed. &lt;br /&gt;
&lt;br /&gt;
An exception to this rule is when Vera is set to Always Awake (see AC Power below). In that case, the unit is always awake, so never reports its values (which happens at wake-up) and must be polled at regular intervals. &lt;br /&gt;
&lt;br /&gt;
=== Example  ===&lt;br /&gt;
&lt;br /&gt;
Consider the following example of how to configure the sensor and the Vera for a common application. Suppose you want to install a motion sensor in your garage to turn the lights on when you enter, keep them on for as long as you move around in the garage, then turn them off 5 minutes after you've left. &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;UI4&amp;lt;/u&amp;gt;'''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#Put the unit in Test mode by pressing the button on the side &lt;br /&gt;
#Configure the On Time to 5 minutes &lt;br /&gt;
#Create two scenes in Vera: &lt;br /&gt;
##Turn on the light when the unit has tripped (New Scene, Events tab, Add Event, Device=Motion sensor, Type of Event=Armed sensor has tripped, Name=whatever, Tripped=Yes) &lt;br /&gt;
##Turn off the light when the unit sends an untrip command which happens after the On Time interval. (New Scene, Events tab, Add Event, Device=Motion sensor, Type of Event=Armed sensor has tripped, Name=whatever, Tripped=No)&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;UI5&amp;lt;/u&amp;gt;'''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#Put the unit in Test mode by pressing the button on the side &lt;br /&gt;
#Configure the On Time to 5 minutes &lt;br /&gt;
#Create two scenes in Vera: &lt;br /&gt;
##Turn on the light when the unit has tripped (Automation -&amp;amp;gt; Create Scene, Triggers tab, Add trigger, Device=Motion sensor, What type of event is the trigger?=An armed sensor is tripped, Name for this trigger=whatever, Device armed is tripped) &lt;br /&gt;
##Turn off the light when the unit sends an untrip command which happens after the On Time interval. (Automation -&amp;amp;gt; Create Scene, Triggers tab, Add trigger, Device=Motion sensor, What type of event is the trigger?=An armed sensor is tripped, Name for this trigger=whatever, Device armed is not tripped)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Advanced Configuration  ==&lt;br /&gt;
&lt;br /&gt;
=== Running from AC Power  ===&lt;br /&gt;
&lt;br /&gt;
==== Overview  ====&lt;br /&gt;
&lt;br /&gt;
It is possible to run the unit from AC power instead of batteries, which will have the following benefits: &lt;br /&gt;
&lt;br /&gt;
*Allow you to keep the unit awake permanently, allowing you to poll it and customise it without being in Test mode &lt;br /&gt;
*Report continuously every time motion is sensed, as opposed to waiting for the ON TIME duration in between trips &lt;br /&gt;
*Set the unit to report temperature and light levels at higher frequencies up to 1 minute &lt;br /&gt;
*Let the unit act as a Z-Wave repeater, increasing the span of your network &lt;br /&gt;
*Never worry about running down batteries. All of the above options are possible on battery power, but will run your batteries down within a few days&lt;br /&gt;
&lt;br /&gt;
==== Configure  ====&lt;br /&gt;
&lt;br /&gt;
To do this, you will need to connect a AC to DC transformer that supplies 4.5v to 5.5v at up to 1amp to the battery terminals directly. Ensure that you measure that actual output voltage of the transformer using a multi/voltage meter (don't rely on its advertised rating). Any over-voltage may fry the unit. Also make sure that the polarity is correct. It may be helpful to add a diode in series with the positive terminal to prevent accidentally frying the unit if the polarity is incorrect. It will drop the voltage by 0.6v though. &lt;br /&gt;
&lt;br /&gt;
'''Setting ''Stay Awake'' to On''' By default, the unit is constantly asleep and only wakes up at regular intervals to report the luminosity and temperature, before sleeping again. This is to save batteries. While asleep, the unit cannot be programmed from the Vera and cannot be polled for information. To get around this, one normally activates the Test mode by pressing the button on the side of the unit, which keeps it awake for 10 minutes so that it can be programmed. By setting the unit to stay awake constantly, you can program, poll or configure it at any time. It also has the side effect of enabling the unit to become a repeater of Z Wave signals throughout the network. &lt;br /&gt;
&lt;br /&gt;
To set it, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Device Options and set variable 5 (Stay Awake) to 1 or any number greater than 0. &lt;br /&gt;
&lt;br /&gt;
To activate this setting, you will need to exclude and reinclude the unit using the standard Vera process. Remember to save your settings first. &lt;br /&gt;
&lt;br /&gt;
'''Setting ''On Time'' to ''Always Fire''''' When the unit detects motion, it reports it by sending a Tripped command to the Vera. It then waits for the duration of the On Time and then sends un Untripped command to the Vera and waits for the next motion. Since battery life is not a consideration while on AC power, you can set it to 'Always Fire', which sends a Tripped command whenever motion is detected with no waiting period. Note, this will also prevent an Untripped command from being sent. &lt;br /&gt;
&lt;br /&gt;
To set it, click on the spanner (wrench) icon for the &amp;quot;3-in-1 sensor&amp;quot; device, click on Device Options and set variable 2 (On Time) to 0. &lt;br /&gt;
&lt;br /&gt;
'''Setting Poll frequency''' The unit usually only reports temperate and luminosity every time it wakes up, but since the unit is now constantly awake, you will have to configure a poll frequency to gather that information. &lt;br /&gt;
&lt;br /&gt;
To set it, click on the spanner (wrench) icon for the &amp;quot;Motion Sensor&amp;quot; device, click on Settings and set &amp;quot;Poll this node at most every&amp;quot; to the required update frequency. The Wakeup interval setting on this same screen has no effect since it's been overridden by Always Awake setting. &lt;br /&gt;
&lt;br /&gt;
== Known issues  ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:Plugins]] [[Category:3rd_Party]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Clone_Dongle</id>
		<title>Clone Dongle</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Clone_Dongle"/>
				<updated>2012-07-24T16:35:53Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; '''HOWTO Clone your Z-Wave dongle (Vera2 and Vera3 have the Z-Wave chip built in, a dongle is optional)''' &lt;br /&gt;
&lt;br /&gt;
== Introduction  ==&lt;br /&gt;
&lt;br /&gt;
The Z-Wave chip inside the black dongle maintains the master list of all the other Z-Wave devices that you have included into your Z-Wave network. Vera also maintains its own database with a list of devices, and Vera's database has a lot more detail, such as the name of the device, the room that it's in and so on. Vera continually syncs its database with the master list of devices in the Z-Wave dongle. This is why you can remove the dongle, carry it around to pair and unpair devices, and when you reconnect the dongle to Vera, Vera will show any new or removed devices. If you insert a new dongle in Vera, then all your devices will disappear since the new dongle doesn't have any devices paired to it and so Vera deletes the ones in its database. &lt;br /&gt;
&lt;br /&gt;
Starting with Luup version 1.0.880 and higher, Vera is able to backup not only Vera's database, but also the data stored in the dongle.&amp;amp;nbsp; Vera also has the ability to restore, or clone, this backup into another dongle. &lt;br /&gt;
&lt;br /&gt;
For example, if you receive a replacement dongle, you can restore a backup of your old dongle's data to the new dongle so you don't have to rebuild your network. &lt;br /&gt;
&lt;br /&gt;
== Instructions  ==&lt;br /&gt;
&lt;br /&gt;
To do this follow these steps: &lt;br /&gt;
&lt;br /&gt;
#Be sure that you have not made any changes to Vera within the past 2 hours.&amp;lt;br&amp;gt;Vera will backup the dongle's configuration whenever the list of devices in the dongle changes. The backup process is slow, so Vera does it in small increments when there is no activity on the Z-Wave network. In Vera's setup page, go to Devices, Z-Wave, More Z-Wave options, and look at the value for '''Last Dongle Backup'''. This will show the date &amp;amp;amp; time that Vera last completed a successful backup of the dongle. Be sure that this is not empty of &amp;quot;''N/A''&amp;quot;. If it is, leave Vera alone for a couple hours, refresh the Vera setup page, and check again. &lt;br /&gt;
#Once you've confirmed that Vera has a backup of your dongle, go to ''Advanced'', ''Backup'' and choose '''Create backup'''.&amp;lt;br&amp;gt;Your browser will prompt you to save a file. Save it to your computer somewhere, such as on the Desktop. Be sure to wait until your browser has finished downloading.&amp;amp;nbsp; That backup file contains both Vera's database as well as the dongle's. &lt;br /&gt;
#Insert your new dongle.&amp;lt;br&amp;gt;Wait a minute to be sure that it's recognized. You should see all your Z-Wave devices have disappeared. &lt;br /&gt;
#Go to Advanced, Backup and in the restore section, click 'choose file' and locate the backup file.&amp;lt;br&amp;gt;Check the box 'Restore Dongle Firmware'. Then click Restore. &lt;br /&gt;
#Leave Vera alone for 15 minutes.&amp;lt;br&amp;gt;Vera will restore its database, which has all the detailed information on the device, and will also restore the dongle's data from the backup file, which takes several minutes. &lt;br /&gt;
#Confirm your new dongle is working and that you have a complete list of devices.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*'''Note ''' In case you forgot to backup your existing settings and you have the findvera.com service activated from Findvera.com tab, your Vera will backup your data once per day. So, go to https://findvera.com and click Settings and you will see there the backups. Select the last one and restore it to your Vera unit. Read here about the restore process: [[Advanced#Backup.2FRestore|Backup / Restore]].&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:How_To]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Release_Notes</id>
		<title>Release Notes</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Release_Notes"/>
				<updated>2012-07-12T21:08:09Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== UI5: 1.5.408 - July 4, 2012 Release  ==&lt;br /&gt;
&lt;br /&gt;
'''Note: Due to Assa Abloy changing the manufacturer ID, setting schedules for Yale locks is not possible in this version of firmware, but it will be fixed in a newer version. To be able to use this feature with Yale locks you should contact tech support.''' &lt;br /&gt;
&lt;br /&gt;
Resolved issues in firmware 1.5.408: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;MIOS_SRC &lt;br /&gt;
&lt;br /&gt;
#Fix OR defined condition &lt;br /&gt;
#Added tripped icons array for door sensor. &lt;br /&gt;
#Revert 5902 to get scene/button events working again.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; MIOS_UI &lt;br /&gt;
&lt;br /&gt;
#Fixed Ergy settings issue. &lt;br /&gt;
#Added tripped icons for door sensor &lt;br /&gt;
#Added alert when email is changed. &lt;br /&gt;
#Added unlock option for multiple alerts selected.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.401 - June 18, 2012 -&amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;private beta&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues in firmware 1.5.401: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;LINUX_SCRIPTS from rev&amp;amp;nbsp;: 5718 to rev&amp;amp;nbsp;: 5987 &lt;br /&gt;
&lt;br /&gt;
1. Fix ts1 http call to dealocate port when disabling tech support &lt;br /&gt;
&lt;br /&gt;
2. Fix transition from Net&amp;amp;amp;Wifi manually configure with static IP to Automatically configure for Vera2/Vera3&amp;amp;amp;Lite &lt;br /&gt;
&lt;br /&gt;
3. Add required lighttpd-mo-proxy/cgi/auth to update_package script &lt;br /&gt;
&lt;br /&gt;
4. Improve UpdatePackage script to update the packages that depends on the update package also and make it install the package if this is not allready installed &lt;br /&gt;
&lt;br /&gt;
5. Add fortrezz mimo support &lt;br /&gt;
&lt;br /&gt;
6. Add support for Vitrium switches &lt;br /&gt;
&lt;br /&gt;
7. Add scene assistance for GE remotes &lt;br /&gt;
&lt;br /&gt;
8. Add support for the everspring es861 and hac01 &lt;br /&gt;
&lt;br /&gt;
9. Fixed Mantises [http://bugs.micasaverde.com/view.php?id=1980 1980] and [http://bugs.micasaverde.com/view.php?id=1981 1981]: 'Modify /usr/bin/cmh_PnP script to scan for image.jpg instead of IMAGE.JPG when looking for D-Link cameras' &lt;br /&gt;
&lt;br /&gt;
10. Dont poll remotec &lt;br /&gt;
&lt;br /&gt;
11. Do not store tech ra files if backup is not intended for firmware upgrade &lt;br /&gt;
&lt;br /&gt;
12. Add support for potentiometer &lt;br /&gt;
&lt;br /&gt;
13. Split factory test in several steps so that if one fails it will start from the last completed &lt;br /&gt;
&lt;br /&gt;
14. Prevent veralite from giving dhcp reponses to win7 clients by not sending the dns server &lt;br /&gt;
&lt;br /&gt;
15. Create the VistaCam device with only the full screen button enabled. &lt;br /&gt;
&lt;br /&gt;
16. Fixed the snapshot URL for VistaCam. &lt;br /&gt;
&lt;br /&gt;
17. Replace ftpput with curl and set timeouts &lt;br /&gt;
&lt;br /&gt;
18. Add cms system and error message reporting functions &lt;br /&gt;
&lt;br /&gt;
19. Report firmware upgrade as system alerts &lt;br /&gt;
&lt;br /&gt;
20. If evt srvs are not defined in server.conf field try also to retireve them from nvram in report_message function &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
UI_LINUX_SCRIPTS from rev&amp;amp;nbsp;: 9977 to rev&amp;amp;nbsp;: 10621 &lt;br /&gt;
&lt;br /&gt;
1. Mention also WAN led to be solid &lt;br /&gt;
&lt;br /&gt;
2. Echo OK or ERROR if the operation is successfully done or not &lt;br /&gt;
&lt;br /&gt;
3. Changed the server we get the external IP from. &lt;br /&gt;
&lt;br /&gt;
4. Prevent setting empty spaces in network config; prevent setting the same IP on WAN&amp;amp;amp;LAN &lt;br /&gt;
&lt;br /&gt;
5. Prevent user from restoring old tech ra files &lt;br /&gt;
&lt;br /&gt;
6. Output error codes when where unable to connect to server/url &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
MIOS_SRC from rev&amp;amp;nbsp;: 5718 to rev&amp;amp;nbsp;: 5987 &lt;br /&gt;
&lt;br /&gt;
1. Add i/r devices without a usb uirt &lt;br /&gt;
&lt;br /&gt;
2. Fix compatibility with trane energy mode &lt;br /&gt;
&lt;br /&gt;
3. Added icon text flag for windows covering. &lt;br /&gt;
&lt;br /&gt;
4. Don't log all energy data at once. stagger by up to 45 minutes random amounts &lt;br /&gt;
&lt;br /&gt;
5. Add luup.sunset / luup.sunrise to the code &lt;br /&gt;
&lt;br /&gt;
6. Mantis [http://bugs.micasaverde.com/view.php?id=2018 2018], workaround for everspring st814 sending the sensor reports to the wrong endpoint &lt;br /&gt;
&lt;br /&gt;
7. Mantis [http://bugs.micasaverde.com/view.php?id=2113 2113] - show device description when archiving video &lt;br /&gt;
&lt;br /&gt;
8. Mantis: [http://bugs.micasaverde.com/view.php?id=1011 1011] - remove invalid characters from the a/v device service files &lt;br /&gt;
&lt;br /&gt;
9. Changed the device type from 'urn:schemas-micasaverde-org:device:Relay:1' to 'urn:schemas-micasaverde-com:device:Relay:1' to match the device type in the 'constants.h' and 'D_Relay1.json'. &lt;br /&gt;
&lt;br /&gt;
10. Propagated icon change to door sensor &lt;br /&gt;
&lt;br /&gt;
11. Fix [http://bugs.micasaverde.com/view.php?id=2119 2119] where Schlage lock isn't updating the lock/unlock after an operation. Do a poll 10 seconds after the lock moves &lt;br /&gt;
&lt;br /&gt;
12. Fix so alerts go to backup cms server every other attempt &lt;br /&gt;
&lt;br /&gt;
13. Added default value for the 'Armed' variable. &lt;br /&gt;
&lt;br /&gt;
14. Fixed Ergy menu. &lt;br /&gt;
&lt;br /&gt;
15. Added &amp;amp;lt;friendlyName&amp;amp;gt; to the camera. &lt;br /&gt;
&lt;br /&gt;
16. fix issue with not syncing device list to backup cms &lt;br /&gt;
&lt;br /&gt;
17. Added Json file for the ComboDevice in order to add the 'Notifications' tab. &lt;br /&gt;
&lt;br /&gt;
18. Fixed Mantis [http://bugs.micasaverde.com/view.php?id=741 #741]: remove json from D_ xml files with UI3 (removed 'sceneList' and 'eventList' from D_ files) &lt;br /&gt;
&lt;br /&gt;
19. Fix rcs energy mode &lt;br /&gt;
&lt;br /&gt;
20. Fix crash when a non-numeric pin is programmed with a future start date &lt;br /&gt;
&lt;br /&gt;
21. Add support for setting zwave configuration variables for multi-channel endpoints &lt;br /&gt;
&lt;br /&gt;
22. Fix crash with remotec i/r blaster config &lt;br /&gt;
&lt;br /&gt;
23. Add ability to mark zwave nodes as hidden in the zwave products xml file &lt;br /&gt;
&lt;br /&gt;
24. Display name of manufacturer on newly included devices &lt;br /&gt;
&lt;br /&gt;
25. Fixed Mantis [http://bugs.micasaverde.com/view.php?id=1493 #1493]: Event for door locks door open/closed &lt;br /&gt;
&lt;br /&gt;
26. fix rooms reset when adding devices on batteries &lt;br /&gt;
&lt;br /&gt;
27. Allow FF to get through so it works for Evolve window control &lt;br /&gt;
&lt;br /&gt;
28. Fix messed up sections/rooms after adding device on batteries &lt;br /&gt;
&lt;br /&gt;
29. Dont flood the SQ Puck with http requests for pnp &lt;br /&gt;
&lt;br /&gt;
30. Get the reset working properly on Vera Lite &lt;br /&gt;
&lt;br /&gt;
31. Bug fix: when sending commands to battery operated devices, the ui state variables weren't getting updated after the wakeup occurred &lt;br /&gt;
&lt;br /&gt;
32. Don't reconfigure a device if we're only changing pinning &lt;br /&gt;
&lt;br /&gt;
33. Add ability to log to alternate event server &lt;br /&gt;
&lt;br /&gt;
34. Extend finddevice to search by device number &lt;br /&gt;
&lt;br /&gt;
35. Send remotec commands to the endpoint, not the parent &lt;br /&gt;
&lt;br /&gt;
36. Allow users to turn off network device detection &lt;br /&gt;
&lt;br /&gt;
37. Mantis [http://bugs.micasaverde.com/view.php?id=2282 2282&amp;amp;nbsp;]: setsockopt(SO_KEEPALIVE) &lt;br /&gt;
&lt;br /&gt;
38. Mantis [http://bugs.micasaverde.com/view.php?id=562 562], only take a picture when the sensor is armed &lt;br /&gt;
&lt;br /&gt;
39. Add generic sensor &lt;br /&gt;
&lt;br /&gt;
40. Added 'Notification' tab and 'Battery level goes below' notification for the SceneController device. &lt;br /&gt;
&lt;br /&gt;
41. Fixed WindowCovering control and scene groups. &lt;br /&gt;
&lt;br /&gt;
42. Support for conditional controls - devices tags. &lt;br /&gt;
&lt;br /&gt;
43. Fix bug learning custom ir codes &lt;br /&gt;
&lt;br /&gt;
44. Fix changing ir codesets on the fly &lt;br /&gt;
&lt;br /&gt;
45. Added control codes to camera &lt;br /&gt;
&lt;br /&gt;
46. Fix intermatic energy mode &lt;br /&gt;
&lt;br /&gt;
47. Fix problem with duplicate overview_tabs in user_data &lt;br /&gt;
&lt;br /&gt;
48. Fix misreporting of scene id vs. button id &lt;br /&gt;
&lt;br /&gt;
49. Fix for kwikset locks not handling scheduling &lt;br /&gt;
&lt;br /&gt;
50. My contact info reworked &lt;br /&gt;
&lt;br /&gt;
51. Mantis [http://bugs.micasaverde.com/view.php?id=2219 #2219] &lt;br /&gt;
&lt;br /&gt;
52. Also fixed tabs order in scenes (first tab is &amp;quot;all devices&amp;quot;). &lt;br /&gt;
&lt;br /&gt;
53. Added Energy Saving Mode support for Honeywell thermostats. &lt;br /&gt;
&lt;br /&gt;
54. Added the preset buttons and the 'Archive snapshot' button to the camera device's UI. &lt;br /&gt;
&lt;br /&gt;
55. Updated the camera device to handle its children. &lt;br /&gt;
&lt;br /&gt;
56. Moved the GoToPreset action to S_PanTiltZoom1.xml. &lt;br /&gt;
&lt;br /&gt;
57. Added 'CameraMotionDetection' service to the new camera device. &lt;br /&gt;
&lt;br /&gt;
58. Update_plugin downloads files &lt;br /&gt;
&lt;br /&gt;
59. Don't configure a device if the name or room changes &lt;br /&gt;
&lt;br /&gt;
60. Don't autoupdate plugins &lt;br /&gt;
&lt;br /&gt;
61. Multi-channel node association &lt;br /&gt;
&lt;br /&gt;
62. Relabeled event &amp;quot;Exact Ambient temperature is reached&amp;quot; as &amp;quot;Ambient temperature goes above or below&amp;quot; in D_HVAC_ZoneThermostat1.json:. &lt;br /&gt;
&lt;br /&gt;
63. Increased the timeout for downloading files to 20 seconds. &lt;br /&gt;
&lt;br /&gt;
64. Add reverse up/down for window &lt;br /&gt;
&lt;br /&gt;
65. Create file when there's no internet connection &lt;br /&gt;
&lt;br /&gt;
66. Set the source IP to 0xFF's when calling actions from timers. Was a random value &lt;br /&gt;
&lt;br /&gt;
67. Mantis [http://bugs.micasaverde.com/view.php?id=1209 #1209] &lt;br /&gt;
&lt;br /&gt;
68. Fixed initialization of the IP to all 255. &lt;br /&gt;
&lt;br /&gt;
69. Fixed 404 problems from UI by restricting the icons which can be displayed. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
MIOS_UI from rev&amp;amp;nbsp;: 9977 to rev&amp;amp;nbsp;: 10621 &lt;br /&gt;
&lt;br /&gt;
1. Changed server for historical energy from evt to download server. &lt;br /&gt;
&lt;br /&gt;
2. Added program mode for IR devices &lt;br /&gt;
&lt;br /&gt;
3. Fixed date and login-register text overlapping &lt;br /&gt;
&lt;br /&gt;
4. Triggered save button when removing a trigger directly from scenes / triggers. &lt;br /&gt;
&lt;br /&gt;
5. Mantis [http://bugs.micasaverde.com/view.php?id=2151 #2151] &lt;br /&gt;
&lt;br /&gt;
6. Mantis [http://bugs.micasaverde.com/view.php?id=2233 #2233] &lt;br /&gt;
&lt;br /&gt;
7. Fixed door lock icons with clear status for locked/unlocked. &lt;br /&gt;
&lt;br /&gt;
8. Mantis [http://bugs.micasaverde.com/view.php?id=2253 #2253] &lt;br /&gt;
&lt;br /&gt;
9. Fixed ergy function. &lt;br /&gt;
&lt;br /&gt;
10. Removed hard-coding for icon text (this is defined in device json). &lt;br /&gt;
&lt;br /&gt;
11. Added anti-caching to lu_reload. &lt;br /&gt;
&lt;br /&gt;
12. Mantis [http://bugs.micasaverde.com/view.php?id=2265 #2265] &lt;br /&gt;
&lt;br /&gt;
13. Mantis [http://bugs.micasaverde.com/view.php?id=2146 #2146] &lt;br /&gt;
&lt;br /&gt;
14. Mantis [http://bugs.micasaverde.com/view.php?id=2145 #2145] &lt;br /&gt;
&lt;br /&gt;
15. Fixed current codeset (read state variable from lu_status instead of user_data) &lt;br /&gt;
&lt;br /&gt;
16. Mantis [http://bugs.micasaverde.com/view.php?id=2289 #2289] &lt;br /&gt;
&lt;br /&gt;
17. Mantis [http://bugs.micasaverde.com/view.php?id=2261 #2261] &lt;br /&gt;
&lt;br /&gt;
18. Fixed&amp;amp;nbsp;[http://bugs.micasaverde.com/view.php?id=2267 2267] &lt;br /&gt;
&lt;br /&gt;
19. Fixed&amp;amp;nbsp;[http://bugs.micasaverde.com/view.php?id=2091 2091] &lt;br /&gt;
&lt;br /&gt;
20. Temporary fix for the DST leap year issue. &lt;br /&gt;
&lt;br /&gt;
21. Fixed show_busy for remote access. &lt;br /&gt;
&lt;br /&gt;
22. Added rating / option to close ticket. &lt;br /&gt;
&lt;br /&gt;
23. fixed&amp;amp;nbsp;[http://bugs.micasaverde.com/view.php?id=930 930] &lt;br /&gt;
&lt;br /&gt;
24. Mantis [http://bugs.micasaverde.com/view.php?id=2094 #2094] &lt;br /&gt;
&lt;br /&gt;
25. Mantis [http://bugs.micasaverde.com/view.php?id=2095 #2095] &lt;br /&gt;
&lt;br /&gt;
26. Mantis [http://bugs.micasaverde.com/view.php?id=2270 #2270] &lt;br /&gt;
&lt;br /&gt;
27. Mantis [http://bugs.micasaverde.com/view.php?id=2029 #2029] &lt;br /&gt;
&lt;br /&gt;
28. Mantis [http://bugs.micasaverde.com/view.php?id=2258 #2258] &lt;br /&gt;
&lt;br /&gt;
29. Mantis [http://bugs.micasaverde.com/view.php?id=2126 #2126] &lt;br /&gt;
&lt;br /&gt;
30. Mantis [http://bugs.micasaverde.com/view.php?id=2293 #2293] &lt;br /&gt;
&lt;br /&gt;
31.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed edit trigger to change comparison &lt;br /&gt;
&lt;br /&gt;
32.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed Mantis [http://bugs.micasaverde.com/view.php?id=1945 #1945]: Bad error message text display &lt;br /&gt;
&lt;br /&gt;
33.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2291 #2291] &lt;br /&gt;
&lt;br /&gt;
34.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2198 #2198] &lt;br /&gt;
&lt;br /&gt;
35.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2294 #2294] &lt;br /&gt;
&lt;br /&gt;
36.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2181 #2181] &lt;br /&gt;
&lt;br /&gt;
37.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2234 #2234] &lt;br /&gt;
&lt;br /&gt;
38.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed cp server for logout redirect. &lt;br /&gt;
&lt;br /&gt;
39.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed the snapshot URL for the Foscam camera. &lt;br /&gt;
&lt;br /&gt;
40.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added the missing currencies, yuan and pound, to the list. &lt;br /&gt;
&lt;br /&gt;
41.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Removed 'Fire warning event when battery level goes below&amp;amp;nbsp;%'. &lt;br /&gt;
&lt;br /&gt;
42.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed portal timestamp initialization. &lt;br /&gt;
&lt;br /&gt;
43.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed cms alerts url. &lt;br /&gt;
&lt;br /&gt;
44.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed Thursday checkbox not checkable when creating a 'Day the week based' schedule. &lt;br /&gt;
&lt;br /&gt;
45.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Authentification changed to keep user logged. &lt;br /&gt;
&lt;br /&gt;
46.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed pulldown for events when devices are in room. &lt;br /&gt;
&lt;br /&gt;
47.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed icons for devices with no record in lu_status. &lt;br /&gt;
&lt;br /&gt;
48.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2286 2286] &lt;br /&gt;
&lt;br /&gt;
49.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Create the cameras with the correct name. &lt;br /&gt;
&lt;br /&gt;
50.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed heater temperature display. &lt;br /&gt;
&lt;br /&gt;
51.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Updated the camera motion detection service ID. &lt;br /&gt;
&lt;br /&gt;
52.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=562 #562] &lt;br /&gt;
&lt;br /&gt;
53.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2124 #2124] (display auto-upgrade status). &lt;br /&gt;
&lt;br /&gt;
54.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed devices sort issue which made icons to be messed up. &lt;br /&gt;
&lt;br /&gt;
55.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Changed request to sta server to use proxy.sh redundancy. &lt;br /&gt;
&lt;br /&gt;
56.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2368 #2368] &lt;br /&gt;
&lt;br /&gt;
57.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed js buttons for dashboard. &lt;br /&gt;
&lt;br /&gt;
58.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Corrected net_pnp in setup/Net &amp;amp;amp; Wifi. &lt;br /&gt;
&lt;br /&gt;
59.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added support for conditional controls. &lt;br /&gt;
&lt;br /&gt;
60.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added disabled controls images &lt;br /&gt;
&lt;br /&gt;
61.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Propagated disabled stuff changes &lt;br /&gt;
&lt;br /&gt;
62.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2124 #2124] - added local autoupdate for plugins. &lt;br /&gt;
&lt;br /&gt;
63.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Updated format for saved plugin settings. &lt;br /&gt;
&lt;br /&gt;
64.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2351 #2351] - added support to delete/lock/read multiple alerts. &lt;br /&gt;
&lt;br /&gt;
65.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=52395 #2395] &lt;br /&gt;
&lt;br /&gt;
66.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2396 #2396] &lt;br /&gt;
&lt;br /&gt;
67.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2397 #2397] &lt;br /&gt;
&lt;br /&gt;
68.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2398 #2398] &lt;br /&gt;
&lt;br /&gt;
69.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Changed text from 'Restore dongle firmware' to 'Restore Z-Wave network'. &lt;br /&gt;
&lt;br /&gt;
70.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added support for sending validation email upon registration. &lt;br /&gt;
&lt;br /&gt;
71.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Reworked my contact info (split in 4 separate tabs) &lt;br /&gt;
&lt;br /&gt;
72.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2355 #2355] &lt;br /&gt;
&lt;br /&gt;
73.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=1657 #1657] &lt;br /&gt;
&lt;br /&gt;
74.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2237 #2237]&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
75.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2309 #2309]&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
76.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2255 #2255] &lt;br /&gt;
&lt;br /&gt;
77.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed tech support large text issue. &lt;br /&gt;
&lt;br /&gt;
78.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;My contact info fixes. &lt;br /&gt;
&lt;br /&gt;
79.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added trim for proxy.sh error codes. &lt;br /&gt;
&lt;br /&gt;
80.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Reworked legend for alerts. &lt;br /&gt;
&lt;br /&gt;
81.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed phone provider warning. &lt;br /&gt;
&lt;br /&gt;
82.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed update name for user when contain spaces. &lt;br /&gt;
&lt;br /&gt;
83.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed scenes management for buttons without parameters. &lt;br /&gt;
&lt;br /&gt;
84.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Disabled auto-update for plugins when it's disabled from server. &lt;br /&gt;
&lt;br /&gt;
85.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added validation alert when phone number is changed. &lt;br /&gt;
&lt;br /&gt;
86.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed icons for alert types 7 to 10 &lt;br /&gt;
&lt;br /&gt;
87.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Removed register options from nonnatech restricted build. &lt;br /&gt;
&lt;br /&gt;
88.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Set wizard to use camera device_type/device file instead of predefined variables.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
89.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Added DEVICETYPE_CAMERA2, and added device type for the cameras.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
90.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Ergy plugin install issue. &lt;br /&gt;
&lt;br /&gt;
91.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2404 #2404] &lt;br /&gt;
&lt;br /&gt;
92.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2391 #2391] &lt;br /&gt;
&lt;br /&gt;
93.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2294 #2294] &lt;br /&gt;
&lt;br /&gt;
94.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2212 #2212] &lt;br /&gt;
&lt;br /&gt;
95.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2353 #2353] &lt;br /&gt;
&lt;br /&gt;
96.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2370 #2370] &lt;br /&gt;
&lt;br /&gt;
97.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2403 #2403] &lt;br /&gt;
&lt;br /&gt;
98.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Mantis [http://bugs.micasaverde.com/view.php?id=2034 #2034] &lt;br /&gt;
&lt;br /&gt;
99.&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space: pre;&amp;quot;&amp;gt;	&amp;lt;/span&amp;gt;Fixed overview icons. &lt;br /&gt;
&lt;br /&gt;
100. Mantis [http://bugs.micasaverde.com/view.php?id=2371 #2371] &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.346 March 19, 2012 - release  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues: &lt;br /&gt;
&lt;br /&gt;
Fixed critical issue regarding ERGY Settings. &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.344 (Vera3 &amp;amp;amp; VeraLite) &amp;amp;amp; 1.5.345 (Vera2) - March 16, 2012  ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 13px; line-height: 19px;&amp;quot;&amp;gt;Resolved issues in firmware 1.5.343:&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;line-height: 19px;&amp;quot;&amp;gt;Fixed the offline access issue when a user could not send a tech support request, upgrade the firmware or control the network settings when the UI is in offline mode.&amp;lt;/span&amp;gt;&amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.343 - March 13, 2012 - &amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;private beta&amp;lt;/span&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; Resolved issues in firmware 1.5.343: &lt;br /&gt;
&lt;br /&gt;
LINUX_SCRIPTS&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add window covering per christian 27-feb email&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Report system errors using external script directly to the alert server&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Do not turn off the zwave led when starting NetworkMonitor on VeraLite, since NM is no longer controlling the zwave led on it.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add support for remotec&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
UI_LINUX_SCRIPTS&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fix script to escape &amp;quot; received in POST parameters&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Try to prevent bogus message when /tmp drive is full&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Modify upgrade script to stop LuaUPnP before downlaoding the firmware image and to don't delete logs from usb stick&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Replace inside cgi script call with /usr/bin/ script&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Increase backup upload limit to 4Mb&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
UPGRADE_SCRIPT&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Upgrade base image to ver 81 which has the patch for df when /tmp is full&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
MIOS_SRC&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add delay for Merten per Carsten&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fix a crash on startup when syncing an alert that has been deleted&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added 'LastTrip' in 'S_SecuritySensor1.xml' to be available in lu_sdata. (Mantis [http://bugs.micasaverde.com/view.php?id=2188 2188])&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added 'BatteryLevel' in 'S_HaDevice1.xml' to be available in lu_sdata. (Mantis [http://bugs.micasaverde.com/view.php?id=2188 2188])&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fix that mac address wasn't always capitalized&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add support for remotec ir blaster&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Moved all mcv energy stuff in one tab.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add i/r devices without a usb uirt&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
MIOS_UI&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Set date from backend.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added preview info to thermostat scheduler.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fix for alerts to set timestamp according to gmt_offset properly.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Moved MCV energy stuff in one tab. Fixed Energy menu.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Removed configure buttons for non-Zwave devices.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Re-added local authentication. Mantis [http://bugs.micasaverde.com/view.php?id=2243 2243]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Allowed tech support form even with unit disconnected.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed [http://bugs.micasaverde.com/view.php?id=2246 2246]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added loginAlert. Added extra info to login alert.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added support for IR devices. Added toggle codesets for IR remote control. Fix some IR related bugs.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added alert for login/re-authenticated.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added Capitalized remote tabs name&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed delete camera for network cameras.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.322 - March 02, 2012  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues in 1.5.322 version: &lt;br /&gt;
&lt;br /&gt;
LINUX_SCRIPTS &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;check if the user disabled the wifi&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;return wifi state&amp;amp;nbsp;: enabled/disabled&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;remove debug from nfd_Restart.sh call&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space:pre&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;hide wifi errors for VeraLite which doesn't have wifi&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space:pre&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;do not call Report_AP anymore from backup-restore-nc since we don't have the sta servers&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space:pre&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;wait max 20 seconds after network restarts to get an ip&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space:pre&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;fix report upgrade done url composion&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
UI_LINUX_SCRIPTS &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;commit uci wifi changes&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed text variable for upgrade success.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Moved js into external file.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
MIOS_SRC &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2194 2194] - [Overview - click on Events opens the My alerts tab but with content from My contact info] &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;add category/subcategory to D_ files &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Moved overview to second position.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;test add i/r device&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;ir testing&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;fix ir codesets on upgrade&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;fix configuration with getting correct setpoint type&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;ct30 fixup&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;add support for negative temperatures&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;============================================================================ &lt;br /&gt;
&lt;br /&gt;
MIOS_UI&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2214 2214]&amp;amp;nbsp;- [Overview - Incorrect date (31.12.1969) for the triggers last run]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2208 2208]&amp;amp;nbsp;- [Overview - Undefined for Dimmable status when device is not responding]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2212 2212] - [Overview - No feedback after sending toggle command&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2218 2218]&amp;amp;nbsp;- [Overview - Locks are not displayed in the Security container&amp;amp;nbsp;]&amp;lt;span class=&amp;quot;Apple-tab-span&amp;quot; style=&amp;quot;white-space:pre&amp;quot;&amp;gt;		&amp;lt;/span&amp;gt;&amp;amp;nbsp; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2211 2211]&amp;amp;nbsp;- [Overview - No feedback for running scenes&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2182 2182]&amp;amp;nbsp;- [Pinned devices has the Overview information&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed sensors text status.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2180 2180]&amp;amp;nbsp;-&amp;amp;nbsp;[Overview - Customized settings are not saved after save&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2179 2179]&amp;amp;nbsp;- [Overview - Alerts should be user/password protected&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Mantis #[http://bugs.micasaverde.com/view.php?id=2213 2213]&amp;amp;nbsp;- [Overview - Missing header from Triggers&amp;amp;nbsp;]&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed defaults for overview&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Reverted order to have dashboard first.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Moved tech support json into distinct json file, for&amp;amp;nbsp;makerelease_prepfiles &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Safari fix for opening scenes. &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added compatibility mode for IE9 to prevent switching to IE7&amp;amp;nbsp;view.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Changed all logging function to log_message &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed polling loop for Chrome&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;remotes stuff&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;UI offline mode.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed add/remove device event for overview.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;finished IR remotes&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Reworked camera thumbnails for overview.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Anti-cache stuff.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed overview refresh for schedules/triggers.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Changed LU down interval to go offline to 10 min.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Add IR device wizard added get_lang_string&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Fixed max email count.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;add ir device wizard, new polling codes added&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added &amp;quot;is beta&amp;quot; note to ir stuff.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added A/V is work in progress note.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;Added js for upgrade script.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5: 1.5.305 - February 17, 2012 - &amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;private beta&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues in 1.5.305: &lt;br /&gt;
&lt;br /&gt;
LINUX_SCRIPTS&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp;Listen for dhcp requests comming from WAN in fresh install, SwitchMode and GatewayMode with no firewall. &lt;br /&gt;
#&amp;amp;nbsp;Add Horstman sensor &lt;br /&gt;
#&amp;amp;nbsp;add support for Horstman thermostats and LS control sensors &lt;br /&gt;
#&amp;amp;nbsp;wait max 30 seconds to connect to server and 60 seconds to get the response from it &lt;br /&gt;
#&amp;amp;nbsp;-fix restart through init for LuaUPnP and NetworkMonitor &lt;br /&gt;
#&amp;amp;nbsp;-make logs more clear for start/stop LuaUPnP and NM &lt;br /&gt;
#&amp;amp;nbsp;script for fixing HomeID if current one seems to be invalid. &lt;br /&gt;
#&amp;amp;nbsp;for UI4 before starting LuaUPnP check if the ZWave HomeId is valid &lt;br /&gt;
#&amp;amp;nbsp;add comfort window covering &lt;br /&gt;
#&amp;amp;nbsp;Run fixHomeId.sh for ui4 and ui5 &lt;br /&gt;
#&amp;amp;nbsp;improve the script to handle up to at least 30 concurent dhcp requests&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ============================================================================&amp;lt;br&amp;gt;UI_LINUX_SCRIPTS&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp;don't listen for dhcp requests on WAN only if firewall is ON &lt;br /&gt;
#&amp;amp;nbsp;fix allow receiving dhcp requests info on wan side &lt;br /&gt;
#&amp;amp;nbsp;Changes per new tech support wizard &lt;br /&gt;
#&amp;amp;nbsp;add restart option of RA tunnels &lt;br /&gt;
#&amp;amp;nbsp;add suport for en/dis-able wifi when in automatically configure &lt;br /&gt;
#&amp;amp;nbsp;write wifi state in /etc/cmh/fresh_install file&lt;br /&gt;
&lt;br /&gt;
============================================================================&amp;lt;br&amp;gt;UPGRADE_SCRIPT&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp;request OpenWRT base image ver 80 which includes dnsmasq patch to not skip duplicate ips since this is done in LuaUPnP&lt;br /&gt;
&lt;br /&gt;
============================================================================&amp;lt;br&amp;gt;MIOS_SRC&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp;poll battery operated nodes on wakeup so sensors get light/temperature/etc. values &lt;br /&gt;
#&amp;amp;nbsp;fix cycle/periodic on for thermostat fan mode &lt;br /&gt;
#&amp;amp;nbsp;intermediate tweak to energy omde &lt;br /&gt;
#&amp;amp;nbsp;Updated menus &lt;br /&gt;
#&amp;amp;nbsp;Added weekly scheduler. &lt;br /&gt;
#&amp;amp;nbsp;fix trailing character in checkpaidtunnels cmdline &lt;br /&gt;
#&amp;amp;nbsp;fix the hsm100 polling by removing the delay in between commands so it doesn't go to sleep again &lt;br /&gt;
#&amp;amp;nbsp;fix problem where devices weren't being reconfigured after changing variables &lt;br /&gt;
#&amp;amp;nbsp;Add LS Controls and Wintop as manufacturers &lt;br /&gt;
#&amp;amp;nbsp;fix the up/down/stop on window covering &lt;br /&gt;
#&amp;amp;nbsp;patrice's window covering &lt;br /&gt;
#&amp;amp;nbsp;add support for window coverings using switch multi level version 3 &lt;br /&gt;
#&amp;amp;nbsp;add comfort window covering &lt;br /&gt;
#&amp;amp;nbsp;add next_run to timers &lt;br /&gt;
#&amp;amp;nbsp;change next_run and last_run to timestamps so they can be localized &lt;br /&gt;
#&amp;amp;nbsp;Added Overview tab. &lt;br /&gt;
#&amp;amp;nbsp;window coverings using wrong devicetype &lt;br /&gt;
#&amp;amp;nbsp;fix upgrade window coverings &lt;br /&gt;
#&amp;amp;nbsp;add device category for alarm panels &lt;br /&gt;
#&amp;amp;nbsp;get energy savings and normal mode working on the thermostats &lt;br /&gt;
#&amp;amp;nbsp;mantis 2088 &lt;br /&gt;
#&amp;amp;nbsp;allow for manual override of polling battery devices &lt;br /&gt;
#&amp;amp;nbsp;mantis 2051 lights on when viewing cameras &lt;br /&gt;
#&amp;amp;nbsp;fix a crash when a usb uirt i/r blaster isn't present &lt;br /&gt;
#&amp;amp;nbsp;Removed old notifications from menu. &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2194&lt;br /&gt;
&lt;br /&gt;
============================================================================&amp;lt;br&amp;gt;MIOS_UI&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
#&amp;amp;nbsp;Password restriction to alphanumeric strings. &lt;br /&gt;
#&amp;amp;nbsp;Alert tooltip fix. &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2129 &lt;br /&gt;
#&amp;amp;nbsp;Tech support wizard. &lt;br /&gt;
#&amp;amp;nbsp;Tickets history with update &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2141 &lt;br /&gt;
#&amp;amp;nbsp;Tweaked tech info json to match RT requirements. &lt;br /&gt;
#&amp;amp;nbsp;+ Added workaround for displaying temperature on the dashboard &lt;br /&gt;
#&amp;amp;nbsp;for Horstmann HRT4-ZW heaters. &lt;br /&gt;
#&amp;amp;nbsp;Added validation mail/sms. &lt;br /&gt;
#&amp;amp;nbsp;Switched support schedule to json format. &lt;br /&gt;
#&amp;amp;nbsp;Tweaked update ticket &lt;br /&gt;
#&amp;amp;nbsp;Added thermostat scheduler. &lt;br /&gt;
#&amp;amp;nbsp;Fixed the selector for weekly scheduler &lt;br /&gt;
#&amp;amp;nbsp;Corrected increase/decrease adjustements. &lt;br /&gt;
#&amp;amp;nbsp;Propagated the changes from upnp. &lt;br /&gt;
#&amp;amp;nbsp;Tech support fixes. &lt;br /&gt;
#&amp;amp;nbsp;Added code validation &lt;br /&gt;
#&amp;amp;nbsp;Fixed post params for update_ticket &lt;br /&gt;
#&amp;amp;nbsp;Added lang_debug mode. &lt;br /&gt;
#&amp;amp;nbsp;Added default content to token value. &lt;br /&gt;
#&amp;amp;nbsp;Fixed AlertType for validate email/sms &lt;br /&gt;
#&amp;amp;nbsp;Added overview tab. &lt;br /&gt;
#&amp;amp;nbsp;Removed dummy file. &lt;br /&gt;
#&amp;amp;nbsp;Tech support tweaks &lt;br /&gt;
#&amp;amp;nbsp;Overview tweaks. &lt;br /&gt;
#&amp;amp;nbsp;Added &amp;amp;amp;lights=1 to request_image data request to force lights on. &lt;br /&gt;
#&amp;amp;nbsp;Added call to data_request?id=camlight &lt;br /&gt;
#&amp;amp;nbsp;Added alarm icons. &lt;br /&gt;
#&amp;amp;nbsp;Changed email notifications to Alert server format. &lt;br /&gt;
#&amp;amp;nbsp;Added more spacing. &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2194 &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2184 &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2179 &lt;br /&gt;
#&amp;amp;nbsp;Mantis #2190 &lt;br /&gt;
#&amp;amp;nbsp;Overview thermostat tweaks. &lt;br /&gt;
#&amp;amp;nbsp;Moved thermostat text status to language stuff.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5&amp;amp;nbsp;: 1.5.286 - January 27, 2012 -&amp;amp;nbsp;&amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;private beta&amp;lt;/span&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues in 1.5.286:&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;&amp;amp;nbsp;LINUX_SCRIPTS from 1.5.276 - 1.5.286 &lt;br /&gt;
&lt;br /&gt;
1. Prevent empty values also by restoring the files from ro mtd&amp;lt;br&amp;gt; &amp;amp;nbsp;============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp;UI_LINUX_SCRIPTS from&amp;amp;nbsp;1.5.276 - 1.5.286&amp;amp;nbsp;&amp;lt;br&amp;gt;1. Prevent empty values also by restoring the files from ro mtd for&amp;amp;nbsp;firmware version and platform&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; UPGRADE_SCRIPT from&amp;amp;nbsp;1.5.276 - 1.5.286 &lt;br /&gt;
&lt;br /&gt;
1. Request OpenWRT upgrade to version 78 which has latest nand,jffs2,overlayfs and mtd-tools&amp;lt;br&amp;gt;============================================================================&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; MIOS_SRC from&amp;amp;nbsp;1.5.276 - 1.5.286&amp;amp;nbsp;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
1. &amp;amp;nbsp;Fixed _UNITS_NAME_PLURAL_ token. &lt;br /&gt;
&lt;br /&gt;
2. &amp;amp;nbsp;Port id's were too small&amp;lt;br&amp;gt;3. &amp;amp;nbsp;Fix a crash/reload loop that occurred by USB serial devices&amp;lt;br&amp;gt;4. &amp;amp;nbsp;Having ID's longer than a pre-defined buffer&amp;lt;br&amp;gt;5. &amp;amp;nbsp;Fix problem JOD reported where generic ip cameras were getting deleted on upgrade&amp;lt;br&amp;gt;6. &amp;amp;nbsp;Fix return to previous settings&amp;lt;br&amp;gt;7. Fix controlling an IR device in a scene&amp;lt;br&amp;gt;8. Poll battery operated nodes on wakeup so sensors get light/temperature/etc. values &lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;============================================================================&amp;amp;nbsp;&amp;lt;br&amp;gt;&amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; &amp;amp;nbsp; MIOS_UI from&amp;amp;nbsp;1.5.276 - 1.5.286&amp;amp;nbsp;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
1. Fixed top menu on lower resolution.&amp;lt;br&amp;gt;2. Added server offset into alerts filters.&amp;lt;br&amp;gt;3. More friendly messages for adding user.&amp;lt;br&amp;gt;4. Fixed offline alerts server.&amp;lt;br&amp;gt;5. Moved sta server retrieval in a separate function.&amp;lt;br&amp;gt;6. Fixed timestamps for alerts.&amp;lt;br&amp;gt;7. Added message when session is disconnected.&amp;lt;br&amp;gt;8. Mantis [http://bugs.micasaverde.com/view.php?id=2067 #2067]&amp;amp;nbsp;[Remove duplicated Source trigger icon from Legend from My alerts page] &lt;br /&gt;
&lt;br /&gt;
9. Password restriction to alphanumeric strings. &lt;br /&gt;
&lt;br /&gt;
== UI5&amp;amp;nbsp;: 1.5.276 - January 20, 2012 - &amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;private beta&amp;lt;/span&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Resolved issues in 1.5.276: &lt;br /&gt;
&lt;br /&gt;
#Remove 2 variables for the yale &lt;br /&gt;
#do not consider time successfully synced if year is not between 2012 and 2020 &lt;br /&gt;
#use a function (get_server) to get a certain server value from&amp;amp;nbsp;servers.conf file &lt;br /&gt;
#force a reboot in max 15 minutes if the previous scripts don't do it faster &lt;br /&gt;
#start force reboot in background to be sure we don't get stuck by reboot command and wait 1 minute before forcing a reboot at firmware upgrade. &lt;br /&gt;
#read the wan/lan ifname from /var/state first, in case the type&amp;amp;nbsp;or proto is not standard the interfaces name will be different than the one defined in the /etc/config/network &lt;br /&gt;
#for units with rtc&amp;amp;nbsp;: update RTC on success sync time and update system time at boot from it &lt;br /&gt;
#fix firewall/dhcp in client mode for Vera3&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp;allow only one network restart at a time &lt;br /&gt;
#store last field received in FORM_timezone in file /etc/TZ instead of 3rd &lt;br /&gt;
#prevent php 5.3.x to lighttpd bug by stripping dirs from&amp;amp;nbsp;FORM_file_name variable &lt;br /&gt;
#read language and language_id directly from files&amp;lt;br&amp;gt; &lt;br /&gt;
#use main server if servers.conf file is messed up&amp;lt;br&amp;gt; &lt;br /&gt;
#log each server which is not defined &lt;br /&gt;
#req OpenWRT ver 75 for Vera3 and Lite &lt;br /&gt;
#add kernel patches to improve/fix issues related to nand driver,jffs2 and overlayfs fs &lt;br /&gt;
#fix time in NetworkMonitor &lt;br /&gt;
#fix camera relay &lt;br /&gt;
#fix record scene &lt;br /&gt;
#&amp;amp;nbsp;fix multiple room &lt;br /&gt;
#add custom require function &lt;br /&gt;
#fixes to danfoss living connect &lt;br /&gt;
#mantis [http://bugs.micasaverde.com/view.php?id=1978 1978] [private] [Remnant of excluded device shown in scene], [http://bugs.micasaverde.com/view.php?id=1957 1957] [Triggers for deleted devices are not deleted] &lt;br /&gt;
#delete wrong plugin 5 and 188 &lt;br /&gt;
#strip independently bin and lib &lt;br /&gt;
#removed duplicate dir &lt;br /&gt;
#Fixed bug [http://bugs.micasaverde.com/view.php?id=1967 1967] [private] [Selected devices not shown when editing scene] &lt;br /&gt;
#Menu changes to have separate controls for help buttons. &lt;br /&gt;
#add support for SWITCH_MULTILEVEL_STOP_LEVEL_CHANGE &lt;br /&gt;
#mantis [http://bugs.micasaverde.com/view.php?id=2047 2047] [private] [Missing plugin file causes LuaUPnP to enter a restart loop] and [http://bugs.micasaverde.com/view.php?id=2079 2079] [private] [Installation fails for plugins with uncompressed files] &lt;br /&gt;
#fix creation of IR devices in UI5 &lt;br /&gt;
#mantis [http://bugs.micasaverde.com/view.php?id=2054 2054] [Inform user when the serial port assigned to a device no longer exists] &lt;br /&gt;
#Swapped two strings for polling settings description &lt;br /&gt;
#Added alerts legend &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2007 #2007] [Add an anti caching token to list_alerts] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2011 #2011] [private] [Add info text in the Serial Port configuration part to reload Luup] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2008 #2008] [useless message when failing to add a user] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2024 #2024] [Missing leading 0 from backup names] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2012 #2012] [clicking the 'clock' should be a shortcut to the setup, location] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1970 #1970] [Firebug error at click on Revert changes button] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1686 #1686] [private] [Unable to check/uncheck in IE checkboxes from some tabs] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1934 #1934] [Legend for My Alerts should be added] &lt;br /&gt;
#Fixed [http://bugs.micasaverde.com/view.php?id=2021 #2021] [fix lingering dongle text in UI5] &lt;br /&gt;
#Moved help urls outside tabs. &lt;br /&gt;
#added help button &lt;br /&gt;
#Archive fix for reseting page on filters change. &lt;br /&gt;
#Added note about auto-updating timezone.&amp;lt;br&amp;gt; &lt;br /&gt;
#Hided manually timezone set when there is internet. &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2045 #2045] [Message please wait is not closed when ERGY plugin finish installing] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2033 #2033] [Remove some text from Energy/Hystoric usage] &lt;br /&gt;
#&amp;amp;nbsp;Added offline mode for UI.&amp;lt;br&amp;gt; &lt;br /&gt;
#&amp;amp;nbsp;Added cameras reported as accessories. &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2025 #2025] [Gateway list is incorrectly opened] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2005 #2005] [private] [Login cookie on Internet Explorer is not deleted after logging out] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1953 #1953] [When uninstalling a plugin, do not display &amp;quot;My apps&amp;quot; page and &amp;quot;Plugin uninstalled&amp;quot; message if user left the page] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1889 #1889] [Multi-language issues] &lt;br /&gt;
#Added Alerts tooltip &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2075 #2075] [Heal network with /without stress test is not working] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2015 #2015] [SMS and Email Notification Test Button] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2004 #2004] [Unable to assign a device to a room in IE9] &lt;br /&gt;
#Fixed help urls. &lt;br /&gt;
#Fixed accessories to allow update only for owned devices. &lt;br /&gt;
#Mobile phones/av gear formatting. &lt;br /&gt;
#Fixed missing location box &lt;br /&gt;
#Added validation for set date fields&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== UI5&amp;amp;nbsp;: 1.5.255 (Vera2) &amp;amp;amp; 1.5.254 (Vera3) - December 23, 2011  ==&lt;br /&gt;
&lt;br /&gt;
New features in UI5: &lt;br /&gt;
&lt;br /&gt;
1. Devices are organized and displayed in separate tabs by category: lights, sensors, cameras, etc. &lt;br /&gt;
&lt;br /&gt;
2. You can pin the most often used devices and scenes on the Dashboard for quick access. The devices and scenes that are not pinned won't be displayed on the Dashboard. &lt;br /&gt;
&lt;br /&gt;
3. The Add Device Wizard is now included in UI. &lt;br /&gt;
&lt;br /&gt;
4. You can view and manage all the existing triggers (events) and schedules (timers) on Vera without opening any scene. &lt;br /&gt;
&lt;br /&gt;
5. Creating scenes is easier and more intuitive with the new scene creator wizard. &lt;br /&gt;
&lt;br /&gt;
6. You can now see the scene commands in the Advanced scene editor. &lt;br /&gt;
&lt;br /&gt;
7. The MiOS Marketplace (now called MiOS Apps) functionality is now included in UI. You can: &lt;br /&gt;
&lt;br /&gt;
*View app information &lt;br /&gt;
*Install apps &lt;br /&gt;
*View and Add reviews&lt;br /&gt;
&lt;br /&gt;
8. The MiOS control panel (CP) functionality is now included in UI, but only if the user is authenticated. You can: &lt;br /&gt;
&lt;br /&gt;
*Connect to one of your other Veras &lt;br /&gt;
*Add new or existing users to your Vera &lt;br /&gt;
*Remove users from your Vera &lt;br /&gt;
*Change your MiOS account password &lt;br /&gt;
*View alerts &lt;br /&gt;
*View available backups &lt;br /&gt;
*Change unit settings, like the Vera name and the number of SMSes and e-mails per day &lt;br /&gt;
*View camera archives&lt;br /&gt;
&lt;br /&gt;
9. Energy monitoring using the ERGY plugin by EchoLabs, which is included in UI. &lt;br /&gt;
&lt;br /&gt;
10. Real-time camera video streaming and video recording. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; This documents the changes since the first public beta release of UI4, 1.1.1047 &lt;br /&gt;
&lt;br /&gt;
== UI4&amp;amp;nbsp;: 1.1.1338 - July 29, 2011 - RC  ==&lt;br /&gt;
&lt;br /&gt;
1. Use the Z-Wave double send (without ACK then with ACK) for lights only, not other devices, since its purpose was to eliminate the popcorn effect and creates unnecessary traffic otherwise. &lt;br /&gt;
&lt;br /&gt;
2. Add special handling for devices made by Fibar for 2 way feedback &lt;br /&gt;
&lt;br /&gt;
3. Fix NetworkMonitor so it will always reset the time if it doesn't get set at boot &lt;br /&gt;
&lt;br /&gt;
4. Fix a bug in a script in the prior beta that made it incompatible with Vera 1 &lt;br /&gt;
&lt;br /&gt;
5. Add the pulse variable to the sdata request for energy meters &lt;br /&gt;
&lt;br /&gt;
6. Fix a problem where changes saved got lost because luaupnp got a reload and the watchdog timer kicked in before it had finished flushing the files to disk. &lt;br /&gt;
&lt;br /&gt;
7. Add support for Schedule Entry version 3 command class and locks by Assa Abloy &lt;br /&gt;
&lt;br /&gt;
8. Tweak to the timing of the squashfs mounting to improve reliability &lt;br /&gt;
&lt;br /&gt;
== 1.1.1323 - July 13, 2011 - beta  ==&lt;br /&gt;
&lt;br /&gt;
1. Fix a problem where a configure job could get stuck and not finish due to a race condition between multiple jobs &lt;br /&gt;
&lt;br /&gt;
2. Fix problem where zwave frame collission resulted in failed job &lt;br /&gt;
&lt;br /&gt;
3. Reduce incidence of EEPROM corruption in Z-Wave 4.52 where it mistakenly thinks there is a suc and gives &amp;quot;Failed to go into learn mode&amp;quot; errors when adding nodes. &lt;br /&gt;
&lt;br /&gt;
4. Automatically correct situation #3 if the user has not already added devices. &lt;br /&gt;
&lt;br /&gt;
5. Synchronize deleted devices with the central server &lt;br /&gt;
&lt;br /&gt;
6. Add subcategory to identify types of security sensors &lt;br /&gt;
&lt;br /&gt;
7. Add circulate fan mode support (not in the UI yet, but coming in UI5) &lt;br /&gt;
&lt;br /&gt;
== 1.1.1298 - June 21, 2011 - beta  ==&lt;br /&gt;
&lt;br /&gt;
The primary reason for this release is that there was a bug in 1.1.1245 that prevented Z-Wave 'reset network' from working, and some users got stuck with a &amp;quot;failled to start z-wave&amp;quot; error. &lt;br /&gt;
&lt;br /&gt;
1. Add default values for sensors as not-tripped so it appears correctly in the UI when the sensor hasn't been used yet. &lt;br /&gt;
&lt;br /&gt;
2. Add support for multi-channel association &lt;br /&gt;
&lt;br /&gt;
3. Add support for Danfoss thermostat &lt;br /&gt;
&lt;br /&gt;
4. Fix for X10 devices that have 2 digit numeric ID's &lt;br /&gt;
&lt;br /&gt;
5. Add support for Everspring motion sensors &lt;br /&gt;
&lt;br /&gt;
6. Add support for Aeon 4-in-1 sensors &lt;br /&gt;
&lt;br /&gt;
7. Minor enhancements to the wakeup procedure to support devices with short wakeup times &lt;br /&gt;
&lt;br /&gt;
8. Fix support for the gc-100 &lt;br /&gt;
&lt;br /&gt;
9. Add support for the PolyControl door lock &lt;br /&gt;
&lt;br /&gt;
10. Change the default PIN for locks to 8 characters instead of 4 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== 1.1.1245 - April 20, 2011 - release  ==&lt;br /&gt;
&lt;br /&gt;
Most notably this release includes a new version of the Z-Wave firmware in the Z-Wave chip, and this new version allows Vera to optimize the routes the Z-Wave mesh network uses. This should improve reliability. See [[MigrateTo452]] Also Vera will no longer scan for UPnP devices unless you choose 'Add Device' and at the bottom check the option to scan for UPnP devices. &lt;br /&gt;
&lt;br /&gt;
1. The energy plugin is now built into the engine. It will be removed on upgrade. Energy events are logged to your mios.com account automatically. &lt;br /&gt;
&lt;br /&gt;
2. There is an option with Vera2 (Currently not working with Vera1) on Advanced, Logs to enable logging to a USB stick. This frees up quite a bit of memory, so if you have a lot of devices or plugins and your Vera is running slow or crashing because it's running out of memory, this is a solution. Note that after you check the box it can take up to 30 minutes to format the USB drive, and bootup will take a couple minutes longer with the USB drive installed. It will continue to boot up fine without the USB drive connected, just don't remove it while Vera is running. '''IMPORTANT: Use a new USB drive that hasn't already been formatted. In particular, don't use a USB drive that is already formatted for Mac.''' &lt;br /&gt;
&lt;br /&gt;
3. There is a fix to prevent the main engine from starting before Vera has synced the date/time, which previously had caused sunset/sunrise timers to trigger unexpectedly. There is no battery-backed up clock in Vera. It needs to get the date/time from the internet at each boot. &lt;br /&gt;
&lt;br /&gt;
4. This fixes a bug causing high CPU load and reboot when certain UPnP devices are detected on the network, such as Sonos. &lt;br /&gt;
&lt;br /&gt;
5. The DSC plugin, and possibly others that use serial ports, did not work because the engine was trying to open the port twice. &lt;br /&gt;
&lt;br /&gt;
6. Add some extra info in the heal process, and report the health rating and heal date to our tech support server along with ZWave node info, so, when a customer calls in for support, we will know what types of devices he has and how healthy they are to make better recommendations about improving ZWave reliability. &lt;br /&gt;
&lt;br /&gt;
7. Some startup messages weren't displayed properly in the info panel. &lt;br /&gt;
&lt;br /&gt;
8. Bad UPnP devices on the network that constantly report themselves every 1 second with a new UUID would eventually consume all the memory causing a crash. Now the software filters these rogue devices. &lt;br /&gt;
&lt;br /&gt;
8. There's a new lu_sdata request that makes it much simpler to develop third party user interfaces to control the system. See: [[UI Simple]] &lt;br /&gt;
&lt;br /&gt;
9. Store a counter of all polls (PollOk) with the number that failed transmission (PollTxFail) or failed to reply (PollNoReply). All counters are reset whenever you do a heal network. The counters are visible as extra variables in the device's advanced tab. This is for troubleshooting ZWave problems. &lt;br /&gt;
&lt;br /&gt;
10. Add support for viewing live, streaming video. [[Remote Camera Streaming]] &lt;br /&gt;
&lt;br /&gt;
11. Fix that sometimes variables across multiple bridged MiOS systems weren't being synchronized all the time. &lt;br /&gt;
&lt;br /&gt;
12. Increase the timeouts for some internet operations so it works on super, super slow connections like satellite. &lt;br /&gt;
&lt;br /&gt;
13. Fix for thermostats always showing fan as 'On' when it's in auto. &lt;br /&gt;
&lt;br /&gt;
14. Add support for Fortrezz WMA-02, with new 'Leak alarm' event &lt;br /&gt;
&lt;br /&gt;
15. Add support for Alarm Command Class version 2 &lt;br /&gt;
&lt;br /&gt;
16. Fix a crash caused by wakeup interval set to the minimum value &lt;br /&gt;
&lt;br /&gt;
17. Fix problem with Insteon not starting when there are a lot of existing devices. &lt;br /&gt;
&lt;br /&gt;
18. Fix problem with a LuaUPnP process not cleanly exiting, causing the UPnP port to remain stuck for 2 minutes and slowing down reload. &lt;br /&gt;
&lt;br /&gt;
19. Implement a new Infrared learning, identifying, transmitting engine. &lt;br /&gt;
&lt;br /&gt;
20. Fix toggle state with Insteon. &lt;br /&gt;
&lt;br /&gt;
21. Add basic support for Zigbee lights with a SimpleHomeNet ZBPLM and Luup Plugin &lt;br /&gt;
&lt;br /&gt;
22. Fix crash when adding new A/V devices &lt;br /&gt;
&lt;br /&gt;
23. Reduce the delay between Z-Wave commands to solve startup problems on large networks &lt;br /&gt;
&lt;br /&gt;
24. Add support for Yale/Assa Abbloy locks &lt;br /&gt;
&lt;br /&gt;
25. Fix to handle Luup plugins staying locked to the right serial port when they're unplugged/reconnected. &lt;br /&gt;
&lt;br /&gt;
26. Prevent Insteon module from taking over a serial port &lt;br /&gt;
&lt;br /&gt;
27. Upgrade the ftdi_sio driver to support new infrared blaster &lt;br /&gt;
&lt;br /&gt;
28. Fix intermittent crash when receiving a wakeup command &lt;br /&gt;
&lt;br /&gt;
29. Add attribute set to the Luup API &lt;br /&gt;
&lt;br /&gt;
30. Add Sleep to the Luup API &lt;br /&gt;
&lt;br /&gt;
31. Reduce number of retries for download files/plugins &lt;br /&gt;
&lt;br /&gt;
32. Use separate worker threads for slow processes like downloading vs fast processes like Z-Wave response to speed up the response to time sensitive tasks. &lt;br /&gt;
&lt;br /&gt;
33. Don't execute timers if time jumps, caused by a new sync to the ntp server &lt;br /&gt;
&lt;br /&gt;
34. Increase wait time for Luup plugins from 45 seconds to 90 to resolve some slow plugins that take a long time to initialize. &lt;br /&gt;
&lt;br /&gt;
35. Add logging for the last time the battery level was reported and show the battery icon as a&amp;amp;nbsp;? if it's been more than 7 days. &lt;br /&gt;
&lt;br /&gt;
36. Fix problem with variableset Luup command not setting value always. &lt;br /&gt;
&lt;br /&gt;
37. Don't repoll or reconfigure battery operated devices that wakeup constantly. At most re-poll every 10 minutes. &lt;br /&gt;
&lt;br /&gt;
38. Add new scene recorder feature for easier scene creation. &lt;br /&gt;
&lt;br /&gt;
39. Fix problem with the UI4 dashboard getting out of sync with the engine. &lt;br /&gt;
&lt;br /&gt;
40. Fix problem with creation of 2 cameras using the same plugin. &lt;br /&gt;
&lt;br /&gt;
41. Always write user_data when child devices change in case the reload doesn't work, causing a never ending cycle &lt;br /&gt;
&lt;br /&gt;
42. Log uptime and track memory leaks. &lt;br /&gt;
&lt;br /&gt;
43. Add crossdomain.xml so ActionScript clients can poll &lt;br /&gt;
&lt;br /&gt;
44. Fix deadlock problem when aborting an existing send data command &lt;br /&gt;
&lt;br /&gt;
45. Rewrite the watchdog function so it catches threads that don't exit after the main one closes &lt;br /&gt;
&lt;br /&gt;
46. Add a tracking and reporting of 'tardy' tasks that run more than 3 seconds after they should. &lt;br /&gt;
&lt;br /&gt;
47. Add decoding of infrared signals to extract the protocol, device and button codes from a learned i/r signal &lt;br /&gt;
&lt;br /&gt;
48. Toggle the CPLD chip if the Z-Wave module stops responding to try to wake it up. &lt;br /&gt;
&lt;br /&gt;
49. Allow scenes to control A/V devices &lt;br /&gt;
&lt;br /&gt;
50. Fix for Leviton ZRCS4 id=2050 for 0-3 buttons &lt;br /&gt;
&lt;br /&gt;
51. Increase timeout of http fetches for slow satellite internet connections &lt;br /&gt;
&lt;br /&gt;
52. Allow Luup plugins (SQRemote) to remotely turn on features with a provision flag. &lt;br /&gt;
&lt;br /&gt;
53. Don't treat superceded jobs as an error. &lt;br /&gt;
&lt;br /&gt;
54. Fix issue with bridged systems not syncing state changes &lt;br /&gt;
&lt;br /&gt;
55. Fix issue with bridged systems and deep nested trees of devices more than 3 layers deep (ie 3-in-1 sensor) &lt;br /&gt;
&lt;br /&gt;
56. Re-write bridging code to reduce memory usage. &lt;br /&gt;
&lt;br /&gt;
57. Prevent UPnP devices from being marked offline if the luup plugin doesn't load. &lt;br /&gt;
&lt;br /&gt;
58. Add timestamps for all stages of the Z-Wave heal &lt;br /&gt;
&lt;br /&gt;
59. Add support for measuring KWH and resetting the cumulative measurement &lt;br /&gt;
&lt;br /&gt;
60. Add support for new Z-Wave metering classes &lt;br /&gt;
&lt;br /&gt;
61. Add buttons for streaming and still camera images &lt;br /&gt;
&lt;br /&gt;
62. Fix to prevent some messages from getting lost in the info panel &lt;br /&gt;
&lt;br /&gt;
63. Fix when adding/removing multiple devices with a timeout and not doing anything that it showed it stayed in 'add/remove' mode. &lt;br /&gt;
&lt;br /&gt;
64. Add filter when UPnP devices broadcast constantly to prevent bogging down the system. &lt;br /&gt;
&lt;br /&gt;
65. Few minor Z-Wave changes required to pass Sigma certification. Engine is now certified. &lt;br /&gt;
&lt;br /&gt;
66. Re-order the on/off buttons in UI4. &lt;br /&gt;
&lt;br /&gt;
67. Keep a log of polling history and success/fail, report to central server to assist tech support. &lt;br /&gt;
&lt;br /&gt;
68. Filter duplicate nonce's from secure devices. &lt;br /&gt;
&lt;br /&gt;
69. Fix scenes not updating from bridge's systems &lt;br /&gt;
&lt;br /&gt;
70. Add an auto purge of excessive ip and/or upnp requests so the user_data file doesn't grow bigger than the memory supports. &lt;br /&gt;
&lt;br /&gt;
71. Add a watchdog to the remote access tunnels to ensure access through cp.mios.com stays alive &lt;br /&gt;
&lt;br /&gt;
72. If the Z-Wave network doesn't start stop resetting the Insteon network too &lt;br /&gt;
&lt;br /&gt;
73. Change default poll interval on FLiRS devices to 10800 seconds instead of 60 to conserve the battery &lt;br /&gt;
&lt;br /&gt;
74. Fix mantis #1293 - Can't add notification for a device if no Scene is added previously &lt;br /&gt;
&lt;br /&gt;
75. Fix mantis #1275 - Add options in Scene to show all devices in all rooms or filter by their type &lt;br /&gt;
&lt;br /&gt;
76. Fix mantis #1317 - Replace Archive old logs on findvera with Archive old logs on mios.com &lt;br /&gt;
&lt;br /&gt;
77. Fix mantis #1238 - Wizard through cp.mios.com displaying a 404 Error. &lt;br /&gt;
&lt;br /&gt;
78. Fix mantis #1115 - text tweak on the 'add camera' page in the setup wizard &lt;br /&gt;
&lt;br /&gt;
79. Fix mantis #1356 - Enable mod_expire in lighttpd, have it &amp;quot;cache&amp;quot; images directories to avoid constant reload. &lt;br /&gt;
&lt;br /&gt;
80. Fix mantis #1207 - be sure the 4 buttons that remove devices have ok/cancel popups &lt;br /&gt;
&lt;br /&gt;
81. Fix mantis #1213 - if a device is imported, the 'wrench' setup icon should be grayed out &lt;br /&gt;
&lt;br /&gt;
82. Fix mantis #1251 - easier to use cameras &lt;br /&gt;
&lt;br /&gt;
83. Fix mantis #1314 - Empty Scene name &lt;br /&gt;
&lt;br /&gt;
84. Fix mantis #1360 - Don't update database fields with empty strings &lt;br /&gt;
&lt;br /&gt;
85. Fix scheduling user codes with a Schlage lock &lt;br /&gt;
&lt;br /&gt;
86. Fix compatibility with some Leviton scene/zone controllers using 100/200 series chips &lt;br /&gt;
&lt;br /&gt;
87. Prevent heal from aborting if there's lots of activity going on &lt;br /&gt;
&lt;br /&gt;
88. Fix so you can create custom luup handlers for actions with the same name and service file, but separate service id's, like heat and cool. &lt;br /&gt;
&lt;br /&gt;
89. Add the option of switching to the 3.20 (aka 4.52) branch of Z-Wave firmware &lt;br /&gt;
&lt;br /&gt;
90. Allow for manual routing when using 3.20 &lt;br /&gt;
&lt;br /&gt;
91. New heal routine that tests and optimizes Z-Wave routes. &lt;br /&gt;
&lt;br /&gt;
92. A basic heal will be performed automatically at night if Vera has lost communication with some nodes. &lt;br /&gt;
&lt;br /&gt;
93. Advanced users can now specify routes to nodes &lt;br /&gt;
&lt;br /&gt;
94. Fix deleting devices not showing up in the UI. &lt;br /&gt;
&lt;br /&gt;
95. Heal will auto-resume if it's aborted due to a crash or power outage &lt;br /&gt;
&lt;br /&gt;
96. Add support for meter table class (Kamstrup power meters) &lt;br /&gt;
&lt;br /&gt;
97. Do not discover UPNP devices by default anymore, unless the user requests it on the Add Device page. &lt;br /&gt;
&lt;br /&gt;
98. Fix mantis #1391: Cannot add control over another UPnP device &lt;br /&gt;
&lt;br /&gt;
99. Remove the 'Logs' for a device in the UI4 dashboard. Now go to cp.mios.com and choose Events. &lt;br /&gt;
&lt;br /&gt;
== Old, archived release notes  ==&lt;br /&gt;
&lt;br /&gt;
1. Fix problems with getting alerts for both 'over' and 'under' a certain temperature &lt;br /&gt;
&lt;br /&gt;
2. Fix problem with getting an 'over' and 'under' temperature alert every time the sensor reports the temperature &lt;br /&gt;
&lt;br /&gt;
3. Automatically set the clock on ZWave devices that support COMMAND_CLASS_CLOCK &lt;br /&gt;
&lt;br /&gt;
4. Fix compatibility with the Fortrezz water valve &lt;br /&gt;
&lt;br /&gt;
5. Fix problem where sometimes you can't remove a dead node &lt;br /&gt;
&lt;br /&gt;
6. Fix one Vera importing and controlling the devices from another. &lt;br /&gt;
&lt;br /&gt;
7. Fix one Vera controlling other UPnP devices. &lt;br /&gt;
&lt;br /&gt;
8. Change the way the version is reported so it's compatible with a new SQ Remote update &lt;br /&gt;
&lt;br /&gt;
9. Fix a problem with include/exclude ZWave not working when using the buttons while Vera is disconnected from the network &lt;br /&gt;
&lt;br /&gt;
10. Strip UPNP XML files of any non-standard characters (like accented characters) since this can cause some upnp scanners, like Device Spy, to ignore them. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
After 996 &lt;br /&gt;
&lt;br /&gt;
11. Occasionally a device that was properly configured could show as incorrectly configured if it failed to config and then was immediately reconfigured and succeeded the 2nd time before the 1st failure had been purged from the log. &lt;br /&gt;
&lt;br /&gt;
12. Fortrezz Water + Temp sensor now supports both events. &lt;br /&gt;
&lt;br /&gt;
13. Scenes can be 'active' or 'inactive' based on either 2 settings: 1) all devices in the scene are set, or 2) any device in the scene is on. &lt;br /&gt;
&lt;br /&gt;
14. Automatically set the LED's in a Leviton scene controller based on #13 &lt;br /&gt;
&lt;br /&gt;
15. Fix a crash while logging DHCP requests &lt;br /&gt;
&lt;br /&gt;
16. Don't try to configure a node right away if it failed configuration on the last attempt to reduce long latency caused by continuously reconfiguring dead nodes. &lt;br /&gt;
&lt;br /&gt;
17. Migrate to the new server structure with redundannt servers &lt;br /&gt;
&lt;br /&gt;
18. Add ability to do ZWave multi-cast. &lt;br /&gt;
&lt;br /&gt;
19. Fix a bug where it got stuck retrying to download plugins despite a network failure. &lt;br /&gt;
&lt;br /&gt;
20. Set default root password to the same as the Wifi Password/ HouseID, so telnet is disabled now by default. &lt;br /&gt;
&lt;br /&gt;
21. Don't set or restore default names that have been set with ZWave node naming get (ie starting with _). &lt;br /&gt;
&lt;br /&gt;
22. Add ability to specify custom device types and names for products based on the ZWave manufacturer and product ID's and an xml file, including default names and variable settings. &lt;br /&gt;
&lt;br /&gt;
23. Some ZWave chips seem to have trouble going into 'add node' mode when the commands are sent fast, so added some delays. &lt;br /&gt;
&lt;br /&gt;
24. Add handling for more alarms from door locks, like when new user codes are added and removed, and low battery alarms. &lt;br /&gt;
&lt;br /&gt;
25. For slow IP cameras there is now a timeout setting that can be increased to allow more time to return the JPEG. Also, the engine won't block the browser if the camera takes more than 3 seconds to respond. It will continue to retrieve the image in the background return it with the subsequent request. &lt;br /&gt;
&lt;br /&gt;
== UI2&amp;amp;nbsp;: 1.0.994 and UI3&amp;amp;nbsp;: 1.1.319 - April 21, 2010 - final UI2 and UI3  ==&lt;br /&gt;
&lt;br /&gt;
Both versions, 1.1.319 and 1.0.994, have the same back end engine. The difference is 1.0.994 has the older web html &amp;amp;amp; javascript user interface (UI2), and 1.1.319 &lt;br /&gt;
&lt;br /&gt;
1. [[http://bugs.micasaverde.com/view.php?id=739 Bug 739]]: Fix an intermittent problem with 'handler not found' error when trying to access the smartphone or WAP plugin &lt;br /&gt;
&lt;br /&gt;
2. Fix an error with pan/tilt buttons on a camera not working &lt;br /&gt;
&lt;br /&gt;
3. Add support for the Kwikset ZWave lock's built-in scheduling &lt;br /&gt;
&lt;br /&gt;
4. Improve configuring a Schlage lock. We discovered a 'hidden' configuration setting you can use to get all the user codes states at once rather than polling each code individually as per the official ZWave spec. &lt;br /&gt;
&lt;br /&gt;
5. Correct the reporting of lock/unlock on the Schlage deadbolt. Previously if a lock or unlock was sent to the deadbolt and the deadbolt reported it was executed OK, Vera assumed the lock was really locked/unlocked. Now we use the alarms from the lock instead so the state is always accurate. &lt;br /&gt;
&lt;br /&gt;
6. Fix so the include/exclude mode when triggered with the physical buttons stays on indefinitely. &lt;br /&gt;
&lt;br /&gt;
7. For advanced users, add capability to send door lock NONCE's with ACK by adding the UPNP variable urn:micasaverde-com:serviceId:ZWaveDevice1/NonceACK=1 &lt;br /&gt;
&lt;br /&gt;
8. Unmount the filesystem and kill all processes before flashing the firmware. Also report to a central server when the process starts, and when it reboots after an upgrade so we have a log to accurately measure how often an upgrade fails. We're trying to reduce the number of instances where Vera's firmware gets messed up during an upgrade. This process of upgrading isn't in our code, actually. It's part of the base Linux distro (OpenWRT), and, officially, the only way it should ever happen unless the user pulls the plug while the firwmare is being written, or a brown out. However we have had users experience it even though they insist the power was on steady during the whole firmware write process. &lt;br /&gt;
&lt;br /&gt;
9. For UI3 the problems with drag and drop are solved, and there's a new list view if you don't like the floorplan view. Several other cosmetic and usability issues have been fixed by the Flash team. &lt;br /&gt;
&lt;br /&gt;
10. Fix reset_to_factory_default script, it deleted some required files for the user manual. Now deletes only certain files. &lt;br /&gt;
&lt;br /&gt;
11. Add default free dns servers: OpenDNS.org &lt;br /&gt;
&lt;br /&gt;
== 1.0.979 - October 24, 2009 - final beta  ==&lt;br /&gt;
&lt;br /&gt;
All known issues of stability and memory leaks have now been resolved. The infrared and INSTEON/X10 modules are also fully functioning. The next couple weeks we will closely monitor the forums and trouble tickets to see if there are any lingering issues and then issue a release candidate. &lt;br /&gt;
&lt;br /&gt;
'''Fixes:''' &lt;br /&gt;
&lt;br /&gt;
0. '''IMPORTANT:''' The concept of method #1 and method #2 for programming scenes into scene controllers and handheld remotes no longer exists. The 'Treat Scenes as Events' checkbox is no longer used. Now, to assign a scene, select the scene, click 'Add Event', choose the scene controller or handheld remote, choose the event 'A Scene is Activated', and pick the scene or button ID, such as 3 for button 3 on a scene controller. Any Up/Down or Off buttons now work fine, plus you can add thermostats, door locks, and other non-scene devices to a scene and Vera will still trigger them. So with release 979, it's all automatic and you no longer have to make a decision for method #1 or method #2, and there is no longer a sacrifice with one method over the other. The [[ZWave Add Controller]] page has been updated. &lt;br /&gt;
&lt;br /&gt;
1. There was a file handle leak with files in /tmp that were deleted but not closed. This caused the system to run out of resources and crash after a few days. &lt;br /&gt;
&lt;br /&gt;
2. [[http://bugs.micasaverde.com/view.php?id=666 Bug 666]]: Unable to control the Panasonic BL-C131A camera after upgrading to version 1.0.939 &lt;br /&gt;
&lt;br /&gt;
3. [[http://bugs.micasaverde.com/view.php?id=682 Bug 682]]: can't add an ir device &lt;br /&gt;
&lt;br /&gt;
4. [[http://bugs.micasaverde.com/view.php?id=671 Bug 671]]: associate light switches with scene controllers &lt;br /&gt;
&lt;br /&gt;
5. [[http://bugs.micasaverde.com/view.php?id=625 Bug 625]]: confirm specific user code notification works. Now you get the name of the user code entered on a Schlage lock in the notification &lt;br /&gt;
&lt;br /&gt;
6. [[http://bugs.micasaverde.com/view.php?id=610 Bug 610]]: ha09 and method 0000001 not working &lt;br /&gt;
&lt;br /&gt;
7. [[http://bugs.micasaverde.com/view.php?id=598 Bug 598]]: handle missing variables in smartphone &lt;br /&gt;
&lt;br /&gt;
8. [[http://bugs.micasaverde.com/view.php?id=597 Bug 597]]: add buttons to window controller &lt;br /&gt;
&lt;br /&gt;
9. [[http://bugs.micasaverde.com/view.php?id=572 Bug 572]]: Prevent Timers to run if date is not correct &lt;br /&gt;
&lt;br /&gt;
10. [[http://bugs.micasaverde.com/view.php?id=638 Bug 638]]: Unable to add manually Panasonic IP camera easely &lt;br /&gt;
&lt;br /&gt;
11. [[http://bugs.micasaverde.com/view.php?id=631 Bug 631]]: combine method 0000001 and method 0000002 &lt;br /&gt;
&lt;br /&gt;
12. [[http://bugs.micasaverde.com/view.php?id=634 Bug 634]]: job icons &lt;br /&gt;
&lt;br /&gt;
13. [[http://bugs.micasaverde.com/view.php?id=640 Bug 640]]: Camera PTZ broken in 899 and it keeps to be broken if you upgrade to 918 &lt;br /&gt;
&lt;br /&gt;
14. [[http://bugs.micasaverde.com/view.php?id=641 Bug 641]]: Files from /etc/cmh-lu/ and /etc/cmh-ludl/ are not updated accordingly between firmware updates &lt;br /&gt;
&lt;br /&gt;
15. [[http://bugs.micasaverde.com/view.php?id=630 Bug 630]]: info panel not showing BACKUP jobs &lt;br /&gt;
&lt;br /&gt;
16. [[http://bugs.micasaverde.com/view.php?id=618 Bug 618]]: get rid of hardcoded filenames using FK instead &lt;br /&gt;
&lt;br /&gt;
17. [[http://bugs.micasaverde.com/view.php?id=627 Bug 627]]: temperature event not working &lt;br /&gt;
&lt;br /&gt;
18. [[http://bugs.micasaverde.com/view.php?id=596 Bug 596]]: after saving the info panel isn't updated &lt;br /&gt;
&lt;br /&gt;
19. [[http://bugs.micasaverde.com/view.php?id=636 Bug 636]]: IP CAMERA CONTROLS NOT WORKING IN IE &lt;br /&gt;
&lt;br /&gt;
20. [[http://bugs.micasaverde.com/view.php?id=475 Bug 475]]: need an input box on the iphone and wap ui &lt;br /&gt;
&lt;br /&gt;
21. [[http://bugs.micasaverde.com/view.php?id=458 Bug 458]]: backup/restore zwave dongle's firmware &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Category:Glossary]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/IR_Blaster</id>
		<title>IR Blaster</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/IR_Blaster"/>
				<updated>2012-07-11T15:06:13Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__ &lt;br /&gt;
&lt;br /&gt;
== Add a new IR&amp;amp;nbsp;device  ==&lt;br /&gt;
&lt;br /&gt;
First you will need to connect the IR Blaster in one of the USB ports of the Vera unit, you will need to login on your Dashboard, then go to Devices -&amp;amp;gt; Add Devices, click 'Add' next to 'Add IR device'. &lt;br /&gt;
&lt;br /&gt;
After that you will need to follow these steps: &lt;br /&gt;
&lt;br /&gt;
1. Click 'OK' &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-1.jpg|thumb|none|300px|Usbuirt-1.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
2. Select the IR Blaster &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-2.jpg|thumb|none|300px|Usbuirt-2.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
3. Click 'Guided setup' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-3.jpg|thumb|none|300px|Usbuirt-3.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
4. Click on the manufacturer of the device &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-4.jpg|thumb|none|300px|Usbuirt-4.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
5. Click on the type of the device (when you click the device you will see it highlighted with a red colour), then click 'Next' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-5.jpg|thumb|none|300px|Usbuirt-5.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
6. Click 'OK' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-6.jpg|thumb|none|300px|Usbuirt-6.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
7. Then the guided setup will let you test infrared codesets starting from the first, if your device responds from cliking on the buttons, then you will need to click 'Yes'. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-8.jpg|thumb|none|300px|Usbuirt-8.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
8. Enter the name of the device and select the room you want, then click 'Next' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-9.jpg|thumb|none|300px|Usbuirt-9.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
9. The device will be added and you will see the following message. You will need to click 'OK' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-10.jpg|thumb|none|300px|Usbuirt-10.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
To be able to control your device, on your Dashboard, you will need to go to Devices -&amp;amp;gt; AV Gear, and click the first icon on the left, under the Actions column (it's the first icon near the name of your AV device). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-11.jpg|thumb|none|300px|Usbuirt-11.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Learn IR codes  ==&lt;br /&gt;
&lt;br /&gt;
Make sure that the the IR Blaster is connected in one of the USB ports of the Vera unit, then go to your Dashboard, then go to Devices -&amp;amp;gt; Add Devices, click 'Add' next to 'Add IR device'. &lt;br /&gt;
&lt;br /&gt;
After that you will need to follow these steps: &lt;br /&gt;
&lt;br /&gt;
1. Click 'OK' &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-1.jpg|thumb|none|300px|Usbuirt-1.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
2. Select the IR Blaster &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-2.jpg|thumb|none|300px|Usbuirt-2.jpg]] &lt;br /&gt;
&lt;br /&gt;
3.Select Auto-learning option&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-12.jpg|thumb|none|300px|Usbuirt-12.jpg]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Then with the remote at 2 inches (4 cm) away from the IR&amp;amp;nbsp;Blaster press and hold one of the most commonly used buttons, like play/rewind/power/volume and wait until the bars fill up&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-13.jpg|thumb|none|300px|Usbuirt-13.jpg]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. Once the code is detected Vera will save and prompt you with this message where you should select the device that was detected&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-14.jpg|thumb|none|300px|Usbuirt-14.jpg]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''Note: If the device is not detected correctly, try the steps again and press another button.''&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/IR_Blaster</id>
		<title>IR Blaster</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/IR_Blaster"/>
				<updated>2012-07-10T23:03:01Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__ &lt;br /&gt;
&lt;br /&gt;
== Add a new IR&amp;amp;nbsp;device  ==&lt;br /&gt;
&lt;br /&gt;
First you will need to connect the IR Blaster in one of the USB ports of the Vera unit, you will need to login on your Dashboard, then go to Devices -&amp;amp;gt; Add Devices, click 'Add' next to 'Add IR device'. &lt;br /&gt;
&lt;br /&gt;
After that you will need to follow these steps: &lt;br /&gt;
&lt;br /&gt;
1. Click 'OK' &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-1.jpg|thumb|center|300px]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
2. Select the IR Blaster &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-2.jpg|thumb|center|300px]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
3. Click 'Guided setup' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-3.jpg|thumb|center|300px]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
4. Click on the manufacturer of the device &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-4.jpg|thumb|center|300px]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
5. Click on the type of the device (when you click the device you will see it highlighted with a red colour), then click 'Next' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-5.jpg|thumb|center|300px]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
6. Click 'OK' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-6.jpg|thumb|center|300px]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
7. Then the guided setup will let you test infrared codesets starting from the first, if your device responds from cliking on the buttons, then you will need to click 'Yes'. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-8.jpg|thumb|center|300px]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
8. Enter the name of the device and select the room you want, then click 'Next' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-9.jpg|thumb|center|300px]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
9. The device will be added and you will see the following message. You will need to click 'OK' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-10.jpg|thumb|center|300px]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
To be able to control your device, on your Dashboard, you will need to go to Devices -&amp;amp;gt; AV Gear, and click the first icon on the left, under the Actions column (it's the first icon near the name of your AV device). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-11.jpg|thumb|center|300px]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Learn IR codes ==&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/IR_Blaster</id>
		<title>IR Blaster</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/IR_Blaster"/>
				<updated>2012-07-10T23:01:50Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__ &lt;br /&gt;
&lt;br /&gt;
== Add a new IR&amp;amp;nbsp;device  ==&lt;br /&gt;
&lt;br /&gt;
First you will need to connect the IR Blaster in one of the USB ports of the Vera unit, you will need to login on your Dashboard, then go to Devices -&amp;amp;gt; Add Devices, click 'Add' next to 'Add IR device'. &lt;br /&gt;
&lt;br /&gt;
After that you will need to follow these steps: &lt;br /&gt;
&lt;br /&gt;
1. Click 'OK' &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-1.jpg|thumb|center|300px|Usbuirt-1.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
2. Select the IR Blaster &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-2.jpg|thumb|center|300px|Usbuirt-2.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
3. Click 'Guided setup' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-3.jpg|thumb|center|300px|Usbuirt-3.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
4. Click on the manufacturer of the device &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-4.jpg|thumb|center|300px|Usbuirt-4.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
5. Click on the type of the device (when you click the device you will see it highlighted with a red colour), then click 'Next' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-5.jpg|thumb|center|300px|Usbuirt-5.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
6. Click 'OK' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-6.jpg|thumb|center|300px|Usbuirt-6.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
7. Then the guided setup will let you test infrared codesets starting from the first, if your device responds from cliking on the buttons, then you will need to click 'Yes'. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-8.jpg|thumb|center|300px|Usbuirt-8.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
8. Enter the name of the device and select the room you want, then click 'Next' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-9.jpg|thumb|center|300px|Usbuirt-9.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
9. The device will be added and you will see the following message. You will need to click 'OK' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-10.jpg|thumb|center|300px|Usbuirt-10.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
To be able to control your device, on your Dashboard, you will need to go to Devices -&amp;amp;gt; AV Gear, and click the first icon on the left, under the Actions column (it's the first icon near the name of your AV device). &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-11.jpg|thumb|center|300px|Usbuirt-11.jpg]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Learn IR codes ==&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/IR_Blaster</id>
		<title>IR Blaster</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/IR_Blaster"/>
				<updated>2012-07-10T22:56:03Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''IR Blaster''' &lt;br /&gt;
&lt;br /&gt;
First you will need to connect the IR Blaster in one of the USB ports of the Vera unit, you will need to login on your Dashboard, then go to Devices -&amp;amp;gt; Add Devices, click 'Add' next to 'Add IR device'. &lt;br /&gt;
&lt;br /&gt;
After that you will need to follow these steps: &lt;br /&gt;
&lt;br /&gt;
1. Click 'OK' &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-1.jpg|thumb|300px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Select the IR Blaster &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-2.jpg|thumb|300px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Click 'Guided setup' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-3.jpg|thumb|300px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Click on the manufacturer of the device &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-4.jpg|thumb|300px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. Click on the type of the device (when you click the device you will see it highlighted with a red colour), then click 'Next' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-5.jpg|thumb|300px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Click 'OK' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-6.jpg|thumb|300px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. Then the guided setup will let you test infrared codesets starting from the first, if your device responds from cliking on the buttons, then you will need to click 'Yes'. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-8.jpg|thumb|300px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
8. Enter the name of the device and select the room you want, then click 'Next' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-9.jpg|thumb|300px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
9. The device will be added and you will see the following message. You will need to click 'OK' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-10.jpg|thumb|300px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To be able to control your device, on your Dashboard, you will need to go to Devices -&amp;amp;gt; AV Gear, and click the first icon on the left, under the Actions column (it's the first icon near the name of your AV device). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-11.jpg|thumb|300px|center]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/IR_Blaster</id>
		<title>IR Blaster</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/IR_Blaster"/>
				<updated>2012-07-10T22:48:20Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''IR Blaster''' &lt;br /&gt;
&lt;br /&gt;
First you will need to connect the IR Blaster in one of the USB ports of the Vera unit, you will need to login on your Dashboard, then go to Devices -&amp;amp;gt; Add Devices, click 'Add' next to 'Add IR device'. &lt;br /&gt;
&lt;br /&gt;
After that you will need to follow these steps: &lt;br /&gt;
&lt;br /&gt;
1. Click 'OK' &lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-1.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Select the IR Blaster &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-2.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Click 'Guided setup' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-3.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Click on the manufacturer of the device &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-4.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. Click on the type of the device (when you click the device you will see it highlighted with a red colour), then click 'Next' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-5.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Click 'OK' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-6.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. Then the guided setup will let you test infrared codesets starting from the first, if your device responds from cliking on the buttons, then you will need to click 'Yes'. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-8.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
8. Enter the name of the device and select the room you want, then click 'Next' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-9.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
9. The device will be added and you will see the following message. You will need to click 'OK' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-10.jpg|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To be able to control your device, on your Dashboard, you will need to go to Devices -&amp;amp;gt; AV Gear, and click the first icon on the left, under the Actions column (it's the first icon near the name of your AV device). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Usbuirt-11.jpg|thumb|center]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Fortrezz_WWA-002</id>
		<title>Fortrezz WWA-002</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Fortrezz_WWA-002"/>
				<updated>2012-07-05T18:16:04Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The WWA-02 alarms when water is detected and will also provide a Z-WaveTM alarm signal when the temperature drops below a low temperature setpoint or rises above a high temperature setpoint. The WWA-02 functionality is based on wireless (RF) transmissions. Any wireless transmission can be subject to RF interference and, although unlikely, this interference may cause the unit to not operate as intended. The WWA-02 must not be used in life support and/or safety applications. &lt;br /&gt;
&lt;br /&gt;
== Adding the sensor to Vera&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
To '''include '''a Z-Wave device you must put Vera in include mode by pressing the Z-Wave button once. When it goes into learn mode the Z-Wave light should be blinking slowly, then briefly press the button once and the controller will indicate the unit has been included in the network. Also, the LED will blink when the inclusion completes. Inclusion and exclusion are always done at normal transmit power mode.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If the sensor is not getting included, it could mean it has been added into another Z-Wave network previously, so you will have to exclude it. &lt;br /&gt;
&lt;br /&gt;
To '''exclude '''a Z-Wave device you must put Vera in exclude mode by keeping the Z-Wave button pressed for about 3 seconds. When you release it, the Z-Wave light should start blinking fast and you will have to press and hold the button for approx. 2 seconds until the controller indicates the unit has been removed from the network. The LED will blink when the exclusion completes.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Associations&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Once in a network, a controller can be used to associate the WWA-02 with other devices in the Z-WaveTM network, such as a light or another remote audible alarm. Refer to your controller’s documentation on how to associate WWA-02 with another device in your network. The WWA-02 supports three association groups with a maximum of 5 devices in each group. Basic Set commands are sent at 30-minute intervals to the associated groups while alarms are active. &lt;br /&gt;
&lt;br /&gt;
*A Basic Set Command is sent to the associated nodes, if any, assigned to Group1 to indicate that EITHER a Water Alarm OR Heat Alarm (under or over temperature) is active. &lt;br /&gt;
*A Basic Set Command with value = 0xFF is sent to the associated nodes, if any, assigned to Group2 to indicate that a Water Alarm is active. When the water alarm is cleared by drying the contacts, one additional report with value = 0x00 is sent.&amp;lt;br&amp;gt; &lt;br /&gt;
*A Basic Set Command is sent to the associated nodes, if any, assigned to Group3 to indicate that a Temperature Alarm (over or under temperature) is active. When the temperature alarm is cleared due to temperature change, one additional report with value = 0x00 is sent.&lt;br /&gt;
&lt;br /&gt;
== Wakeup Notification&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
The WWA-02 will wakeup and send a notification every 4 hours (default) to allow a controller to query and update the status of the unit. A brief button press while in network will also cause the WWA-02 to wakeup and send a notification. The device stays awake for 5 seconds during this time or longer if communicating with the controller.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;Status LED Indications&amp;lt;/u&amp;gt;'''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;width: 730px; height: 257px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| bgcolor=&amp;quot;#cccccc&amp;quot; | '''Number of Blinks&amp;amp;nbsp;'''&amp;amp;nbsp; &amp;lt;br&amp;gt; &lt;br /&gt;
| bgcolor=&amp;quot;#cccccc&amp;quot; | '''&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; Meaning'''&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | '''Fast Blinks, Normal Operation'''&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 1&amp;lt;br&amp;gt; &lt;br /&gt;
| Wakeup Notification Sent (after quick button press while in Network)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 2&amp;lt;br&amp;gt; &lt;br /&gt;
| Water Alarm&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 3&amp;lt;br&amp;gt; &lt;br /&gt;
| Temperature Alarm (either high or low setpoint triggered)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 4&amp;lt;br&amp;gt; &lt;br /&gt;
| An active alarm has been cleared (when a water alarm or a temperature alarm is no longer active)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 5&amp;lt;br&amp;gt; &lt;br /&gt;
| Low Battery (repeated every approx. 40 seconds)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | '''Slow Blinks, After Battery Replacement or Inclusion / Exclusion'''&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 1&amp;lt;br&amp;gt; &lt;br /&gt;
| In-Network (also, after button held while in-Network)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 3&amp;lt;br&amp;gt; &lt;br /&gt;
| Out of Network (also given if inclusion was not completed)&amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Configuration&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
The high and low temperature setpoints in the WWA-02 can be configured. The low temperature setpoint must always be set at least two degrees below the high temperature setpoint. The low temperature setpoint cannot be set less than –10 degrees C and the high temperature setpoint cannot be set greater than 70 degrees C.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*Parameter 1 sets Low Temperature Trigger Point (degrees Centigrade, 1 signed byte, Default = 4) &lt;br /&gt;
*Parameter 2 sets High Temperature Trigger Point (degrees Centigrade, 1 signed byte, Default = 70)&lt;br /&gt;
&lt;br /&gt;
On Vera's Dashboard go to the sensor's properties page by clicking on the ''wrench key'' then on the &amp;quot;Device Options&amp;quot; tab where you can set or edit these parameters.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;To do this click on the 'Add Configuration Setting' button, then indicate which variable number to set, and what value to set it to. Put the setting you want in 'Desired Value'. Vera will attempt to configure the node after you click the red 'Save' button. Since the sensor 's a battery operated device, Vera can't configure it right away, and you will have to configure it by pressing the button on the sensor several times near Vera. &amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Once Vera has configured the Z-Wave device, Vera will ask the device again for the value of the configuration setting and show it under 'Current Value'. If you set a value, configured the device, and the current value is something other than your desired value, that means the Z-Wave device did not accept the 'Desired Value' you gave it, and you may need to contact the manufacturer for clarification. &amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;If you change the 'Data Size' option to say 'Monitor only', then when the device is next configured Vera will not change the value, but Vera will ask the device for the current value and show it in the 'Current Value' column. If you change it to 'Default', then the next time Vera configures the device, Vera will tell the device to go back to the default value for this setting, and you'll see the value in the 'Current Value' column.&amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References  ==&lt;br /&gt;
&lt;br /&gt;
[[www.fortrezz.com/resources/WWA_02_manual.pdf|www.fortrezz.com/resources/WWA_02_manual.pdf]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Fortrezz_WWA-002</id>
		<title>Fortrezz WWA-002</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Fortrezz_WWA-002"/>
				<updated>2012-07-05T18:15:40Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The WWA-02 alarms when water is detected and will also provide a Z-WaveTM alarm signal when the temperature drops below a low temperature setpoint or rises above a high temperature setpoint. The WWA-02 functionality is based on wireless (RF) transmissions. Any wireless transmission can be subject to RF interference and, although unlikely, this interference may cause the unit to not operate as intended. The WWA-02 must not be used in life support and/or safety applications. &lt;br /&gt;
&lt;br /&gt;
== Adding the sensor to Vera&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
To '''include '''a Z-Wave device you must put Vera in include mode by pressing the Z-Wave button once. When it goes into learn mode the Z-Wave light should be blinking slowly, then briefly press the button once and the controller will indicate the unit has been included in the network. Also, the LED will blink when the inclusion completes. Inclusion and exclusion are always done at normal transmit power mode.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If the sensor is not getting included, it could mean it has been added into another Z-Wave network previously, so you will have to exclude it. &lt;br /&gt;
&lt;br /&gt;
To '''exclude '''a Z-Wave device you must put Vera in exclude mode by keeping the Z-Wave button pressed for about 3 seconds. When you release it, the Z-Wave light should start blinking fast and you will have to press and hold the button for approx. 2 seconds until the controller indicates the unit has been removed from the network. The LED will blink when the exclusion completes.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Associations&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Once in a network, a controller can be used to associate the WWA-02 with other devices in the Z-WaveTM network, such as a light or another remote audible alarm. Refer to your controller’s documentation on how to associate WWA-02 with another device in your network. The WWA-02 supports three association groups with a maximum of 5 devices in each group. Basic Set commands are sent at 30-minute intervals to the associated groups while alarms are active. &lt;br /&gt;
&lt;br /&gt;
*A Basic Set Command is sent to the associated nodes, if any, assigned to Group1 to indicate that EITHER a Water Alarm OR Heat Alarm (under or over temperature) is active. &lt;br /&gt;
*A Basic Set Command with value = 0xFF is sent to the associated nodes, if any, assigned to Group2 to indicate that a Water Alarm is active. When the water alarm is cleared by drying the contacts, one additional report with value = 0x00 is sent.&amp;lt;br&amp;gt; &lt;br /&gt;
*A Basic Set Command is sent to the associated nodes, if any, assigned to Group3 to indicate that a Temperature Alarm (over or under temperature) is active. When the temperature alarm is cleared due to temperature change, one additional report with value = 0x00 is sent.&lt;br /&gt;
&lt;br /&gt;
== Wakeup Notification&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
The WWA-02 will wakeup and send a notification every 4 hours (default) to allow a controller to query and update the status of the unit. A brief button press while in network will also cause the WWA-02 to wakeup and send a notification. The device stays awake for 5 seconds during this time or longer if communicating with the controller.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;u&amp;gt;Status LED Indications&amp;lt;/u&amp;gt;'''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;width: 730px; height: 257px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| bgcolor=&amp;quot;#cccccc&amp;quot; | '''Number of Blinks&amp;amp;nbsp;'''&amp;amp;nbsp; &amp;lt;br&amp;gt; &lt;br /&gt;
| bgcolor=&amp;quot;#cccccc&amp;quot; | '''&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; Meaning'''&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | '''Fast Blinks, Normal Operation'''&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 1&amp;lt;br&amp;gt; &lt;br /&gt;
| Wakeup Notification Sent (after quick button press while in Network)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 2&amp;lt;br&amp;gt; &lt;br /&gt;
| Water Alarm&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 3&amp;lt;br&amp;gt; &lt;br /&gt;
| Temperature Alarm (either high or low setpoint triggered)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 4&amp;lt;br&amp;gt; &lt;br /&gt;
| An active alarm has been cleared (when a water alarm or a temperature alarm is no longer active)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 5&amp;lt;br&amp;gt; &lt;br /&gt;
| Low Battery (repeated every approx. 40 seconds)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | '''Slow Blinks, After Battery Replacement or Inclusion / Exclusion'''&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 1&amp;lt;br&amp;gt; &lt;br /&gt;
| In-Network (also, after button held while in-Network)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 3&amp;lt;br&amp;gt; &lt;br /&gt;
| Out of Network (also given if inclusion was not completed)&amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Configuration&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
The high and low temperature setpoints in the WWA-02 can be configured. The low temperature setpoint must always be set at least two degrees below the high temperature setpoint. The low temperature setpoint cannot be set less than –10 degrees C and the high temperature setpoint cannot be set greater than 70 degrees C.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*Parameter 1 sets Low Temperature Trigger Point (degrees Centigrade, 1 signed byte, Default = 4) &lt;br /&gt;
*Parameter 2 sets High Temperature Trigger Point (degrees Centigrade, 1 signed byte, Default = 70)&lt;br /&gt;
&lt;br /&gt;
On Vera's Dashboard go to the sensor's properties page by clicking on the ''wrench key'' then on the &amp;quot;Device Options&amp;quot; tab where you can set or edit these parameters.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;To do this click on the 'Add Configuration Setting' button, then indicate which variable number to set, and what value to set it to. Put the setting you want in 'Desired Value'. Vera will attempt to configure the node after you click the red 'Save' button. Since the sensor 's a battery operated device, Vera can't configure it right away, and you will have to configure it by pressing the button on the sensor several times near Vera. &amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;Once Vera has configured the Z-Wave device, Vera will ask the device again for the value of the configuration setting and show it under 'Current Value'. If you set a value, configured the device, and the current value is something other than your desired value, that means the Z-Wave device did not accept the 'Desired Value' you gave it, and you may need to contact the manufacturer for clarification. &amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;If you change the 'Data Size' option to say 'Monitor only', then when the device is next configured Vera will not change the value, but Vera will ask the device for the current value and show it in the 'Current Value' column. If you change it to 'Default', then the next time Vera configures the device, Vera will tell the device to go back to the default value for this setting, and you'll see the value in the 'Current Value' column.&amp;lt;/font&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;font size=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
www.fortrezz.com/resources/WWA_02_manual.pdf&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Aeon_HomeEnergyMonitor</id>
		<title>Aeon HomeEnergyMonitor</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Aeon_HomeEnergyMonitor"/>
				<updated>2012-07-03T10:59:46Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you have version 3.58 or later of the HEM firmware (unrelated to Vera's firmware), it supports the ability to report in real-time whenever there is a change in the energy consumption.&amp;amp;nbsp; It generates a report for Vera whenever there is a change. &lt;br /&gt;
&lt;br /&gt;
For versions 3.57 and lower, the only way to get real time energy reporting was to have the HEM send Vera reports constantly, whether or not there was a change.&amp;amp;nbsp; This required powering the HEM with USB power.&amp;amp;nbsp; So we recommend using the USB port on the HEM to upgrade to firmware 3.58 or newer, as per the instructions on aeon-labs.com &lt;br /&gt;
&lt;br /&gt;
There have been reported issues with HEM firmware less than 3.61. The latest that we know about is 3.67 and you can download it below. Please make sure to choose the right frequency for your own device.&lt;br /&gt;
&lt;br /&gt;
US version: [http://wiki.micasaverde.com/images/f/f6/Home_Energy_Meter_V3_67_US.zip HEM367] &lt;br /&gt;
&lt;br /&gt;
AU version - 200 A: [http://wiki.micasaverde.com/images/4/45/Home_Energy_Meter_V3_67_AU_200A.zip HEM367] &lt;br /&gt;
&lt;br /&gt;
EU version - 60 A&amp;amp;nbsp;:&amp;amp;nbsp; [http://wiki.micasaverde.com/images/3/37/Home_Energy_Meter_V3_67_EU_60A.zip HEM367] &lt;br /&gt;
&lt;br /&gt;
EU version - 100 A: [http://wiki.micasaverde.com/images/2/2a/Home_Energy_Meter_V3_67_EU_100A.zip HEM367] &lt;br /&gt;
&lt;br /&gt;
EU version - 200 A: [http://wiki.micasaverde.com/images/5/5e/Home_Energy_Meter_V3_67_EU_200A.zip HEM367] &lt;br /&gt;
&lt;br /&gt;
== Inclusion  ==&lt;br /&gt;
&lt;br /&gt;
When including the HEM to the Vera unit you should have the HEM&amp;amp;nbsp;powered with the &amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;USB AC adapter&amp;lt;/span&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
== Note  ==&lt;br /&gt;
&lt;br /&gt;
You need to have it plugged in through the &amp;lt;span style=&amp;quot;color: rgb(255, 0, 0);&amp;quot;&amp;gt;USB AC adapter&amp;lt;/span&amp;gt; for it to report the KWH accurately, because when it is battery operated it sleeps most of the time and it cannot accurately track KWH.&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Yale_Lock</id>
		<title>Yale Lock</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Yale_Lock"/>
				<updated>2012-06-28T19:49:41Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Yale Door lock&amp;lt;br&amp;gt;  =&lt;br /&gt;
&lt;br /&gt;
=== Adding/pairing the door lock into a Z-Wave network:  ===&lt;br /&gt;
&lt;br /&gt;
Please note that when pairing secure devices like door locks you will have to use the [http://docs5.mios.com/doc.php?page=full_power_inclusion full power inclusion mode] from the Dashboard. &lt;br /&gt;
&lt;br /&gt;
I. Put Vera in include mode by using the full power inclusion mode: &lt;br /&gt;
&lt;br /&gt;
1. Go to Vera's Dashboard &lt;br /&gt;
&lt;br /&gt;
2. Click on Add/Remove devices in the upper left corner on the Dashboard &lt;br /&gt;
&lt;br /&gt;
3. Click Next on Z-Wave &lt;br /&gt;
&lt;br /&gt;
4. Scroll all the way down and select: Include, one node, with full power and timeout after 90 or 120 seconds and hit Go &lt;br /&gt;
&lt;br /&gt;
II. Do the include procedure on the door lock:&amp;lt;br&amp;gt;1. Enter the 4-8 digit Master PIN code followed by the # key&amp;lt;br&amp;gt;2. Press 7 followed by the # key. (*This function appears only with network module installed)&amp;lt;br&amp;gt;3. Press 1 followed by the # key to include the door lock.&amp;lt;br&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; &amp;lt;br&amp;gt;CAUTION: When joining a network your controller may or may not be aware of any previously saved user codes stored in the lock. It is recommended that all user codes be deleted from the lock prior to joining a network. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Deleting/Removing the door lock from a Z-Wave network:  ===&lt;br /&gt;
&lt;br /&gt;
1. Put Vera in exclude mode, by using the full power exclude mode (same as above, only instead of Include, select Exclude) &lt;br /&gt;
&lt;br /&gt;
2. Enter the 4-8 digit Master PIN&amp;amp;nbsp;code followed by the # key &lt;br /&gt;
&lt;br /&gt;
3. Press 7 followed by the # key. (*This function appears only with network module installed) &lt;br /&gt;
&lt;br /&gt;
4. Press 3 followed by the # key to exclude the door ock. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== References  ==&lt;br /&gt;
&lt;br /&gt;
[http://www.yaleresidential.com/Yale/Yale%20US/Real%20Living/Documents%20Library/Yale%20%20DB%20Touch%20Instructions%2016MAR12_Rev%20B.pdf Yale DB Touch Instructions]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Firmware_Flash_VeraLite</id>
		<title>Firmware Flash VeraLite</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Firmware_Flash_VeraLite"/>
				<updated>2012-06-19T18:20:55Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Prerequisites  ==&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span style=&amp;quot;color:#FF0000;&amp;quot;&amp;gt;YOU NEED TO FOLLOW THIS TUTORIAL ONLY IF YOUR VERA UNIT IS NOT BOOTING ANYMORE, THIS MEANS THAT WHILE BEING CONNECTED TO THE INTERNET THE POWER LED IS BLINKING GREEN/ORANGE AND NO OTHER LEDS ARE LIGHT UP/BLINKING &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#FF0000;&amp;quot;&amp;gt;FOR MORE THAN 30 MINUTES &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#FF0000;&amp;quot;&amp;gt;!&amp;lt;/span&amp;gt; &lt;br /&gt;
*The upgrade tool is only tested in Windows XP, it will not work with Windows Vista. In Windows 7 the applications should be run in Windows XP SP3 compatibility mode.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Make sure your computer is connected to your network through an Ethernet cable. Make sure to disable any WIRELESS/BLUETOOTH/other networking interfaces before continuing.&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
NOTE: Failure to disable your wireless network before continuing could result in an unusable unit. &lt;br /&gt;
&lt;br /&gt;
*Please deactivate all Firewall and Antivirus software which is running during the upgrade process.&lt;br /&gt;
&lt;br /&gt;
Note: If you are running Windows Vista/7 please follow the next guide to enable the TFTP Client and then continue with the re-flash steps. Guide: http://www.simplehelp.net/2008/09/10/how-to-install-a-tftp-client-in-windows-vista/ &lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;span id=&amp;quot;If_the_restoration_utility_does_not_work_in_Windows_7&amp;quot; class=&amp;quot;mw-headline&amp;quot;&amp;gt;If the restoration utility does not work on Windows 7&amp;lt;/span&amp;gt;  ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span class=&amp;quot;mw-headline&amp;quot;&amp;gt;Please note that this is only available for Windows 7 Professional, Enterprise and Ultimate editions.&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
*If the restoration utility does not work on Windows 7 you should use the Windows Xp Mode, offered for free by Microsoft. To install it, you have to go to this page [http://www.microsoft.com/windows/virtual-pc/download.aspx Windows Xp Mode] which will walk you through the entire process.&amp;lt;br&amp;gt; &lt;br /&gt;
*After this finishes and you open up the Windows Xp Mode Virtual Machine, you should go to the Menu, select Tools -&amp;amp;gt;&amp;amp;nbsp;Settings, select Networking and for adapter 1 make sure to select your LAN card, the one that will be connected directly into any of LAN ports of Vera. &lt;br /&gt;
*Afterwards you will have to open Internet explorer inside the virtual machine, access [http://wiki.micasaverde.com/index.php/Firmware_Flash_Vera3 this page] and download the Firmware flash utilities inside the virtual machine. &lt;br /&gt;
*On Windows 7 change the Local Area Connection settings to use the static IP and connect the Vera unit to your computer as explained at the begining of this page, then open the Firmware Flash utility inside the Virtual machine and you should be able to continue the Firmware Flash process.&lt;br /&gt;
&lt;br /&gt;
== Files to download before you start the restoration process  ==&lt;br /&gt;
&lt;br /&gt;
*[http://download.mios.com/firmware/vera3_recovery_tool.zip Vera Lite Firmware Recovery Tool] &lt;br /&gt;
*[http://download.mios.com/firmware/os_rt3662/openwrt-ramips-rt3883-veralite-squashfs-full-81.bin Vera Lite Recovery Firmware]&lt;br /&gt;
&lt;br /&gt;
== &amp;amp;nbsp;Setup your computer to connect to Vera Lite &amp;amp;nbsp; &amp;amp;nbsp;  ==&lt;br /&gt;
&lt;br /&gt;
*Computer IP: 192.168.0.100 &lt;br /&gt;
*Subnet Mask: 255.255.255.0 &lt;br /&gt;
*Default Gateway: 192.168.0.1&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
== Begin the process for flashing the firmware  ==&lt;br /&gt;
&lt;br /&gt;
#Use a network cable (CAT5e) and plug the cable from your PC into Vera's '''LAN port'''. &amp;amp;nbsp; &lt;br /&gt;
#Unplug Vera from the power cord. &lt;br /&gt;
#Holding down Vera's '''RESET button''' whilst pluging in the power cord back in. Wait about 3s after you plugged the power cord back with the Reset button pressed. &amp;amp;lt;br&amp;amp;gt;When releasing the Reset button, the&amp;amp;nbsp;'''Z-Wave LED''' should be blinking. &amp;amp;nbsp; &lt;br /&gt;
#If the '''Z-Wave LED''' is not blinking, turn Vera off and try again. &lt;br /&gt;
#Start [http://download.mios.com/firmware/vera3_recovery_tool.zip Vera Lite Firmware Recovery Tool]. &lt;br /&gt;
#Click &amp;quot;Browse target&amp;quot; button. &lt;br /&gt;
#Vera should appear in targets list. &lt;br /&gt;
#Click on &amp;quot;*UN*checkPID&amp;quot; radiobox &lt;br /&gt;
#Select &amp;quot;EraseALL&amp;quot; from dropdown box. (&amp;amp;lt;- this will update your unit bootloader also) &lt;br /&gt;
#Click the [Files] button. &lt;br /&gt;
#Download the file: [http://download.mios.com/firmware/os_rt3662/openwrt-ramips-rt3883-veralite-squashfs-full-81.bin Vera Lite Recovery Firmware] and save it on your computer. &lt;br /&gt;
#Select the file [http://download.mios.com/firmware/os_rt3662/openwrt-ramips-rt3883-veralite-squashfs-full-81.bin Vera Lite Recovery Firmware] &lt;br /&gt;
#Click the [Open] button to get the file. &lt;br /&gt;
#Click on the [OK] button on the BIN File Information dialog box. &lt;br /&gt;
#Click on the [Upgrade] button. File will be flashed, and you will see a dialog box saying success - close Upgrade Tool. &lt;br /&gt;
#Put your computer's IP to 192.168.81.100, Subnet Mask: 255.255.255.0 &lt;br /&gt;
#Please wait until Vera ''automatically'' reboots and the '''Network''''''&amp;amp;nbsp;led''' starts double blinking or it's solid (this can take 10 to 30 minutes). &amp;amp;nbsp; &lt;br /&gt;
#When you see the Z-Wave led solid, you are done.&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
== To do after the restoration has finished  ==&lt;br /&gt;
&lt;br /&gt;
*If you have your computer connected to the LAN port of Vera, open http://192.168.81.1 and you will see Vera's UI. &amp;amp;nbsp; &lt;br /&gt;
*If you already disconnected it from the computer and connected the WAN cable coming from your main Router/ADSL modem, the Network light on front will go solid, meaning Vera is connected to the internet.&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Dont forget to update your Vera to the latest available firmware. This is explained here: [[Update Firmware]] &lt;br /&gt;
&lt;br /&gt;
Next, if you also want to restore everything else in Vera, restore a backup file, either one that you created manually with 'Create Backup', or an automatic backup at MiOS.com, click 'Browse' to find the backup file, select it, and click 'Restore'. &lt;br /&gt;
&lt;br /&gt;
== References  ==&lt;br /&gt;
&lt;br /&gt;
[http://download.mios.com/firmware/os_rt3662/openwrt-ramips-rt3883-veralite-squashfs-full-81.bin Vera Lite Recovery Firmware]&amp;lt;br&amp;gt;http://download.mios.com/firmware/vera3_upgrade_tool.zip Vera Lite Firmware Recovery Tool&amp;lt;br&amp;gt; http://www.simplehelp.net/2008/09/10/how-to-install-a-tftp-client-in-windows-vista/&amp;amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
[[Category:User_Instructions]] [[Category:How_To]]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/PolyPad_and_PolyLock</id>
		<title>PolyPad and PolyLock</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/PolyPad_and_PolyLock"/>
				<updated>2012-06-11T16:28:52Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The PolyPad can work as a stand alone Z-Wave device, it can be updated with PIN codes from Vera, including all the options for the PIN codes.&amp;amp;nbsp;The PIN codes are validated locally by the PolyPad, and a door lock report is sent to Vera.&lt;br /&gt;
&lt;br /&gt;
You can set up a scenario on Vera using the PolyPad and it will report if it has been locked or unlocked, but it will not report what pin code have been entered. This is likely to change in a future firmware version for the Poly Pad itself after it's been integrated.&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
[http://wiki.micasaverde.com/images/f/f2/Userguide_Poly-lock_and_Poly-Pad.pdf.zip Userguide Poly Lock and Poly Pad]&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/PolyPad_and_PolyLock</id>
		<title>PolyPad and PolyLock</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/PolyPad_and_PolyLock"/>
				<updated>2012-06-11T16:27:36Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: Created page with &amp;quot;&amp;lt;span style=&amp;quot;background-color: rgba(255, 255, 255, 0.917969); color: rgb(34, 34, 34); font-family: 'Century Gothic', sans-serif; font-size: 14px; line-height: normal; &amp;quot; /&amp;gt;The Pol...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span style=&amp;quot;background-color: rgba(255, 255, 255, 0.917969); color: rgb(34, 34, 34); font-family: 'Century Gothic', sans-serif; font-size: 14px; line-height: normal; &amp;quot; /&amp;gt;The PolyPad can work as a stand alone Z-Wave device, it can be updated with PIN codes from Vera, including all the options for the PIN codes.&amp;amp;nbsp;The PIN codes are validated locally by the PolyPad, and a door lock report is sent to Vera.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;You can set up a scenario on Vera using the PolyPad and it will report if it has been locked or unlocked, but it will not report what pin code have been entered. This is likely to change in a future firmware version for the Poly Pad itself after it's been integrated.&amp;lt;/div&amp;gt;&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;color: rgb(34, 34, 34); font-family: 'Century Gothic', sans-serif; font-size: 14px; line-height: normal; background-color: rgba(255, 255, 255, 0.917969); &amp;quot;&amp;gt;[http://wiki.micasaverde.com/images/f/f2/Userguide_Poly-lock_and_Poly-Pad.pdf.zip Userguide Poly Lock and Poly Pad&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/File:Userguide_Poly-lock_and_Poly-Pad.pdf.zip</id>
		<title>File:Userguide Poly-lock and Poly-Pad.pdf.zip</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/File:Userguide_Poly-lock_and_Poly-Pad.pdf.zip"/>
				<updated>2012-06-11T16:17:02Z</updated>
		
		<summary type="html">&lt;p&gt;Mcvdaniel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mcvdaniel</name></author>	</entry>

	</feed>