<?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=Cj</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=Cj"/>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Special:Contributions/Cj"/>
		<updated>2026-06-03T04:34:38Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.8</generator>

	<entry>
		<id>http://wiki.mios.com/index.php/How_to_connect_3G_modem_to_Vera</id>
		<title>How to connect 3G modem to Vera</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/How_to_connect_3G_modem_to_Vera"/>
				<updated>2013-04-13T06:51:01Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: /* Instructions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This guide applies to Vera units with firmware version starting with 1.5.622 and works only when the WAN&amp;amp;nbsp;port is not connected, and the modem is manually set to connect. &amp;lt;span&amp;gt;When the wire is plugged back, the WAN becomes the default gateway.&amp;lt;/span&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; Supported 3G Modems&amp;amp;nbsp;: &amp;lt;br&amp;gt; &lt;br /&gt;
&amp;lt;pre&amp;gt;Huawei E153&lt;br /&gt;
ZTE MF180&lt;br /&gt;
ZTE MF667F &amp;lt;/pre&amp;gt; &lt;br /&gt;
== Instructions&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
Connect to the unit by ssh as explained [http://wiki.micasaverde.com/index.php/Logon_Vera_SSH here], then follow these steps:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. Disable network-autoconfigure&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;rm /etc/cmh/fresh_install&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1.2. Add 3G support in /usr/bin/GetNetworkState.sh script&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wan)&lt;br /&gt;
                [[ &amp;quot;$(uci -P/var/state/ get network.3g.up 2&amp;gt;/dev/null)&amp;quot; == &amp;quot;1&amp;quot; ]] &amp;amp;&amp;amp; { echo &amp;quot;UP&amp;quot;; exit; }&lt;br /&gt;
                &lt;br /&gt;
ip_wan)&lt;br /&gt;
                [[ &amp;quot;$(uci -P/var/state get network.wan.up 2&amp;gt;/dev/null)&amp;quot; != &amp;quot;0&amp;quot; ]] &amp;amp;&amp;amp; [[ &amp;quot;$(uci -P/var/state get network.3g.up 2&amp;gt;/dev/null)&amp;quot; == &amp;quot;1&amp;quot; ]] &amp;amp;&amp;amp; {&lt;br /&gt;
                                uci -P/var/state get network.3g.ipaddr 2&amp;gt;/dev/null&lt;br /&gt;
                                exit&lt;br /&gt;
                }&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
1.3 Add 3G support in /usr/bin/Report_AP.sh&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#TODO - report if unit is in WifiClientMode                                                                                       &lt;br /&gt;
    WanIP=&amp;quot;$(GetNetworkState.sh ip_wan)&amp;quot;                                                                                                  &lt;br /&gt;
    if [[ &amp;quot;$WanIP&amp;quot; == &amp;quot;&amp;quot; ]]; then &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
2. Plug in USB Modem in Vera &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
3. Check if the modem is insterted correctly and that vera can see it . &lt;br /&gt;
&amp;lt;pre&amp;gt;gcom info /dev/ttyUSBx | x = 0 or 1 &amp;lt;/pre&amp;gt; &lt;br /&gt;
4. In /etc/config/network add the following&amp;amp;nbsp;: &lt;br /&gt;
&amp;lt;pre&amp;gt;config 'interface' '3g'&lt;br /&gt;
        option 'ifname' 'ppp0'&lt;br /&gt;
        option 'device' '/dev/ttyUSB0'&lt;br /&gt;
        option 'apn' 'internet'&lt;br /&gt;
        option 'service' 'umts'&lt;br /&gt;
        option 'proto' '3g'&lt;br /&gt;
              &amp;lt;/pre&amp;gt; &lt;br /&gt;
If the modem has a PIN code add it&amp;amp;nbsp;:&amp;lt;br&amp;gt; &lt;br /&gt;
&amp;lt;pre&amp;gt;  option 'pincode' '1234' &amp;lt;/pre&amp;gt; &lt;br /&gt;
If the modem requires an username and password set it&amp;amp;nbsp;:&amp;lt;br&amp;gt; &lt;br /&gt;
&amp;lt;pre&amp;gt;  option username yourusername&lt;br /&gt;
  option password yourpassword&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
Save and exit &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
5. Check 3G chatscripts ( they are used for the method of connection ) &lt;br /&gt;
&amp;lt;pre&amp;gt;cat /etc/chatscripts/3g.chat&lt;br /&gt;
&lt;br /&gt;
    ABORT   BUSY&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ABORT&amp;amp;nbsp;&amp;amp;nbsp; 'NO CARRIER'&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; ABORT&amp;amp;nbsp;&amp;amp;nbsp; ERROR&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; REPORT&amp;amp;nbsp; CONNECT&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; TIMEOUT 10&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; &amp;quot;&amp;quot;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; &amp;quot;AT+CSQ&amp;quot;&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; OK&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; &amp;quot;ATE1&amp;quot;&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; OK&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; 'AT+CGDCONT=1,&amp;quot;IP&amp;quot;,&amp;quot;$USE_APN&amp;quot;'&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; SAY&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; &amp;quot;Calling UMTS/GPRS&amp;quot;&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; TIMEOUT 30&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; OK&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; &amp;quot;ATD*99***1#&amp;quot;&lt;br /&gt;
&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; CONNECT ' '&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
&amp;lt;br&amp;gt; Settings should be like the ones above. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; 5. Restart network (be sure to on lan conected to it , not by wan&amp;amp;nbsp;!! IT will not show debugging info ) &lt;br /&gt;
&amp;lt;pre&amp;gt;/etc/init.d/network restart&lt;br /&gt;
&lt;br /&gt;
    BRIDGE ADDBR&amp;amp;nbsp;: brctl addbr br-lan&lt;br /&gt;
    BRIDGE ADDIF br-lan eth0.1&lt;br /&gt;
    BRIDGE ADDIF&amp;amp;nbsp;: brctl addif br-lan wlan0&lt;br /&gt;
    BRIDGE DELIF&amp;amp;nbsp;: brctl delif br-lan&lt;br /&gt;
    Configuration file: /var/run/hostapd-phy0.conf&lt;br /&gt;
    Using interface wlan0 with hwaddr 00:0e:XX:XX:XX:XX and ssid 'mios_wifi'&lt;br /&gt;
    BRIDGE DELIF&amp;amp;nbsp;: brctl delif br-lan wlan0&lt;br /&gt;
    BRIDGE ADDIF&amp;amp;nbsp;: brctl addif br-lan wlan0&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
6. Watch logread with the following parameters&amp;amp;nbsp;: &lt;br /&gt;
&amp;lt;pre&amp;gt;logread -f | grep local2.info &amp;lt;/pre&amp;gt; &lt;br /&gt;
It should be like this &lt;br /&gt;
&amp;lt;pre&amp;gt;    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: abort on (BUSY)&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: abort on (NO CARRIER)&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: abort on (ERROR)&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: report (CONNECT)&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: timeout set to 10 seconds&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: send (AT+CSQ^M)&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: expect (OK)&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: AT+CSQ^M^M&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: +CSQ: 24,99^M&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: ^M&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: OK&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]:  -- got it&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: send (ATE1^M)&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: expect (OK)&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: ^M&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: ATE1^M^M&lt;br /&gt;
    Feb 15 04:18:15 MiOS_3xxxxxxx local2.info chat[11495]: OK&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
&amp;lt;br&amp;gt; 7. Check ifconfig &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
          3g-wan    Link encap:Point-to-Point Protocol&lt;br /&gt;
 inet addr:172.XXX.XXX.XXX  P-t-P:10.XXX.XXX.XXX  Mask:255.255.255.255&lt;br /&gt;
 UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  Metric:1&lt;br /&gt;
 RX packets:2671 errors:0 dropped:0 overruns:0 frame:0&lt;br /&gt;
 TX packets:2449 errors:0 dropped:0 overruns:0 carrier:0&lt;br /&gt;
 collisions:0 txqueuelen:3&lt;br /&gt;
 RX bytes:1025131 (1001.1 KiB)  TX bytes:717822 (700.9 KiB)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; 8. Stop and start 3G &lt;br /&gt;
&lt;br /&gt;
To stop it&amp;amp;nbsp;:&amp;lt;br&amp;gt; &lt;br /&gt;
&amp;lt;pre&amp;gt;ifdown wan &lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
To start it&amp;amp;nbsp;&amp;amp;nbsp;:&amp;lt;br&amp;gt; &lt;br /&gt;
&amp;lt;pre&amp;gt;ifup wan &amp;lt;/pre&amp;gt; &lt;br /&gt;
&amp;amp;nbsp; If you encounter any issues you can check the logs at&amp;amp;nbsp;:&amp;lt;br&amp;gt; &lt;br /&gt;
&amp;lt;pre&amp;gt;logread -f | grep local2.info &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;br&amp;gt;&amp;amp;nbsp;Possible issues&amp;amp;nbsp;:&amp;lt;br&amp;gt;  ==&lt;br /&gt;
&lt;br /&gt;
'''1.''' Not being able to connect to the modem (on /etc/init.d/network restart -&amp;amp;gt; no such device)&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''Cause&amp;amp;nbsp;''': &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
USB port miss-configuration &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''Resolution ''': &lt;br /&gt;
&lt;br /&gt;
Type the code below until the USB modem is detected &lt;br /&gt;
&amp;lt;pre&amp;gt;gcom info /dev/ttyUSBx &lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
Then update the option 'device' '/dev/ttyUSB0' in &lt;br /&gt;
&amp;lt;pre&amp;gt;/etc/config/network &amp;lt;/pre&amp;gt; &lt;br /&gt;
'''2.''' 3G (error) PIN code incorrect&amp;amp;nbsp;: &lt;br /&gt;
&lt;br /&gt;
Be sure to set the PIN if it has one, or if it doesn't have one dont set it at all. &lt;br /&gt;
&lt;br /&gt;
'''3.''' Remote access doesn't work anymore&amp;amp;nbsp;: &lt;br /&gt;
&lt;br /&gt;
Certain providers block the remote access port, so the unit can't connect anymore to the remote access server. &lt;br /&gt;
&lt;br /&gt;
A possible solution would be to check &amp;quot;FailSafe Tunnels&amp;quot; from Setup &amp;amp;gt; Net&amp;amp;amp;Wifi page on the user interface.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &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;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cj</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Firmware_Flash_Vera2</id>
		<title>Firmware Flash Vera2</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Firmware_Flash_Vera2"/>
				<updated>2012-02-16T10:05:59Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: /* Prerequisites */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:User Instructions]]&lt;br /&gt;
