<?xml version="1.0"?>
<rss version="2.0"><channel><title>Update 5.120 Latest Topics</title><link>https://forum.fibaro.com/forum/1393-update-5120/</link><description>Update 5.120 Latest Topics</description><language>en</language><item><title>About tls options of mqtt.Client</title><link>https://forum.fibaro.com/topic/62116-about-tls-options-of-mqttclient/</link><description><![CDATA[<p>
	Hi there,
</p>

<p>
	 
</p>

<p>
	I need to connect to AWS MQTT server with tls 1.2 and need to put 3 certificate files, but MQTT always return error code "1".
</p>

<p>
	Here is my code:
</p>

<p>
	 
</p>

<p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this code.</p> 

<p>
	 
</p>

<p>
	My questions are:
</p>

<ol>
	<li>
		AWS wants me to use 3 keys to connect MQTT, basically I should use contents of AmazonRootCA1.pem, private.pem.key and certificate.pem.crt key files, but in tls.options I can see only clientCertificate and certificateAuthority, that made me confused.
	</li>
	<li>
		When I connect to MQTT with mqtts, I got only error code "1". If code 1 meads " incorrect protocol version", what is the version  of TLS version in QuickAPP Lua?
	</li>
</ol>

<p>
	 
</p>

<p>
	Is any one have same issue?
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">62116</guid><pubDate>Wed, 05 Oct 2022 08:35:59 +0000</pubDate></item><item><title>energy panel - photovoltaic battery</title><link>https://forum.fibaro.com/topic/62113-energy-panel-photovoltaic-battery/</link><description><![CDATA[<p>
	<font>I would welcome the ability to set battery storage in the power panel. Many power plants have this storage and it cannot be set up in Fibaro. I would quite welcome the possibility in this panel to set the battery charging and discharging and thus have an overview of the energy complete. Thank you</font>
</p>
]]></description><guid isPermaLink="false">62113</guid><pubDate>Tue, 04 Oct 2022 19:52:06 +0000</pubDate></item><item><title>Zipato mini Rfid</title><link>https://forum.fibaro.com/topic/61892-zipato-mini-rfid/</link><description><![CDATA[<p>
	Since the update, the advanced tab is no more accessible
</p>

<p>
	<p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this attachment.</p> <p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this attachment.</p> 
</p>
]]></description><guid isPermaLink="false">61892</guid><pubDate>Sat, 17 Sep 2022 11:03:14 +0000</pubDate></item><item><title>Eurotronics Spirit z-wave Plus</title><link>https://forum.fibaro.com/topic/62036-eurotronics-spirit-z-wave-plus/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	 
</p>

<p>
	the implemented template is not correct
</p>

<p>
	Parameter 8 for external Temp must be 128 and not 1280
</p>

<p>
	 
</p>

<p>
	You can not save this value (1280)
</p>

<p>
	 
</p>

<p>
	Please change it
</p>
]]></description><guid isPermaLink="false">62036</guid><pubDate>Thu, 29 Sep 2022 16:11:01 +0000</pubDate></item><item><title>Roller Shutter 2</title><link>https://forum.fibaro.com/topic/62034-roller-shutter-2/</link><description><![CDATA[<p>
	What is the difference between :
</p>

<p>
	 
</p>

<ul>
	<li>
		Roller Blind Mode, without positioning
	</li>
	<li>
		Roller Blind Mode, with positioning
	</li>
</ul>

<p>
	 
</p>

<p>
	What is the question mark in the icon (Yubii) ? This is my first time seeing that.
</p>

<p>
	 
</p>

<p>
	<p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this image.</p> /monthly_2022_09/image.jpeg.84eda127b290ddd19603c960c56a68d3.jpeg" />
</p>
]]></description><guid isPermaLink="false">62034</guid><pubDate>Thu, 29 Sep 2022 15:05:07 +0000</pubDate></item><item><title>Looking for help to convert HC2 VD into HC3 QA</title><link>https://forum.fibaro.com/topic/63190-looking-for-help-to-convert-hc2-vd-into-hc3-qa/</link><description><![CDATA[<p>
	Good afternoon,
</p>

<p>
	I would like to convert an HC2 VD to an HC3 QA but am running into some communication problems with regard to net.http
</p>

<p>
	 
</p>

<p>
	The code is not complete yet, but now I get an error in the http request.
</p>

<p>
	 
</p>