[[Category:How To]]&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
*&amp;lt;span style=&amp;quot;color:#FF0000;&amp;quot;&amp;gt;YOU NEED TO FOLLOW THIS TUTORIAL ONLY IF YOUR VERA2 UNIT IS NOT BOOTING ANYMORE, THIS MEANS THAT WHILE BEING CONNECTED TO THE INTERNET/YOUR NETWORK ON THE '''ETH1 PORT''', THE POWER LED IS ORANGE AND OTHER LEDS ARE GREEN WITH THE EXCEPTION OF ETH1 and ZWAVE WHICH ARE OFF 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;
&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.&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 networking interfaces before continuing.&lt;br /&gt;
NOTE: Failure to disable your wireless network before continuing could result in an unusable unit.&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;
== Files to download before you start the restoration process ==&lt;br /&gt;
&lt;br /&gt;
* [http://download1.mios.com/firmware/vera2_upgrade_tool.zip Vera2 Firmware Flash Tool]&lt;br /&gt;
* [http://download1.mios.com/firmware/micasaverde_backfire_v8.bin Vera2 Firmware]&lt;br /&gt;
&lt;br /&gt;
== Setup your computer to connect to Vera 2 ==&lt;br /&gt;
&lt;br /&gt;
* Computer IP: 192.168.81.xxx (not 1)&lt;br /&gt;
* Subnet Mask: 255.255.255.0&lt;br /&gt;
* Default Gateway: 192.168.81.1&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 ETH2 port.&lt;br /&gt;
# Unplug Vera from the power cord.&lt;br /&gt;
# Holding down Vera's reset button (not the small one, the one resembling the Z-Wave button with no label in the middle of the unit), whilst pluging in the power cord back in. Wait about 5s after you plugged the power cord back with the reset button pressed. When releasing the reset button, power LED should be blinking.&lt;br /&gt;
# If the power LED is not blinking, turn Vera off and try again''' (PLEASE doublecheck FIRST!!! The LED blinking can be very faint!).'''&lt;br /&gt;
# Start [http://download1.mios.com/firmware/vera2_upgrade_tool.zip Vera2 Firmware Flash 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, and click on &amp;quot;EraseNormal&amp;quot; dropdown box.&lt;br /&gt;
# Click the [Files] button.&lt;br /&gt;
# Download the file: [http://download1.mios.com/firmware/micasaverde_backfire_v8.bin Vera2 Firmware] and save it on your computer.&lt;br /&gt;
# Select the file [http://download1.mios.com/firmware/micasaverde_backfire_v8.bin Vera2 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 back to DHCP (Automatically Configure) and Vera will assign an IP like 192.168.81.xxx&lt;br /&gt;
# Please wait until Vera ''automatically'' reboots and the ETH1 light starts double blinking or it's solid (this can take 10 to 30 minutes).&lt;br /&gt;
# When you see the ETH1 double blinking, you are done.&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 ETH2 port of Vera, open http://192.168.81.1 and you will see the Wizard to continue setup your Vera.&lt;br /&gt;
* If you already connected the ETH1 (Wan) cable coming from your main Router/ADSL modem, the ETH1 light on front will go solid, meaning Vera is connected to the internet.&lt;br /&gt;
&lt;br /&gt;
Dont forget to update your Vera to the latest available firmware.&lt;br /&gt;
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;
http://download1.mios.com/firmware/micasaverde_backfire_v8.bin Vera2 Firmware&amp;lt;br&amp;gt;&lt;br /&gt;
http://download1.mios.com/firmware/vera2_upgrade_tool.zip Vera2 Firmware Flash Tool&amp;lt;br&amp;gt;&lt;br /&gt;
http://www.simplehelp.net/2008/09/10/how-to-install-a-tftp-client-in-windows-vista/&lt;/div&gt;</summary>
		<author><name>Cj</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Firmware_Flash_Vera3</id>
		<title>Firmware Flash Vera3</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Firmware_Flash_Vera3"/>
				<updated>2012-01-24T16:47:16Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: /* Begin the process for flashing the firmware */&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 VERA3 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;
== Files to download before you start the restoration process  ==&lt;br /&gt;
&lt;br /&gt;
*[http://download.mios.com/firmware/vera3_recovery_tool.zip Vera3 Firmware Recovery Tool] &lt;br /&gt;
*[http://download.mios.com/firmware/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware]&lt;br /&gt;
&lt;br /&gt;
== &amp;amp;nbsp;Setup your computer to connect to Vera 3 &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 '''LAN1 port'''. &amp;amp;nbsp; &lt;br /&gt;
#Unplug Vera from the power cord. &lt;br /&gt;
#Holding down Vera's '''ZWAVE button''' whilst pluging in the power cord back in. Wait about 3s after you plugged the power cord back with the ZWave button pressed. &amp;amp;lt;br&amp;amp;gt;When releasing the ZWave button, '''USB1 LED''' should be blinking. &amp;amp;nbsp; &lt;br /&gt;
#If the '''USB1 LED''' is not blinking, turn Vera off and try again'''(PLEASE doublecheck FIRST!!! The LED blinking can be very faint!).''' &lt;br /&gt;
#Start [http://download.mios.com/firmware/vera3_recovery_tool.zip Vera3 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;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/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware] and save it on your computer. &lt;br /&gt;
#Select the file [http://download.mios.com/firmware/latest-vera3-recovery-firmware.bin Vera3 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 back to DHCP (Automatically Configure) and Vera will assign an IP like 192.168.81.xxx &lt;br /&gt;
#Please wait until Vera ''automatically'' reboots and the '''WAN 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 ZWave 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 LAN1 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 connected the WAN cable coming from your main Router/ADSL modem, the WAN 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/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware&amp;lt;br&amp;gt;http://download.mios.com/firmware/vera3_upgrade_tool.zip Vera3 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>Cj</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-01-21T09:01:18Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: /* UI5: 1.5.276 - January 20, 2012 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== UI5 : 1.5.276 - January 20, 2012 - beta ==&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], [http://bugs.micasaverde.com/view.php?id=1957 1957] &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] &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] and [http://bugs.micasaverde.com/view.php?id=2079 2079] &lt;br /&gt;
#fix creation of IR devices in UI5 &lt;br /&gt;
#mantis [http://bugs.micasaverde.com/view.php?id=2054 2054] &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] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2011 #2011] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2008 #2008] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2024 #2024] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2012 #2012] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1970 #1970] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1686 #1686] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1934 #1934] &lt;br /&gt;
#Fixed [http://bugs.micasaverde.com/view.php?id=2021 #2021] &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] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2033 #2033] &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] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2005 #2005] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1953 #1953] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=1889 #1889] &lt;br /&gt;
#Added Alerts tooltip &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2075 #2075] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2015 #2015] &lt;br /&gt;
#Mantis [http://bugs.micasaverde.com/view.php?id=2004 #2004] &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;
[[Category:Glossary]]&lt;/div&gt;</summary>
		<author><name>Cj</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Firmware_Flash_Vera3</id>
		<title>Firmware Flash Vera3</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Firmware_Flash_Vera3"/>
				<updated>2012-01-16T15:25:55Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: &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 VERA3 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;
== Files to download before you start the restoration process  ==&lt;br /&gt;
&lt;br /&gt;
*[http://download.mios.com/firmware/vera3_recovery_tool.zip Vera3 Firmware Recovery Tool] &lt;br /&gt;
*[http://download.mios.com/firmware/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware]&lt;br /&gt;
&lt;br /&gt;
== &amp;amp;nbsp;Setup your computer to connect to Vera 3 &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 '''LAN1 port'''. &amp;amp;nbsp; &lt;br /&gt;
#Unplug Vera from the power cord. &lt;br /&gt;
#Holding down Vera's '''ZWAVE button''' whilst pluging in the power cord back in. Wait about 3s after you plugged the power cord back with the ZWave button pressed. &amp;amp;lt;br&amp;amp;gt;When releasing the ZWave button, '''USB1 LED''' should be blinking. &amp;amp;nbsp; &lt;br /&gt;
#If the '''USB1 LED''' is not blinking, turn Vera off and try again'''(PLEASE doublecheck FIRST!!! The LED blinking can be very faint!).''' &lt;br /&gt;
#Start [http://download.mios.com/firmware/vera3_recovery_tool.zip Vera3 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, and click on &amp;quot;EraseNormal&amp;quot; dropdown box. &lt;br /&gt;
#Click the [Files] button. &lt;br /&gt;
#Download the file: [http://download.mios.com/firmware/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware] and save it on your computer. &lt;br /&gt;
#Select the file [http://download.mios.com/firmware/latest-vera3-recovery-firmware.bin Vera3 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 back to DHCP (Automatically Configure) and Vera will assign an IP like 192.168.81.xxx &lt;br /&gt;
#Please wait until Vera ''automatically'' reboots and the '''WAN 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 WAN led double blinking, 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 LAN1 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 connected the WAN cable coming from your main Router/ADSL modem, the WAN 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/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware&amp;lt;br&amp;gt;http://download.mios.com/firmware/vera3_upgrade_tool.zip Vera3 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>Cj</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Firmware_Flash_Vera3</id>
		<title>Firmware Flash Vera3</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Firmware_Flash_Vera3"/>
				<updated>2012-01-16T15:24:55Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: &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 VERA3 UNIT IS NOT BOOTING ANYMORE, THIS MEANS THAT WHILE BEING CONNECTED TO THE INTERNET FOR MORE THAN 20 MINUTES THE POWER LED IS BLINKING GREEN/ORANGE &amp;amp;nbsp;AND NO OTHER LEDS ARE LIGHT UP/BLINKING!&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;
== Files to download before you start the restoration process  ==&lt;br /&gt;
&lt;br /&gt;
*[http://download.mios.com/firmware/vera3_recovery_tool.zip Vera3 Firmware Recovery Tool] &lt;br /&gt;
*[http://download.mios.com/firmware/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware]&lt;br /&gt;
&lt;br /&gt;
== &amp;amp;nbsp;Setup your computer to connect to Vera 3 &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 '''LAN1 port'''. &amp;amp;nbsp; &lt;br /&gt;
#Unplug Vera from the power cord. &lt;br /&gt;
#Holding down Vera's '''ZWAVE button''' whilst pluging in the power cord back in. Wait about 3s after you plugged the power cord back with the ZWave button pressed. &amp;amp;lt;br&amp;amp;gt;When releasing the ZWave button, '''USB1 LED''' should be blinking. &amp;amp;nbsp; &lt;br /&gt;
#If the '''USB1 LED''' is not blinking, turn Vera off and try again'''(PLEASE doublecheck FIRST!!! The LED blinking can be very faint!).''' &lt;br /&gt;
#Start [http://download.mios.com/firmware/vera3_recovery_tool.zip Vera3 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, and click on &amp;quot;EraseNormal&amp;quot; dropdown box. &lt;br /&gt;
#Click the [Files] button. &lt;br /&gt;
#Download the file: [http://download.mios.com/firmware/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware] and save it on your computer. &lt;br /&gt;
#Select the file [http://download.mios.com/firmware/latest-vera3-recovery-firmware.bin Vera3 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 back to DHCP (Automatically Configure) and Vera will assign an IP like 192.168.81.xxx &lt;br /&gt;
#Please wait until Vera ''automatically'' reboots and the '''WAN 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 WAN led double blinking, 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 LAN1 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 connected the WAN cable coming from your main Router/ADSL modem, the WAN 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/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware&amp;lt;br&amp;gt;http://download.mios.com/firmware/vera3_upgrade_tool.zip Vera3 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>Cj</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Firmware_Flash_Vera3</id>
		<title>Firmware Flash Vera3</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Firmware_Flash_Vera3"/>
				<updated>2012-01-16T15:18:15Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: Created page with &amp;quot;&amp;lt;br&amp;gt;   == Prerequisites  ==  *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 co...&amp;quot;&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;
*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.&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;
== Files to download before you start the restoration process  ==&lt;br /&gt;
&lt;br /&gt;
*[http://download.mios.com/firmware/vera3_recovery_tool.zip Vera3 Firmware Recovery Tool] &lt;br /&gt;
*[http://download.mios.com/firmware/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware]&lt;br /&gt;
&lt;br /&gt;
== &amp;amp;nbsp;Setup your computer to connect to Vera 3 &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 '''LAN1 port'''. &amp;amp;nbsp; &lt;br /&gt;
#Unplug Vera from the power cord. &lt;br /&gt;
#Holding down Vera's '''ZWAVE button''' whilst pluging in the power cord back in. Wait about 3s after you plugged the power cord back with the ZWave button pressed. &amp;amp;lt;br&amp;amp;gt;When releasing the ZWave button, '''USB1 LED''' should be blinking. &amp;amp;nbsp; &lt;br /&gt;
#If the '''USB1 LED''' is not blinking, turn Vera off and try again'''(PLEASE doublecheck FIRST!!! The LED blinking can be very faint!).''' &lt;br /&gt;
#Start [http://download.mios.com/firmware/vera3_recovery_tool.zip Vera3 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, and click on &amp;quot;EraseNormal&amp;quot; dropdown box. &lt;br /&gt;
#Click the [Files] button. &lt;br /&gt;
#Download the file: [http://download.mios.com/firmware/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware] and save it on your computer. &lt;br /&gt;
#Select the file [http://download.mios.com/firmware/latest-vera3-recovery-firmware.bin Vera3 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 back to DHCP (Automatically Configure) and Vera will assign an IP like 192.168.81.xxx &lt;br /&gt;
#Please wait until Vera ''automatically'' reboots and the '''WAN 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 WAN led double blinking, 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 LAN1 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 connected the WAN cable coming from your main Router/ADSL modem, the WAN 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/latest-vera3-recovery-firmware.bin Vera3 Recovery Firmware&amp;lt;br&amp;gt;http://download.mios.com/firmware/vera3_upgrade_tool.zip Vera3 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>Cj</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-01-09T16:20:26Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: /* 1.1.319 and 1.0.994 - April 21, 2010 - final UI2 and UI3 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== UI5 : 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 : 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 : 1.0.994 and UI3 : 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;
[[Category:Glossary]]&lt;/div&gt;</summary>
		<author><name>Cj</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-01-09T16:19:18Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: /* 1.1.1338 - July 29, 2011 - RC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== UI5 : 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 : 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;
== 1.1.319 and 1.0.994 - 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;
[[Category:Glossary]]&lt;/div&gt;</summary>
		<author><name>Cj</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-01-09T16:19:02Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: /* 1.5.255 (Vera2) &amp;amp;amp; 1.5.254 (Vera3) - December 23, 2011 - beta */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== UI5 : 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;
== 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;
== 1.1.319 and 1.0.994 - 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;
[[Category:Glossary]]&lt;/div&gt;</summary>
		<author><name>Cj</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Install_NTP</id>
		<title>Install NTP</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Install_NTP"/>
				<updated>2012-01-09T11:55:06Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:User Instructions]]&lt;br /&gt;
[[Category:How To]]&lt;br /&gt;
'''HOWTO  install NTP on your Vera.'''&lt;br /&gt;
&lt;br /&gt;
==Prerequisites==&lt;br /&gt;
* Vera 2 hardware&lt;br /&gt;
* Root acces to your OpenWRT&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
Heres a short manual on how to install NTP to your Vera 2. Out of the box your new Vera 2 does not use NTP (Network Time Protocol) for its timer updates, but uses the less commonly used Rdate. However, NTP support and personalisation can be added after market. Here is how:&amp;lt;br&amp;gt;&lt;br /&gt;
Note: &lt;br /&gt;
&amp;lt;br&amp;gt;1) this is not fully supported by MiCasaVerde firmware and you should also leave rdate installed and configured&lt;br /&gt;
&amp;lt;br&amp;gt;2) this is not required if everything is working fine with your Vera unit&lt;br /&gt;
&amp;lt;br&amp;gt;3) if your unit time is with X hours (or X*30minutes for Australia) before/after your correct time, the issue is related to your TIMEZONE and not to the sync time client. Check if your timezone is correctly stored in /etc/TZ.&lt;br /&gt;
&lt;br /&gt;
==Instructions==&lt;br /&gt;
01.Gain ssh access to your vera2 (root) and use the password that is provided on the bottom of your vera2. More info on how to can be found here:[http://wiki.micasaverde.com/index.php/Logon_Vera_SSH]&amp;lt;br /&amp;gt;&lt;br /&gt;
02. Then run the following commands:&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 ''opkg update''&lt;br /&gt;
&lt;br /&gt;
 ''opkg install ntpd''&lt;br /&gt;
&lt;br /&gt;
 ''/etc/init.d/ntpd enable''&lt;br /&gt;
&lt;br /&gt;
 ''/etc/init.d/ntpd start''&lt;br /&gt;
&lt;br /&gt;
03. To edit the ntp.conf file without using and editor like VI use the echo command like this;&amp;lt;br /&amp;gt;&lt;br /&gt;
 ''echo &amp;quot;server &amp;quot;your servers ip or dns name&amp;quot; prefer&amp;quot; &amp;gt;&amp;gt; /etc/ntp.conf''&lt;br /&gt;
&lt;br /&gt;
04. (important to remove ONLY the quotes before and after your and name) To view the current entries in your ntp.conf type:&amp;lt;br /&amp;gt;&lt;br /&gt;
 ''cat /etc/ntp.conf''&lt;br /&gt;
&lt;br /&gt;
05. To remove obsolete IP's or server names from the ntp.conf files type:&amp;lt;br /&amp;gt;&lt;br /&gt;
 ''cat /etc/ntp.conf | grep -v &amp;quot;lines to remove&amp;quot; &amp;gt; /etc/ntp.conf.new''&lt;br /&gt;
&lt;br /&gt;
06. Check the newly created file using this command:&amp;lt;br /&amp;gt;&lt;br /&gt;
 ''cat /etc/ntp.conf.new''&lt;br /&gt;
&lt;br /&gt;
07. Overwrite the existing file if all checks out using:&amp;lt;br /&amp;gt;&lt;br /&gt;
 ''mv /etc/ntp.conf.new /etc/ntp.conf''&lt;br /&gt;
&lt;br /&gt;
08. Double check the newly created ntp.conf file by typing:&amp;lt;br /&amp;gt;&lt;br /&gt;
 ''cat /etc/ntp.conf''&lt;br /&gt;
&lt;br /&gt;
09. Restart the NTP service&amp;lt;br /&amp;gt;&lt;br /&gt;
 ''/etc/init.d/ntpd restart''&lt;br /&gt;
&lt;br /&gt;
10. OR reboot/powercycle your vera&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
please find more info here: http://forum.micasaverde.com/index.php?topic=5591.0&amp;lt;br /&amp;gt;&lt;br /&gt;
For logging on to your Vera using SSH read this [http://wiki.micasaverde.com/index.php/Logon_Vera_SSH]&lt;/div&gt;</summary>
		<author><name>Cj</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Update_Firmware</id>
		<title>Update Firmware</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Update_Firmware"/>
				<updated>2011-07-16T12:05:13Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How To]]&lt;br /&gt;
&lt;br /&gt;
'''How to update Vera to a new firmware'''&lt;br /&gt;
&lt;br /&gt;
==Prerequisites==&lt;br /&gt;
&lt;br /&gt;
* Vera hardware (either Vera 1 or Vera 2)&lt;br /&gt;
* Internetconnection&lt;br /&gt;
* Reliable powersource (do NOT update Vera while on battery operation, provide mains power)&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
Your Vera box can be upgraded with software from MiOS. You can either be asked to upgrade automatically or you can decide to do a manual upgrade at any point in time.&lt;br /&gt;
&lt;br /&gt;
===General Notice===&lt;br /&gt;
&lt;br /&gt;
When installing the firmware, make sure you have the login to your vera system set to standard (no http login needed) via the remote control server.&lt;br /&gt;
&lt;br /&gt;
If you have chosen http authentication &amp;quot;YES&amp;quot; from the https://cp.mios.com site (settings section) you will get a pop up where you should enter username and password. &lt;br /&gt;
Currently there is an issue that this pop-up disappears within 10 seconds in some browswers. Most users will therefore be unable to provide their username and password.&lt;br /&gt;
&lt;br /&gt;
The current workaround is to disable the authentication, upgrade and then re-enable the authentication from cp.mios.com after the update was succesfull.&lt;br /&gt;
&lt;br /&gt;
===Create a backup!===&lt;br /&gt;
&lt;br /&gt;
You can create and restore backup form the advanced settings section in your toolbox. After double clicking that, go to the &amp;quot;BACKUP&amp;quot; tab.&lt;br /&gt;
If you check the &amp;quot;Backup my configuration at MiOS.com&amp;quot; option, Vera will automatically backup your configuration online each night so that if Vera breaks and we send you another one, you can go to MiOS.com, download the last backup file, and restore it so you don't need to setup Vera again. &lt;br /&gt;
MiOS.com keeps 5 daily backups, so if you somehow mess up Vera's setup, you can also restore Vera to a prior backup.&lt;br /&gt;
&lt;br /&gt;
To manually backup Vera, click 'Create Backup'. Vera will give you a backup file to save to your PC.&lt;br /&gt;
&lt;br /&gt;
To 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;
You can also click 'Restore to Factory Defaults' to reset Vera's configuration just like it was when Vera first arrived.&lt;br /&gt;
&lt;br /&gt;
==Manual updates==&lt;br /&gt;
&lt;br /&gt;
'''Manually upgrading the firmware''' &lt;br /&gt;
&lt;br /&gt;
To manually load a firmware to your Vera, click the advanced icon in the toolbox section of your Vera's UI.&amp;lt;br&amp;gt;&lt;br /&gt;
From there select the tab &amp;quot;FIRMWARE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Vera automatically checks connectivity to the download server (download1.mios.com or download2.mios.com).&amp;lt;br&amp;gt;&lt;br /&gt;
Then Vera shows you the current firmware version and provides info if this firmware is up to date or not.&lt;br /&gt;
&lt;br /&gt;
You can upgrade your Vera by dropping the specifick download URL for your Vera in the &amp;quot;URL for MiOS custom firmware&amp;quot; box.&amp;lt;br&amp;gt;&lt;br /&gt;
Please contact MiOS for the correct URL first.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Automatic Updates===&lt;br /&gt;
&lt;br /&gt;
*NOTE: Updating a Vera 1 to the latest official firmware requires an intermediate step. Always consult MiOS tech support when attempting to upgrade your Vera 1 to the latest firmware when your current firmware is older than 1.1.1062.&lt;br /&gt;
&lt;br /&gt;
See also:&lt;br /&gt;
http://wiki.micasaverde.com/index.php/Vera1_To_Vera2_Migration&lt;br /&gt;
&lt;br /&gt;
You can automatically update your Vera by accepting the pop-up notice that a new firmware is available, asking you if you want to upgrade.&amp;lt;br&amp;gt;&lt;br /&gt;
Also you can go to this url:&amp;lt;br&amp;gt;&lt;br /&gt;
http://micasaverde.com/vera2&lt;br /&gt;
&lt;br /&gt;
From there you can follow the steps to automatically update your Vera to the latest official firmware release.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
* Vera 1 upgrading to 1.1.1245 directly from a version older than 1.1.1062 does not work. Please contact tech support at MiOS and ask them to help you install intermediate release 1.1.1062.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Sometimes an upgrade makes Vera go back to her default locale settings (USA). For users in the EU their devices do not work anymore. As for the locale issue mentioned in this thread, please refer to: http://forum.mios.com/index.php?topic=6652.0&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
please find more info here:&amp;lt;br&amp;gt;&lt;br /&gt;
Update url for your Vera | http://micasaverde.com/vera2&amp;lt;br&amp;gt;&lt;br /&gt;
Recovery procedure :&amp;lt;br&amp;gt;&lt;br /&gt;
- for Vera 1 hardware | http://wiki.micasaverde.com/index.php/Firmware_Flash_Vera_1&amp;lt;br&amp;gt;&lt;br /&gt;
- for Vera 2 hardware | http://wiki.micasaverde.com/index.php/Firmware_Flash_Vera2&amp;lt;br&amp;gt;&lt;br /&gt;
Note: To be done only if you vera unit doesn't boot anymore!!! See in each link how the leds should blink if this is the case !!!&lt;br /&gt;
&lt;br /&gt;
Related forum threads | http://forum.mios.com/index.php?topic=6652.0&amp;lt;br&amp;gt;&lt;br /&gt;
Related forum threads | http://forum.mios.com/index.php?topic=4423.0&lt;/div&gt;</summary>
		<author><name>Cj</name></author>	</entry>

	<entry>
		<id>http://wiki.mios.com/index.php/Update_Firmware</id>
		<title>Update Firmware</title>
		<link rel="alternate" type="text/html" href="http://wiki.mios.com/index.php/Update_Firmware"/>
				<updated>2011-07-16T12:01:00Z</updated>
		
		<summary type="html">&lt;p&gt;Cj: /* Advanced manual upgrade */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How To]]&lt;br /&gt;
&lt;br /&gt;
'''How to update Vera to a new firmware'''&lt;br /&gt;
&lt;br /&gt;
==Prerequisites==&lt;br /&gt;
&lt;br /&gt;
* Vera hardware (either Vera 1 or Vera 2)&lt;br /&gt;
* Internetconnection&lt;br /&gt;
* Reliable powersource (do NOT update Vera while on battery operation, provide mains power)&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
Your Vera box can be upgraded with software from MiOS. You can either be asked to upgrade automatically or you can decide to do a manual upgrade at any point in time.&lt;br /&gt;
&lt;br /&gt;
===General Notice===&lt;br /&gt;
&lt;br /&gt;
When installing the firmware, make sure you have the login to your vera system set to standard (no http login needed) via the remote control server.&lt;br /&gt;
&lt;br /&gt;
If you have chosen http authentication &amp;quot;YES&amp;quot; from the https://cp.mios.com site (settings section) you will get a pop up where you should enter username and password. &lt;br /&gt;
Currently there is an issue that this pop-up disappears within 10 seconds in some browswers. Most users will therefore be unable to provide their username and password.&lt;br /&gt;
&lt;br /&gt;
The current workaround is to disable the authentication, upgrade and then re-enable the authentication from cp.mios.com after the update was succesfull.&lt;br /&gt;
&lt;br /&gt;
===Create a backup!===&lt;br /&gt;
&lt;br /&gt;
You can create and restore backup form the advanced settings section in your toolbox. After double clicking that, go to the &amp;quot;BACKUP&amp;quot; tab.&lt;br /&gt;
If you check the &amp;quot;Backup my configuration at MiOS.com&amp;quot; option, Vera will automatically backup your configuration online each night so that if Vera breaks and we send you another one, you can go to MiOS.com, download the last backup file, and restore it so you don't need to setup Vera again. &lt;br /&gt;
MiOS.com keeps 5 daily backups, so if you somehow mess up Vera's setup, you can also restore Vera to a prior backup.&lt;br /&gt;
&lt;br /&gt;
To manually backup Vera, click 'Create Backup'. Vera will give you a backup file to save to your PC.&lt;br /&gt;
&lt;br /&gt;
To 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;
You can also click 'Restore to Factory Defaults' to reset Vera's configuration just like it was when Vera first arrived.&lt;br /&gt;
&lt;br /&gt;
==Manual updates==&lt;br /&gt;
&lt;br /&gt;
'''Manually upgrading the firmware''' &lt;br /&gt;
&lt;br /&gt;
To manually load a firmware to your Vera, click the advanced icon in the toolbox section of your Vera's UI.&amp;lt;br&amp;gt;&lt;br /&gt;
From there select the tab &amp;quot;FIRMWARE&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Vera automatically checks connectivity to the download server (download1.mios.com or download2.mios.com).&amp;lt;br&amp;gt;&lt;br /&gt;
Then Vera shows you the current firmware version and provides info if this firmware is up to date or not.&lt;br /&gt;
&lt;br /&gt;
You can upgrade your Vera by dropping the specifick download URL for your Vera in the &amp;quot;URL for MiOS custom firmware&amp;quot; box.&amp;lt;br&amp;gt;&lt;br /&gt;
Please contact MiOS for the correct URL first.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Automatic Updates===&lt;br /&gt;
&lt;br /&gt;
*NOTE: Updating a Vera 1 to the latest official firmware requires an intermediate step. Always consult MiOS tech support when attempting to upgrade your Vera 1 to the latest firmware when your current firmware is older than 1.1.1062.&lt;br /&gt;
&lt;br /&gt;
See also:&lt;br /&gt;
http://wiki.micasaverde.com/index.php/Vera1_To_Vera2_Migration&lt;br /&gt;
&lt;br /&gt;
You can automatically update your Vera by accepting the pop-up notice that a new firmware is available, asking you if you want to upgrade.&amp;lt;br&amp;gt;&lt;br /&gt;
Also you can go to this url:&amp;lt;br&amp;gt;&lt;br /&gt;
http://micasaverde.com/vera2&lt;br /&gt;
&lt;br /&gt;
From there you can follow the steps to automatically update your Vera to the latest official firmware release.&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
* Vera 1 upgrading to 1.1.1245 directly from a version older than 1.1.1062 does not work. Please contact tech support at MiOS and ask them to help you install intermediate release 1.1.1062.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Sometimes an upgrade makes Vera go back to her default locale settings (USA). For users in the EU their devices do not work anymore. As for the locale issue mentioned in this thread, please refer to: http://forum.mios.com/index.php?topic=6652.0&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
please find more info here:&amp;lt;br&amp;gt;&lt;br /&gt;
Update url for your Vera | http://micasaverde.com/vera2&amp;lt;br&amp;gt;&lt;br /&gt;
Specifick update info for Vera 1 hardware | http://wiki.micasaverde.com/index.php/Firmware_Flash_Vera_1&amp;lt;br&amp;gt;&lt;br /&gt;
Specifiak update info for Vera 1 hardware | http://wiki.micasaverde.com/index.php/Firmware_Flash_Vera2&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Related forum threads | http://forum.mios.com/index.php?topic=6652.0&amp;lt;br&amp;gt;&lt;br /&gt;
Related forum threads | http://forum.mios.com/index.php?topic=4423.0&lt;/div&gt;</summary>
		<author><name>Cj</name></author>	</entry>

	</feed>