<p>
	-- Mijn Code<br />
	function QuickApp:onInit()<br />
	    self:debug("onInit")<br />
	    ipaddr = self:getVariable("IPAddress")<br />
	    tcpport = self:getVariable("TCPPort")
</p>

<p>
	    Var1 = hub.getGlobalVariable("Deur_Voordeur")<br />
	    if Var1 == "Open" then<br />
	        self:updateView("Label_1", "text", "Voordeur is Open")<br />
	        else<br />
	        self:updateView("Label_1", "text", "Voordeur is Dicht")<br />
	    end    
</p>

<p>
	    Var2 = hub.getGlobalVariable("Deur_Garage")<br />
	    if Var2 == "Open" then<br />
	        self:updateView("Label_2", "text", "Gagragedeur is Open")<br />
	        else<br />
	        self:updateView("Label_2", "text", "Gagragedeur is Dicht")<br />
	    end   
</p>

<p>
	    Var3 = hub.getGlobalVariable("Deur_Keuken")<br />
	    if Var3 == "Open" then<br />
	        self:updateView("Label_3", "text", "Keukendeur is Open")<br />
	        else<br />
	        self:updateView("Label_3", "text", "Keukendeur is Dicht")<br />
	    end  <br />
	 <br />
	    Var4 = hub.getGlobalVariable("Deur_Bijkeuken")<br />
	    if Var4 == "Open" then<br />
	        self:updateView("Label_4", "text", "Bijkeukendeur is Open")<br />
	        else<br />
	        self:updateView("Label_4", "text", "Bijkeukendeur is Dicht")<br />
	    end 
</p>

<p>
	    Var5 = hub.getGlobalVariable("Raam_HfdSlpKmr")<br />
	    if Var5 == "Open" then<br />
	        self:updateView("Label_5", "text", "HfdSlpKmr is Open")<br />
	        else<br />
	        self:updateView("Label_5", "text", "HfdSlpKmr is Dicht")<br />
	    end 
</p>

<p>
	    Var6 = hub.getGlobalVariable("Raam_KlnSlpKmr")<br />
	    if Var6 == "Open" then<br />
	        self:updateView("Label_6", "text", "KlnSlpKmr is Open")<br />
	        else<br />
	        self:updateView("Label_6", "text", "KlnSlpKmr is Dicht")<br />
	    end 
</p>

<p>
	    Var7 = hub.getGlobalVariable("Deur_GrtSlpKmr")<br />
	    if Var7 == "Open" then<br />
	        self:updateView("Label_7", "text", "GrtSlpKmr is Open")<br />
	        else<br />
	       self:updateView("Label_7", "text", "GrtSlpKmr is Dicht")<br />
	    end 
</p>

<p>
	    Var8 = hub.getGlobalVariable("Raam_CompKmr")<br />
	    if Var8 == "Open" then<br />
	        self:updateView("Label_8", "text", "CompKmr is Open")<br />
	        else<br />
	        self:updateView("Label_8", "text", "CompKmr is Dicht")<br />
	    end<br />
	 <br />
	end<br />
	--===========================================================================<br />
	-- Code for 1 relais --<br />
	function QuickApp:btnUpdate()<br />
	  <br />
	    HTTP = net.Fhttp(self.ipaddr, self.tcpport)<br />
	    HTTP:setBasicAuthentication("Uname", "Passwd") 
</p>

<p>
	    function getXML(data,name)  <br />
	    return data:match("&lt;"..name.."&gt;(.-)&lt;/"..name.."&gt;")<br />
	    end
</p>

<p>
	    response, status, result = HTTP:GET("/status.xml")<br />
	 <br />
	    fibaro:debug("Result = "..result)<br />
	    fibaro:debug("Status = "..status)<br />
	    fibaro:debug("response = "..response)
</p>

<p>
	    if ((result == 0) and (status == "200")) then  
</p>

<p>
	         local zone1 = getXML(response, "relay1")<br />
	         fibaro:debug  ("relay1 waarde = "..zone1)  <br />
	            if (zone1 == "1") then    <br />
	               -- relay1 = ("Open")  <br />
	               self:updateView("Label_1", "text", "Voordeur is Open")<br />
	            elseif (zone1 == "0") then    <br />
	                --relay1 = ("Closed")     <br />
	                self:updateView("Label_1", "text", "Voordeur is Dicht")<br />
	            end
</p>

<p>
	     end
</p>

<p>
	-- end<br />
	--==========================================================================
</p>

<p>
	<br />
	-- function QuickApp:btn1On()<br />
	 self:updateView("Label_1", "text", "Voordeur is Open")<br />
	 -- hub.setGlobalVariable("Deur_Voordeur", "Open")<br />
	end
</p>

<p>
	function QuickApp:btn2On()<br />
	 self:updateView("Label_2", "text", "Gagragedeur is open")<br />
	end
</p>

<p>
	function QuickApp:btn3On()<br />
	 self:updateView("Label_3", "text", "Keukendeur is Open")<br />
	end
</p>

<p>
	function QuickApp:btn4On()<br />
	self:updateView("Label_4", "text", "Bijkeuken is Open")<br />
	end
</p>

<p>
	function QuickApp:btn5On()<br />
	self:updateView("Label_5", "text", "HfdSlpKmr is Open")<br />
	end
</p>

<p>
	function QuickApp:btn6On()<br />
	self:updateView("Label_6", "text", "KlnSlpKmr is Open")<br />
	end
</p>

<p>
	function QuickApp:btn7On()<br />
	self:updateView("Label_7", "text", "GrtSlpKmr is Open")<br />
	end
</p>

<p>
	function QuickApp:btn8On()<br />
	 self:updateView("Label_8", "text", "CompKmr is Open")  <br />
	end
</p>

<p>
	function QuickApp:btn1Off()<br />
	 self:updateView("Label_1", "text", "Voordeur is Dicht")<br />
	 hub.setGlobalVariable("Deur_Voordeur", "Dicht")<br />
	end
</p>

<p>
	function QuickApp:btn2Off()<br />
	  self:updateView("Label_2", "text", "Gagragedeur is Dicht")<br />
	end
</p>

<p>
	function QuickApp:btn3Off()<br />
	 self:updateView("Label_3", "text", "Keukendeur is Dicht")<br />
	end
</p>

<p>
	function QuickApp:btn4Off()<br />
	 self:updateView("Label_4", "text", "Bijkeuken is Dicht")<br />
	end
</p>

<p>
	function QuickApp:btn5Off()<br />
	 self:updateView("Label_5", "text", "HfdSlpKmr is Dicht")<br />
	end
</p>

<p>
	function QuickApp:btn6Off()<br />
	 self:updateView("Label_6", "text", "KlnSlpKmr is Dicht")<br />
	end
</p>

<p>
	function QuickApp:btn7Off()<br />
	 self:updateView("Label_7", "text", "GrtSlpKmr is Dicht")<br />
	end
</p>

<p>
	function QuickApp:btn8Off()<br />
	 self:updateView("Label_8", "text", "CompKmr is Dicht")<br />
	end <br />
	 
</p>

<p>
	 
</p>

<p>
	<p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this image.</p> /monthly_2022_11/image.png.1d4e2ae76a6a28e0a0bb7926b37cf0bd.png" /><img alt="image.png.5719c4f20517ad3293e4167b7d13e3ab.png" class="ipsImage ipsImage_thumbnailed" data-fileid="50872" data-ratio="44.82" width="656" src="https://forum.fibaro.com/uploads/monthly_2022_11/image.png.5719c4f20517ad3293e4167b7d13e3ab.png" />
</p>

<p>
	<img alt="image.png.7f8b2d4b8b222b4aa576b3c7091b1492.png" class="ipsImage ipsImage_thumbnailed" data-fileid="50874" data-ratio="11.88" width="808" src="https://forum.fibaro.com/uploads/monthly_2022_11/image.png.7f8b2d4b8b222b4aa576b3c7091b1492.png" />
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	orginele file zie onderstaande link
</p>
<iframe allowfullscreen="" data-controller="core.front.core.autosizeiframe" data-embedauthorid="15013" data-embedcontent="" data-embedid="embed6741683888" src="https://forum.fibaro.com/files/file/107-eth008_with_statusvfib/?do=embed" style="height:470px;max-width:502px;"></iframe>

<p>
	 
</p>

<p>
	<p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this attachment.</p> 
</p>
]]></description><guid isPermaLink="false">63190</guid><pubDate>Tue, 15 Nov 2022 15:01:54 +0000</pubDate></item><item><title>Profiles page not loading</title><link>https://forum.fibaro.com/topic/62047-profiles-page-not-loading/</link><description><![CDATA[<p>
	Not sure if its this update but I notice it sinds this update:  The profile settings are not accessible. When clicking on it, I get an: Error 404<span> </span>- Not found
</p>

<p>
	 
</p>

<p>
	tried reloading and deleting cache but does not work. Anyone else the same problem? Or maybe also useful: does not have this problem?
</p>
]]></description><guid isPermaLink="false">62047</guid><pubDate>Fri, 30 Sep 2022 10:01:11 +0000</pubDate></item><item><title>Cannot upload encrypted QA</title><link>https://forum.fibaro.com/topic/61945-cannot-upload-encrypted-qa/</link><description><![CDATA[<p>
	After write and downloaded QA in Encrypted or Encrypted and limited mode I cannot upload it to HC.
</p>

<p>
	In Open source mode it is OK.
</p>

<p>
	Picture of the detailed error message below.<span></span><span></span><span></span>
</p>

<p><p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this attachment.</p> </p>]]></description><guid isPermaLink="false">61945</guid><pubDate>Thu, 22 Sep 2022 19:59:01 +0000</pubDate></item><item><title>Energy Panel - Battery energy and power configuration missing</title><link>https://forum.fibaro.com/topic/62088-energy-panel-battery-energy-and-power-configuration-missing/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	I'm using the energy panel, and it's great. But I miss the configuration for battery power in hybrid PV systems. So then the performance of the billing meter doesn't match the reality.
</p>

<p>
	The same situation applies to energy - battery energy is not calculated. 
</p>

<p>
	Two values are usually used for the energy of a battery - the charging energy and the discharging energy.
</p>

<p>
	For power usually only one with a positive value for discharge and a negative value for charge. 
</p>

<p>
	 
</p>

<p>
	Configuration - Battery power and energy is missing
</p>

<p>
	<p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this image.</p> /monthly_2022_10/image.png.dda431764269f5c873321b30e4336920.png" />
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	Energy Panel shows a meter power of 487W when in fact this power is used to charge the battery. The situation repeats itself in reverse when the battery power is used for self-consumption.
</p>

<p>
	<p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this attachment.</p> 
</p>
]]></description><guid isPermaLink="false">62088</guid><pubDate>Mon, 03 Oct 2022 08:53:15 +0000</pubDate></item><item><title>TLS/SSL on TCP</title><link>https://forum.fibaro.com/topic/62099-tlsssl-on-tcp/</link><description><![CDATA[<p>
	Hello, 
</p>

<p>
	 
</p>

<p>
	could someone tell me if TLS/SSL is now available on net.TCPSOCKET with this new version ?
</p>

<p>
	 
</p>

<p>
	If not, is it planned to come in a near future ?
</p>

<p>
	 
</p>

<p>
	Thank you
</p>
]]></description><guid isPermaLink="false">62099</guid><pubDate>Mon, 03 Oct 2022 14:28:23 +0000</pubDate></item><item><title>qubino 3f</title><link>https://forum.fibaro.com/topic/62089-qubino-3f/</link><description><![CDATA[<p>
	Hi i deal soft restart qubino 3f. New icon dont work. I exlude and include this meter. New icon still dont work. Still work old icon = calculate measure and actual using 3F in W. Anybody test any new qubino 3F firmware? i using cca half years old firmware. On previous firmware all fork done.
</p>

<p>
	Thx for any info
</p>
]]></description><guid isPermaLink="false">62089</guid><pubDate>Mon, 03 Oct 2022 09:21:20 +0000</pubDate></item><item><title>Bug: Motion sensors not visible in home and devices view when using Quick App with motion sensor combined</title><link>https://forum.fibaro.com/topic/62076-bug-motion-sensors-not-visible-in-home-and-devices-view-when-using-quick-app-with-motion-sensor-combined/</link><description><![CDATA[<p>
	When I use QA as binary sensor to combine multiple motion sensors those sensors disappear in the home and device view. This can not be by design, right?
</p>

<p>
	All scene's that uses the separate motion sensors keep working though....
</p>
]]></description><guid isPermaLink="false">62076</guid><pubDate>Sun, 02 Oct 2022 07:12:12 +0000</pubDate></item><item><title>Nothing Changed</title><link>https://forum.fibaro.com/topic/62071-nothing-changed/</link><description><![CDATA[<p>
	It' as almost been a year since last time I logged in tio this forum and the same time since I pulled the plug of my HC3 from the wall outlet for the last time.
</p>

<p>
	I am now more than three years a happy Hubitat customer and user and since a year uniquely relying on the RELIABLE Hubitat Elevation system.
</p>

<p>
	This after &gt; 10 years of Fibaro-enthusiasm.
</p>

<p>
	 
</p>

<p>
	Most notably on the forum is: nothing has changed: there is a new firmware and soon there are a multitiude of requests why this or that doesn't work anymore.
</p>

<p>
	So, I guess I will come back in a year or so.
</p>

<p>
	I'm not writing this with any kind of glee, I have loved Fibaro for a very long time.
</p>
]]></description><guid isPermaLink="false">62071</guid><pubDate>Sat, 01 Oct 2022 18:13:47 +0000</pubDate></item><item><title>Roller Shutter 3 not reporting their status anymore</title><link>https://forum.fibaro.com/topic/61972-roller-shutter-3-not-reporting-their-status-anymore/</link><description><![CDATA[<p>
	Hello,
</p>

<p>
	 
</p>

<p>
	Everything was fine before I updated to 5.120.10 but now:
</p>

<p>
	- the icon looks different
</p>

<p>
	- when I press on the physical button, blinds are moving but position is not reflected anymore in the application (iPhone and/or web interface).
</p>

<p>
	- when setting up a xx % in app it works fine but when I asked the blinds to go up completely again (or down completely again), they do not take into account the xx % previously set, they go ups or down for 100% (and 100% of time - forcing motor at the end).
</p>

<p>
	 
</p>

<p>
	Do you also experienced that ? Is there anything specific to parameter to correct that behaviour ?<br />
	<br />
	Thanks,<br />
	Fly
</p>
]]></description><guid isPermaLink="false">61972</guid><pubDate>Sun, 25 Sep 2022 11:49:24 +0000</pubDate></item><item><title>[SOLVED]Update broke some QA's -  error: "Host not found (authoritative)"</title><link>https://forum.fibaro.com/topic/61884-solvedupdate-broke-some-qas-error-host-not-found-authoritative/</link><description><![CDATA[<p>
	As the title says, the update broke some of my QA's giving the error message: <span style="background-color:#354052;color:#ffffff;font-size:12px;text-align:left;"><span> </span>error: "Host not found (authoritative)"</span>
</p>

<p>
	These QA's were running just fine for at least 6 months. 
</p>

<p>
	Even more, some other QA's which are basically the same (all make a http call to read some json from other devices) still work fine.
</p>

<p>
	 
</p>

<p>
	Any ideas please ?
</p>

<p>
	 
</p>

<p>
	Cheers 
</p>
]]></description><guid isPermaLink="false">61884</guid><pubDate>Fri, 16 Sep 2022 20:31:31 +0000</pubDate></item><item><title>Remotec ZXT600 lost Heating options after reconfiguration</title><link>https://forum.fibaro.com/topic/61889-remotec-zxt600-lost-heating-options-after-reconfiguration/</link><description><![CDATA[<p>
	I have 2 Remotec ZXT600's in use. After soft reconfiguration of one of them the thermostat mode 'Heating' and the Heating thermostat set mode have gone. I can only use it for Cool, Dry or Fan.
</p>

<p>
	 
</p>

<p>
	The Remotest that I did not touch still works as usual and has all these options.
</p>
]]></description><guid isPermaLink="false">61889</guid><pubDate>Sat, 17 Sep 2022 07:10:55 +0000</pubDate></item><item><title>push notifications from the QuickApp code</title><link>https://forum.fibaro.com/topic/61872-push-notifications-from-the-quickapp-code/</link><description><![CDATA[<p>
	This is not  working for me  
</p>

<p>
	Works in in  Beta 5.112 
</p>

<p>
	 
</p>

<p>
	<span style="background-color:#ffffff;color:#172b4d;font-size:14px;">issue with sending push notifications from the QuickApp code. </span>
</p>

<p>
	 
</p>

<p>
	<span style="background-color:#ffffff;color:#172b4d;font-size:14px;">i use the eventrunner 4  for an exampel </span>
</p>
]]></description><guid isPermaLink="false">61872</guid><pubDate>Thu, 15 Sep 2022 19:51:53 +0000</pubDate></item><item><title>Blinds - not correct name for favourite position</title><link>https://forum.fibaro.com/topic/61871-blinds-not-correct-name-for-favourite-position/</link><description><![CDATA[<p>
	There is not correct name (red color in pictures) of favourite position in blinds - there should be my name Mezery1 (green color in pictures) defined in Position name.
</p>

<p>
	 
</p>

<p>
	<p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this image.</p> /monthly_2022_09/image.png.de0d1d5f1bc376e69b0b9fecba7af990.png" /><p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this attachment.</p> 
</p>

<p>
	 
</p>

<p>
	<p class='ipsMessage ipsMessage_error cloak'>Please login or register to see this attachment.</p> 
</p>

<p>
	 
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">61871</guid><pubDate>Thu, 15 Sep 2022 19:51:05 +0000</pubDate></item><item><title>[SOLVED ]Advanced filters vs Search</title><link>https://forum.fibaro.com/topic/61870-solved-advanced-filters-vs-search/</link><description><![CDATA[<p>
	The Advanced filters is a fine new feature in the Device Section,  but i am really not happy about the search function has been removed.
</p>

<p>
	i used that every time - and the Advanced filter can only narrow down to 4-5 pages of device.
</p>

<p>
	 
</p>

<p>
	I really miss the Search function in devices.
</p>
]]></description><guid isPermaLink="false">61870</guid><pubDate>Thu, 15 Sep 2022 18:56:03 +0000</pubDate></item><item><title>FIBARO System Update 5.120 for Home Center 3</title><link>https://forum.fibaro.com/topic/61861-fibaro-system-update-5120-for-home-center-3/</link><description><![CDATA[<p style='margin: 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Thank you for using our gateway! Be sure to update to the latest version to enjoy new features and improvements.<br>
	    <br>
	    <br>
	<strong>Main features:</strong><br>
	    <br>
	<strong>1. Completely new and redesigned process of first gateway configuration in WebUI.</strong><br>
	    <br>
	<strong>2. Added possibility to test newly added Z-Wave devices during first configuration.</strong><br>
	    <br>
	<strong>3. Redesigned Settings page for better user experience.</strong>
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Changed the tabs order in settings.<br>
	The possibility to easily manage devices using new filtering options in Devices tab.<br>
	Easier removal process for all device types.<br>
	Settings of main devices moved from General settings to Devices settings.<br>
	    <br>
	<strong>4. Factory reset feature available in web interface.</strong>
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Perform factory reset of the hub from General settings.<br>
	Now it is possible to enable additional actions which should be performed during the process, like removing cloud backups or removing connection to remote access.<br>
	    <br>
	<strong>5. New approach to configuration of Electric meters for Energy Panel.</strong>
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Configuration moved from General settings to Energy Panel settings.<br>
	Now it is possible to choose how energy and power should be measured.<br>
	    <br>
	<strong>6. Changed Scenes and QuickApps limits for Yubii Home and Home Center 3 Lite gateways.</strong>
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Due to performance improvements, the limit for scenes has been raised to 40, and for QuickApps to 10.<br>
	    <br>
	<strong>7. QuickApps encryption</strong>
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Encrypt QuickApps to share integration with the community without access to the source code.<br>
	Define specific serial numbers for gateways that will be able to open the file.<br>
	    <br>
	    <br>
	<strong>What's new:</strong>
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Dashboard<br>
	    Added possibility to use Hold (start move) and Release (stop move) actions on buttons in sidebar for roller shutters.<br>
	    Improved handling of set-points step for control of thermostat from sidebar.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Devices<br>
	    Device roles now visible on the Settings/Devices page.<br>
	    Added missing support for devices which works on HC2/HCL platforms.<br>
	    Added channel designation in the target device selector in Z-Wave association configuration.<br>
	    Slider for level change for roller shutter with role "Device without positioning" removed from control dialog in mobile application.<br>
	    Parameter names are now displayed for Z-Wave devices.**<br>
	    Improved virtual power consumption algorithm for Color Controllers. <br>
	    Added device roles to sensors and meters.<br>
	    Support for Z-Wave parameters translations in languages other than PL and EN.<br>
	    Consistent device removal processes for Z-Wave engines.<br>
	    Device icons service improvements.<br>
	    Support for Aeotec Home Energy Meter Gen5.<br>
	    Support for Qubino 1Phase Meters.<br>
	    Support for Popp Outdoor Siren.<br>
	    Support for Fibaro RGBW Controller (FGRGBW-441)**.<br>
	    Z-Wave blinds now show favorite position state.<br>
	    Redesigned support for the energy meters (Qubino, Aeon) - soft-reconfiguration required.<br>
	    Search field for device' name filter supports "Enter" and "ESC" key functions.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Elero*<br>
	    Improvements in pairing process.<br>
	    JA Pulse device support added.<br>
	    Revio SW device support.<br>
	    Improved marking as dead function.<br>
	    Improvements in pairing process.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Energy<br>
	    Improved support for data from removed devices.<br>
	    Improved data handling support when option "Grid consumption" is selected in panel configuration.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Network<br>
	    Wi-Fi stability improvements for Yubii Home and HC3L gateways.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Nice*<br>
	    Changed default devices names to be more understandable.<br>
	    Improved calibration mechanism for BiDi-Shutter and BiDi-Awning.<br>
	    Improved error handling during pairing processes.<br>
	    UI improvements.<br>
	    Improved removal of disconnected devices.<br>
	    Improved support for PLN2+ (BiDi) devices.<br>
	    Improved marking as dead function.<br>
	    Added parameters queue for battery operated devices.<br>
	    Improved error handling during pairing process.<br>
	    Simplified binding process.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Other<br>
	    Device location (room) added to e-mail and push notifications templates.<br>
	    Updated system packages for performance and stability.<br>
	    Added system notification about available migration from HC2/HCL systems.<br>
	    Added possibility to skip network configuration during FTI process.<br>
	    Added possibility to set the gateway name during FTI process.<br>
	    First Time Installation (FTI) process improvements.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Plugins<br>
	    Thermostat &amp; Heating Zone plugin - added additional two options to override time.<br>
	    Support for "Partly cloudy" weather condition in weather provider.<br>
	    <br>
	Profiles<br>
	    Improved saving for actions in profiles.<br>
	    <br>
	Quick Apps<br>
	    Added support for Headers in Websocket connections.<br>
	    <br>
	Rooms<br>
	    Improvements for rooms and sections management.<br>
	    <br>
	Scenes<br>
	    Safeguards have been added to prevent incorrect values being entered in Scenarios conditions.<br>
	    Performance improvements related to loading elements in Block Scenes. <br>
	    Added translations for modes and actions for thermostats.<br>
	    Possibility to change the scene name in opened edit page.<br>
	    Silent movement mode used in Simple Scenarios for blinds and shutters if supported.<br>
	    Added additional weather condition support (partly cloudy).<br>
	    Support for thermostat fan modes in Block Scenes.<br>
	    Added skipping actions to hidden devices in Simple Scenarios.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Security<br>
	    Disabled support for TLS version lower than 1.2.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Settings<br>
	    Gateway Connection tab removed for YH and HC3L gateways and moved to General settings.<br>
	    Devices counter/limits moved to General settings.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Z-Wave<br>
	    Added background polling for sleeping devices**.<br>
	    Improved devices adding process.<br>
	    Updated SDK to v7.17.2 for Yubii Home and Home Center 3 Lite.<br>
	    Performance improvements.<br>
	    Improved support for remotes.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Zigbee<br>
	    Minor changes in Zigbee settings page.<br>
	    Improved generic device support.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	<br>
	<strong>Bug fixes:</strong>
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Alarm<br>
	    Setting a new PIN requires typing each digit twice.<br>
	    Non-admin user gets logged out from the interface when enters wrong PIN during arming a zone.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Dashboard<br>
	    Redirection to specific device settings not always works correctly.<br>
	    Devices order may be incorrect after using a drag &amp; drop function on device tiles. <br>
	    Non-admin user can click "settings" icon on device tile which results in 404 errors. 
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Devices<br>
	    Separating inputs from outputs for Smart Implant.<br>
	    Wrong set-point limits for some thermostats.<br>
	    Gerber GP-2000 does not report states correctly.<br>
	    Not possible to edit a previously created Linked device if no master device was chosen. <br>
	    Removed duplicated control buttons for blinds and shutters from the mobile app control dialog. <br>
	    Heatit Z-Temp2 does not work correctly when using secure mode. <br>
	    Issues with listing associations in Z-Wave devices if more than 2 targets are set in one group.<br>
	    Overlapped associations groups description in some languages. <br>
	    OFF/MAX modes not showing on FGT-001 history graph. <br>
	    Created sprinkler (linked device) has a role "light".<br>
	    Missing translations for thermostats sidebar in some languages.<br>
	    Editing device name expands device tab. <br>
	    All roles for binary switches treated as lights.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Elero*<br>
	    Issue with controlling Awnings in some cases (reversed states and/or actions). <br>
	    Issues with displaying states and control of awnings.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Energy<br>
	    Wrong rounding up the percentage of summary consumption for devices list in Savings tab.<br>
	    Issue with "Rest" graph in Detailed Consumption graph in General Tab if main energy meter is set.<br>
	    Issue with displaying summary consumption when the main meter exists in some configurations. <br>
	    Issues with loading graphs in some languages. <br>
	    Decreased performance in panel settings when changing tariffs in some cases.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Gateway Connection<br>
	    Empty Z-Wave device templates after downloading them from Slave gateway.<br>
	    Not possible to request neighbors update for Z-Wave devices from Slave gateway.<br>
	    Not possible to set temperature offset for devices from Slave gateway.<br>
	    Not possible to change "Mark if unavailable" option for devices from Slave gateway.<br>
	    Rare Master gateway crash during synchronization of devices.<br>
	    Impossible to add a new Slave if it was configured using new FTI process (introduced in 5.111 Beta).<br>
	    Adding FIBARO RGBW 1 device to slave gateway may not work properly. 
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	History<br>
	    Wrong temperature units in panel after changing temperature unit.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Network<br>
	    Listing available networks not always works correctly if the currently connected network has poor quality.<br>
	    In some cases HC3 fails to boot if there is no network configured. (issue introduced in 5.111 Beta).<br>
	    In some rare cases list of available Wi-Fi network is empty.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Nice*<br>
	    Added device summary shows default names instead of configured ones. <br>
	    It is impossible to control old revision of Era Fit BD and Next Fit BD devices.<br>
	    Inconsistent device renaming during adding wizard in case of different protocols.<br>
	    Not possible to read Nice device parameter value on demand. <br>
	    Not possible to pair a device by authorization via remote when using ON3EBD.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Other<br>
	    Duplicated scrollbar in WiFi search window.<br>
	    Every logging into the system using mobile application generates redundant events to History.<br>
	    Unable to finish FTI process when changing the superuser login (issue introduced in 5.111 Beta).<br>
	    Issues when using Fahrenheit temperature unit in system.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Plugins<br>
	    Read-only Satel outputs trigger the scenes after user interaction. <br>
	    2N Helios plugin does not work correctly.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Profiles<br>
	    Wrong unit for Sprinklers watering time.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Quick Apps<br>
	    Slider ignores min/max values from the API.<br>
	    Issue with refreshing views for QuickApps after user interaction.<br>
	    Issue with sending push notifications from the QuickApp code. 
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Rooms<br>
	    Drag and drop the rooms not always works correctly.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Scenes<br>
	    Impossible to edit or create scenes using thermostats in Czech language in some cases.<br>
	    Missing favorite positions condition and trigger for Elero devices.<br>
	    Simple scenarios not available in voice assistants.<br>
	    Not showing saved value in block scenes condition for multilevel switches in some cases.<br>
	    Not showing saved Time interval value in block scenes conditions.<br>
	    Impossible to create a new Simple Scenario when Scenes limit is reached.<br>
	    Scene with group action - active Save button when no changes were made.<br>
	    Global variables are not being refreshed in scenes engine after creation and removal.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Update<br>
	    FGT-001 update fails in some cases.**
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Z-Wave<br>
	    ZW300 devices update fails in some cases.<br>
	    Global polling not always works correctly.<br>
	    Issue with displaying queued configuration parameter values for sleeping devices.**<br>
	    The Z-Wave engine on rare cases crashes during the process of adding devices.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	<br>
	<strong>Known issues:</strong>
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	Z-Wave Engine 3.0<br>
	    Some Z-Wave devices are not fully compatible with the new version of Z-Wave engine.<br>
	    Gateway connection is not available in the new Z-Wave engine version.
</p>

<p style='margin: 10px 0px 0px; padding: 0px; color: rgb(23, 43, 77); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>
	<br>
	*  - does not apply to HC3L (Home Center 3 Lite)<br>
	** - applies only to Z-Wave Engine 3.0
</p>
]]></description><guid isPermaLink="false">61861</guid><pubDate>Thu, 15 Sep 2022 14:25:08 +0000</pubDate></item></channel></rss>
