<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.larnitech.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mark</id>
	<title>Larnitech wiki page - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.larnitech.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mark"/>
	<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/Special:Contributions/Mark"/>
	<updated>2026-05-14T09:01:56Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.11</generator>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=API2&amp;diff=20626</id>
		<title>API2</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=API2&amp;diff=20626"/>
		<updated>2025-11-11T10:13:34Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
API2 works via WebSocket connection, so you can interact with your Larnitech server from a browser using extensions (such as WebSocket Test Client).&amp;lt;br&amp;gt;&lt;br /&gt;
To get started, you should:&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
1. Establish a web socket connection.&amp;lt;br&amp;gt; Locally&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
ws://IPADDR:PORT/api&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Where: IPADDR – ip address of your metaforsa or DE-MG;&amp;lt;br&amp;gt;&lt;br /&gt;
PORT – port for API2 (you can get it from LT_Setup =&amp;amp;gt; General =&amp;amp;gt; API =&amp;amp;gt; Websocket port (2041 by default); &amp;lt;br&amp;gt;&lt;br /&gt;
Or use next for remote:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
wss://SERIAL.in.larnitech.com:8443/api&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Where: SERIAL is serial number of your server, you can find it in LT_Setup =&amp;amp;gt; General &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
2. Authorize&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;request&amp;quot;: &amp;quot;authorize&amp;quot;,&lt;br /&gt;
    &amp;quot;key&amp;quot;: &amp;quot;XXXXXXXXXXXXXXX&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Where XXXXXXXXXXXXXXX - key from LT_Setup =&amp;amp;gt; Security =&amp;amp;gt; Show API key&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
3.After this you can send json requests:&lt;br /&gt;
&lt;br /&gt;
Fields of JSON_REQUEST:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;&amp;quot;request&amp;quot; - Type of request:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“get-devices” – request for getting the list of all devices;&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“status-get” – request for getting device status;&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“status-set” – request for setting device status;&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“status-subscribe” – request for subscribe events (WebSocket only)&amp;lt;/li&amp;gt;&lt;br /&gt;
       &lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“key” – key for API plugin (you can get it from LT Setup=&amp;amp;gt;Plugins=&amp;amp;gt;API=&amp;amp;gt;Configure button).&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“addr” – address of device.&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“status” – status of device.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
Examples of requests and responses:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;get-devices&amp;quot;, &amp;quot;status&amp;quot;:&amp;quot;detailed&amp;quot;}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;get-devices&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;158:21&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;:&amp;quot;ir-receiver&amp;quot;,&lt;br /&gt;
			&amp;quot;name&amp;quot;:&amp;quot;IR receiver&amp;quot;,&lt;br /&gt;
			&amp;quot;area&amp;quot;:&amp;quot;Setup&amp;quot;,&lt;br /&gt;
			&amp;quot;status&amp;quot;:{&lt;br /&gt;
				&amp;quot;state&amp;quot;:&amp;quot;undefined&amp;quot;&lt;br /&gt;
			}&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;158:40&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;:&amp;quot;com-port&amp;quot;,&lt;br /&gt;
			&amp;quot;name&amp;quot;:&amp;quot;RS232&amp;quot;,&lt;br /&gt;
			&amp;quot;area&amp;quot;:&amp;quot;Setup&amp;quot;,&lt;br /&gt;
			&amp;quot;status&amp;quot;:{&lt;br /&gt;
				&amp;quot;state&amp;quot;:&amp;quot;undefined&amp;quot;&lt;br /&gt;
			}&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;33:200&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;:&amp;quot;climate-control&amp;quot;,&lt;br /&gt;
			&amp;quot;name&amp;quot;:&amp;quot;climate&amp;quot;,&lt;br /&gt;
			&amp;quot;area&amp;quot;:&amp;quot;Living room&amp;quot;,&lt;br /&gt;
			&amp;quot;status&amp;quot;:{&lt;br /&gt;
				&amp;quot;state&amp;quot;:&amp;quot;on&amp;quot;,&lt;br /&gt;
				&amp;quot;setpoint&amp;quot;:23.0,&lt;br /&gt;
				&amp;quot;setpoint-heat&amp;quot;:21.0,&lt;br /&gt;
				&amp;quot;setpoint-cool&amp;quot;:25.0,&lt;br /&gt;
				&amp;quot;current-temperature&amp;quot;:0.0,&lt;br /&gt;
				&amp;quot;pid-temperature&amp;quot;:100,&lt;br /&gt;
				&amp;quot;current-humidity&amp;quot;:0.0,&lt;br /&gt;
				&amp;quot;current-co2&amp;quot;:0,&lt;br /&gt;
				&amp;quot;automation&amp;quot;:&amp;quot;Comfort&amp;quot;,&lt;br /&gt;
				&amp;quot;mode&amp;quot;:&amp;quot;auto&amp;quot;,&lt;br /&gt;
				&amp;quot;time-interval&amp;quot;:0&lt;br /&gt;
			},&lt;br /&gt;
			&amp;quot;automations&amp;quot;:[&lt;br /&gt;
				&amp;quot;Comfort&amp;quot;&lt;br /&gt;
			],&lt;br /&gt;
			&amp;quot;automation&amp;quot;:&amp;quot;Comfort&amp;quot;,&lt;br /&gt;
			&amp;quot;modes&amp;quot;:[&lt;br /&gt;
				&amp;quot;heat&amp;quot;,&lt;br /&gt;
				&amp;quot;cool&amp;quot;&lt;br /&gt;
			]&lt;br /&gt;
		},&lt;br /&gt;
		],&lt;br /&gt;
	&amp;quot;found&amp;quot;:3&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;status-get&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;158:240&amp;quot;, &amp;quot;status&amp;quot;:&amp;quot;detailed&amp;quot;}&lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;status-get&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;158:240&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;:&amp;quot;valve-heating&amp;quot;,&lt;br /&gt;
			&amp;quot;status&amp;quot;:{&lt;br /&gt;
				&amp;quot;state&amp;quot;:&amp;quot;off&amp;quot;&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
	],&lt;br /&gt;
	&amp;quot;found&amp;quot;:1&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;999:250&amp;quot;, &amp;quot;status&amp;quot;:{&amp;quot;state&amp;quot;:&amp;quot;off&amp;quot;}}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;status-set&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;999:250&amp;quot;,&lt;br /&gt;
			&amp;quot;success&amp;quot;:true&lt;br /&gt;
		}&lt;br /&gt;
	]&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;status-subscribe&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;999:250&amp;quot;}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;status-subscribe&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;999:250&amp;quot;,&lt;br /&gt;
			&amp;quot;status&amp;quot;:&amp;quot;0x08&amp;quot;&lt;br /&gt;
		}&lt;br /&gt;
	],&lt;br /&gt;
	&amp;quot;found&amp;quot;:1,&lt;br /&gt;
	&amp;quot;subscribed&amp;quot;:1&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;999:250&amp;quot;, &amp;quot;status&amp;quot;:&amp;quot;0x01&amp;quot;}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;status-set&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		&amp;quot;999:250&amp;quot;&lt;br /&gt;
	]&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
request (set status for climate-control):&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;33:200&amp;quot;, &amp;quot;status&amp;quot;:{&amp;quot;state&amp;quot;:&amp;quot;on&amp;quot;,&amp;quot;setpoint-heat&amp;quot;:21.0}}&lt;br /&gt;
&lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;status-set&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;33:200&amp;quot;,&lt;br /&gt;
			&amp;quot;success&amp;quot;:true&lt;br /&gt;
		}&lt;br /&gt;
	]&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==CURL== &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Part from logic.xml --&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;585:16&amp;quot; auto-period=&amp;quot;1&amp;quot; cfgid=&amp;quot;4&amp;quot; name=&amp;quot;color-temp dimmer&amp;quot; type=&amp;quot;dimer-lamp&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;585:17&amp;quot; name=&amp;quot;main dimmer&amp;quot; type=&amp;quot;dimer-lamp&amp;quot; auto-period=&amp;quot;600&amp;quot; color-temp=&amp;quot;585:16&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;!-- END Part from logic.xml --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. Use request to get detailed info about element with &amp;quot;status&amp;quot;:&amp;quot;detailed&amp;quot;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot; line&amp;gt;&lt;br /&gt;
curl --header 'Content-Type: application/json' --data '{&amp;quot;request&amp;quot;:&amp;quot;status-get&amp;quot;, &amp;quot;API-KEY&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;, &amp;quot;addr&amp;quot;:&amp;quot;585:17&amp;quot;, &amp;quot;status&amp;quot;:&amp;quot;detailed&amp;quot;}' 'http://de-mg.local/API2/'&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Use request to set brightness for dimmer element&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot; line&amp;gt;&lt;br /&gt;
curl --header 'Content-Type: application/json' --data '{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;API-KEY&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;, &amp;quot;addr&amp;quot;:&amp;quot;585:17&amp;quot;, &amp;quot;status&amp;quot;:{&amp;quot;level&amp;quot;:10}}' 'http://de-mg.local/API2/'&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Use request to set color-temp for dimmer element&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot; line&amp;gt;&lt;br /&gt;
curl --header 'Content-Type: application/json' --data '{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;API-KEY&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;585:17&amp;quot;, &amp;quot;status&amp;quot;:{&amp;quot;color-temp&amp;quot;:100}}' 'http://de-mg.local/API2/'&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=API2&amp;diff=20625</id>
		<title>API2</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=API2&amp;diff=20625"/>
		<updated>2025-11-11T10:12:06Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
API2 works via WebSocket connection, so you can interact with your Larnitech server from a browser using extensions (such as WebSocket Test Client).&amp;lt;br&amp;gt;&lt;br /&gt;
To get started, you should:&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
1. Establish a web socket connection.&amp;lt;br&amp;gt; Locally&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
ws://IPADDR:PORT/api&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Where: IPADDR – ip address of your metaforsa or DE-MG;&amp;lt;br&amp;gt;&lt;br /&gt;
PORT – port for API2 (you can get it from LT_Setup =&amp;amp;gt; General =&amp;amp;gt; API =&amp;amp;gt; Websocket port (2041 by default); &amp;lt;br&amp;gt;&lt;br /&gt;
Or use next for remote:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
wss://SERIAL.in.larnitech.com:8443/api&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Where: SERIAL is serial number of your server, you can find it in LT_Setup =&amp;amp;gt; General &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
2. Authorize&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;request&amp;quot;: &amp;quot;authorize&amp;quot;,&lt;br /&gt;
    &amp;quot;key&amp;quot;: &amp;quot;XXXXXXXXXXXXXXX&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Where XXXXXXXXXXXXXXX - key from LT_Setup =&amp;amp;gt; Security =&amp;amp;gt; Show API key&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
3.After this you can send json requests:&lt;br /&gt;
&lt;br /&gt;
Fields of JSON_REQUEST:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;&amp;quot;request&amp;quot; - Type of request:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“get-devices” – request for getting the list of all devices;&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“status-get” – request for getting device status;&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“status-set” – request for setting device status;&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“status-subscribe” – request for subscribe events (WebSocket only)&amp;lt;/li&amp;gt;&lt;br /&gt;
       &lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“key” – key for API plugin (you can get it from LT Setup=&amp;amp;gt;Plugins=&amp;amp;gt;API=&amp;amp;gt;Configure button).&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“addr” – address of device.&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“status” – status of device.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
Examples of requests and responses:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;get-devices&amp;quot;, &amp;quot;status&amp;quot;:&amp;quot;detailed&amp;quot;}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;get-devices&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;158:21&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;:&amp;quot;ir-receiver&amp;quot;,&lt;br /&gt;
			&amp;quot;name&amp;quot;:&amp;quot;IR receiver&amp;quot;,&lt;br /&gt;
			&amp;quot;area&amp;quot;:&amp;quot;Setup&amp;quot;,&lt;br /&gt;
			&amp;quot;status&amp;quot;:{&lt;br /&gt;
				&amp;quot;state&amp;quot;:&amp;quot;undefined&amp;quot;&lt;br /&gt;
			}&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;158:40&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;:&amp;quot;com-port&amp;quot;,&lt;br /&gt;
			&amp;quot;name&amp;quot;:&amp;quot;RS232&amp;quot;,&lt;br /&gt;
			&amp;quot;area&amp;quot;:&amp;quot;Setup&amp;quot;,&lt;br /&gt;
			&amp;quot;status&amp;quot;:{&lt;br /&gt;
				&amp;quot;state&amp;quot;:&amp;quot;undefined&amp;quot;&lt;br /&gt;
			}&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;33:200&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;:&amp;quot;climate-control&amp;quot;,&lt;br /&gt;
			&amp;quot;name&amp;quot;:&amp;quot;climate&amp;quot;,&lt;br /&gt;
			&amp;quot;area&amp;quot;:&amp;quot;Living room&amp;quot;,&lt;br /&gt;
			&amp;quot;status&amp;quot;:{&lt;br /&gt;
				&amp;quot;state&amp;quot;:&amp;quot;on&amp;quot;,&lt;br /&gt;
				&amp;quot;setpoint&amp;quot;:23.0,&lt;br /&gt;
				&amp;quot;setpoint-heat&amp;quot;:21.0,&lt;br /&gt;
				&amp;quot;setpoint-cool&amp;quot;:25.0,&lt;br /&gt;
				&amp;quot;current-temperature&amp;quot;:0.0,&lt;br /&gt;
				&amp;quot;pid-temperature&amp;quot;:100,&lt;br /&gt;
				&amp;quot;current-humidity&amp;quot;:0.0,&lt;br /&gt;
				&amp;quot;current-co2&amp;quot;:0,&lt;br /&gt;
				&amp;quot;automation&amp;quot;:&amp;quot;Comfort&amp;quot;,&lt;br /&gt;
				&amp;quot;mode&amp;quot;:&amp;quot;auto&amp;quot;,&lt;br /&gt;
				&amp;quot;time-interval&amp;quot;:0&lt;br /&gt;
			},&lt;br /&gt;
			&amp;quot;automations&amp;quot;:[&lt;br /&gt;
				&amp;quot;Comfort&amp;quot;&lt;br /&gt;
			],&lt;br /&gt;
			&amp;quot;automation&amp;quot;:&amp;quot;Comfort&amp;quot;,&lt;br /&gt;
			&amp;quot;modes&amp;quot;:[&lt;br /&gt;
				&amp;quot;heat&amp;quot;,&lt;br /&gt;
				&amp;quot;cool&amp;quot;&lt;br /&gt;
			]&lt;br /&gt;
		},&lt;br /&gt;
		],&lt;br /&gt;
	&amp;quot;found&amp;quot;:3&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;status-get&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;158:240&amp;quot;, &amp;quot;status&amp;quot;:&amp;quot;detailed&amp;quot;}&lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;status-get&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;158:240&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;:&amp;quot;valve-heating&amp;quot;,&lt;br /&gt;
			&amp;quot;status&amp;quot;:{&lt;br /&gt;
				&amp;quot;state&amp;quot;:&amp;quot;off&amp;quot;&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
	],&lt;br /&gt;
	&amp;quot;found&amp;quot;:1&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;999:250&amp;quot;, &amp;quot;status&amp;quot;:{&amp;quot;state&amp;quot;:&amp;quot;off&amp;quot;}}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;status-set&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;999:250&amp;quot;,&lt;br /&gt;
			&amp;quot;success&amp;quot;:true&lt;br /&gt;
		}&lt;br /&gt;
	]&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;status-subscribe&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;999:250&amp;quot;}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;status-subscribe&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;999:250&amp;quot;,&lt;br /&gt;
			&amp;quot;status&amp;quot;:&amp;quot;0x08&amp;quot;&lt;br /&gt;
		}&lt;br /&gt;
	],&lt;br /&gt;
	&amp;quot;found&amp;quot;:1,&lt;br /&gt;
	&amp;quot;subscribed&amp;quot;:1&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;999:250&amp;quot;, &amp;quot;status&amp;quot;:&amp;quot;0x01&amp;quot;}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;status-set&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		&amp;quot;999:250&amp;quot;&lt;br /&gt;
	]&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
request (set status for climate-control):&lt;br /&gt;
{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;33:200&amp;quot;, &amp;quot;status&amp;quot;:{&amp;quot;state&amp;quot;:&amp;quot;on&amp;quot;,&amp;quot;setpoint-heat&amp;quot;:21.0}}&lt;br /&gt;
&lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;response&amp;quot;:&amp;quot;status-set&amp;quot;,&lt;br /&gt;
	&amp;quot;devices&amp;quot;:[&lt;br /&gt;
		{&lt;br /&gt;
			&amp;quot;addr&amp;quot;:&amp;quot;33:200&amp;quot;,&lt;br /&gt;
			&amp;quot;success&amp;quot;:true&lt;br /&gt;
		}&lt;br /&gt;
	]&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==CURL== &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Part from logic.xml --&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;585:16&amp;quot; auto-period=&amp;quot;1&amp;quot; cfgid=&amp;quot;4&amp;quot; name=&amp;quot;color-temp dimmer&amp;quot; type=&amp;quot;dimer-lamp&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;585:17&amp;quot; name=&amp;quot;main dimmer&amp;quot; type=&amp;quot;dimer-lamp&amp;quot; auto-period=&amp;quot;600&amp;quot; color-temp=&amp;quot;585:16&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;!-- END Part from logic.xml --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. Use request to get detailed info about element with &amp;quot;status&amp;quot;:&amp;quot;detailed&amp;quot;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot; line&amp;gt;&lt;br /&gt;
curl --header 'Content-Type: application/json' --data '{&amp;quot;request&amp;quot;:&amp;quot;status-get&amp;quot;, &amp;quot;API-KEY&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;, &amp;quot;addr&amp;quot;:&amp;quot;585:17&amp;quot;, &amp;quot;status&amp;quot;:&amp;quot;detailed&amp;quot;}' 'http://de-mg.local/API2/'&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Use request to set brightness for dimmer element&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot; line&amp;gt;&lt;br /&gt;
curl --header 'Content-Type: application/json' --data '{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;API-KEY&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;, &amp;quot;addr&amp;quot;:&amp;quot;585:17&amp;quot;, &amp;quot;status&amp;quot;:{&amp;quot;level&amp;quot;:10}}' 'http://de-mg.local/API2/'&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Use request to set color-temp for dimmer element&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot; line&amp;gt;&lt;br /&gt;
curl --header 'Content-Type: application/json' --data '{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;API-KEY&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;585:17&amp;quot;, &amp;quot;status&amp;quot;:{&amp;quot;color-temp&amp;quot;:100}}' 'http://de-mg.local/API2/'&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=CW-HTMLI-II_CW-CO2.C1&amp;diff=20613</id>
		<title>CW-HTMLI-II CW-CO2.C1</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=CW-HTMLI-II_CW-CO2.C1&amp;diff=20613"/>
		<updated>2025-11-07T10:14:21Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{revisionChanger |hasC=1 |hasC1=1}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
{{Infobox module&lt;br /&gt;
| name       = CW-HTMLI-II / CW-CO2.C1&lt;br /&gt;
| image      = CW-CO2 png.png&lt;br /&gt;
| cp         = Humidity, lighting, movement,&amp;lt;br&amp;gt;temperature, air quality sensor&lt;br /&gt;
| ir         = 360°&lt;br /&gt;
| voltage    = 11.5...27.5 V DC&lt;br /&gt;
| dim        = 85x85x35 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==6 IN 1 SENSOR== &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
This module contains motion, lighting, humidity, temperature,&lt;br /&gt;
air quality sensor and an IR transmitter.&lt;br /&gt;
&lt;br /&gt;
==Module view== &amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
[[File:HTMLI-II VIEWn.png|500px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:HTMLI-II VIEW2n.png|500px]]&lt;br /&gt;
&lt;br /&gt;
==Motion detection area== &amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:8--&amp;gt;&lt;br /&gt;
[[File:HTMLI-II MS.png|500px]]&lt;br /&gt;
&lt;br /&gt;
==Module parameters== &amp;lt;!--T:9--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:10--&amp;gt;&lt;br /&gt;
{{ Mp&lt;br /&gt;
| ctrlparams      = Humidity, lighting, movement,&amp;lt;br&amp;gt;temperature, air quality sensor&lt;br /&gt;
| irangle         = 360°&lt;br /&gt;
| power           = 11.5 … 27.5 V DC from CAN&lt;br /&gt;
| maxcur24v       = 100 mA&lt;br /&gt;
| bustype         = CAN (4-wire)&lt;br /&gt;
| instalation     = Wall, celling&lt;br /&gt;
| case            = ABS&lt;br /&gt;
| protection      = IP40&lt;br /&gt;
| temprange       = -10 … +50 °C&lt;br /&gt;
| size            = 85x85x35 mm&lt;br /&gt;
| weight          = 70g&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==HW settings== &amp;lt;!--T:11--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Name!!Type, range!!SUBID!!Default!!Description&lt;br /&gt;
|-&lt;br /&gt;
|offset||float(+/- 0…39)||SubID of sensor||0||sensor values offset (for temperature sensors) Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;offset='-3'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|scale||float (0…8)||SubID of sensor||1||multiplier determines the slope of values (except temperature sensors) Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;scale='1.1'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|pwr||integer (1…100)||SubID of IR-transmitter||50||Power of infrared transmitter signal. Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;pwr=50&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:12--&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:11&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;IR transmitter&amp;quot; type=&amp;quot;ir-transmitter&amp;quot; uniq_id=&amp;quot;102&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:30&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;Motion&amp;quot; type=&amp;quot;motion-sensor&amp;quot; uniq_id=&amp;quot;103&amp;quot; hw=&amp;quot;scale='3'&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:31&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;Illumination&amp;quot; type=&amp;quot;illumination-sensor&amp;quot; uniq_id=&amp;quot;104&amp;quot; hw=&amp;quot;scale='0.4'&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:32&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;Temperature&amp;quot; type=&amp;quot;temperature-sensor&amp;quot; uniq_id=&amp;quot;105&amp;quot; hw=&amp;quot;offset='10'&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:33&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;Humidity&amp;quot; type=&amp;quot;humidity-sensor&amp;quot; uniq_id=&amp;quot;106&amp;quot; hw=&amp;quot;scale='5'&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:98&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;Temperature&amp;quot; system=&amp;quot;yes&amp;quot; type=&amp;quot;temperature-sensor&amp;quot; uniq_id=&amp;quot;107&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=File:HTMLI-II_VIEWn.png&amp;diff=20612</id>
		<title>File:HTMLI-II VIEWn.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=File:HTMLI-II_VIEWn.png&amp;diff=20612"/>
		<updated>2025-11-07T10:14:00Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=CW-HTMLI-II_CW-CO2.C1&amp;diff=20611</id>
		<title>CW-HTMLI-II CW-CO2.C1</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=CW-HTMLI-II_CW-CO2.C1&amp;diff=20611"/>
		<updated>2025-11-07T10:12:43Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{revisionChanger |hasC=1 |hasC1=1}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
{{Infobox module&lt;br /&gt;
| name       = CW-HTMLI-II / CW-CO2.C1&lt;br /&gt;
| image      = CW-CO2 png.png&lt;br /&gt;
| cp         = Humidity, lighting, movement,&amp;lt;br&amp;gt;temperature, air quality sensor&lt;br /&gt;
| ir         = 360°&lt;br /&gt;
| voltage    = 11.5...27.5 V DC&lt;br /&gt;
| dim        = 85x85x35 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==6 IN 1 SENSOR== &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
This module contains motion, lighting, humidity, temperature,&lt;br /&gt;
air quality sensor and an IR transmitter.&lt;br /&gt;
&lt;br /&gt;
==Module view== &amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
[[File:HTMLI-II VIEW.png|500px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:HTMLI-II VIEW2n.png|500px]]&lt;br /&gt;
&lt;br /&gt;
==Motion detection area== &amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:8--&amp;gt;&lt;br /&gt;
[[File:HTMLI-II MS.png|500px]]&lt;br /&gt;
&lt;br /&gt;
==Module parameters== &amp;lt;!--T:9--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:10--&amp;gt;&lt;br /&gt;
{{ Mp&lt;br /&gt;
| ctrlparams      = Humidity, lighting, movement,&amp;lt;br&amp;gt;temperature, air quality sensor&lt;br /&gt;
| irangle         = 360°&lt;br /&gt;
| power           = 11.5 … 27.5 V DC from CAN&lt;br /&gt;
| maxcur24v       = 100 mA&lt;br /&gt;
| bustype         = CAN (4-wire)&lt;br /&gt;
| instalation     = Wall, celling&lt;br /&gt;
| case            = ABS&lt;br /&gt;
| protection      = IP40&lt;br /&gt;
| temprange       = -10 … +50 °C&lt;br /&gt;
| size            = 85x85x35 mm&lt;br /&gt;
| weight          = 70g&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==HW settings== &amp;lt;!--T:11--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Name!!Type, range!!SUBID!!Default!!Description&lt;br /&gt;
|-&lt;br /&gt;
|offset||float(+/- 0…39)||SubID of sensor||0||sensor values offset (for temperature sensors) Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;offset='-3'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|scale||float (0…8)||SubID of sensor||1||multiplier determines the slope of values (except temperature sensors) Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;scale='1.1'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|pwr||integer (1…100)||SubID of IR-transmitter||50||Power of infrared transmitter signal. Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;pwr=50&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:12--&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:11&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;IR transmitter&amp;quot; type=&amp;quot;ir-transmitter&amp;quot; uniq_id=&amp;quot;102&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:30&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;Motion&amp;quot; type=&amp;quot;motion-sensor&amp;quot; uniq_id=&amp;quot;103&amp;quot; hw=&amp;quot;scale='3'&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:31&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;Illumination&amp;quot; type=&amp;quot;illumination-sensor&amp;quot; uniq_id=&amp;quot;104&amp;quot; hw=&amp;quot;scale='0.4'&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:32&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;Temperature&amp;quot; type=&amp;quot;temperature-sensor&amp;quot; uniq_id=&amp;quot;105&amp;quot; hw=&amp;quot;offset='10'&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:33&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;Humidity&amp;quot; type=&amp;quot;humidity-sensor&amp;quot; uniq_id=&amp;quot;106&amp;quot; hw=&amp;quot;scale='5'&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;381:98&amp;quot; cfgid=&amp;quot;63&amp;quot; name=&amp;quot;Temperature&amp;quot; system=&amp;quot;yes&amp;quot; type=&amp;quot;temperature-sensor&amp;quot; uniq_id=&amp;quot;107&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=File:HTMLI-II_VIEW2n.png&amp;diff=20610</id>
		<title>File:HTMLI-II VIEW2n.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=File:HTMLI-II_VIEW2n.png&amp;diff=20610"/>
		<updated>2025-11-07T10:11:56Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=How_to_do&amp;diff=20609</id>
		<title>How to do</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=How_to_do&amp;diff=20609"/>
		<updated>2025-11-07T09:41:30Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
*[[Quick start guide|Quick start guide]]&lt;br /&gt;
*[[Larnitech Smart Home System Architecture|Larnitech Smart Home System Architecture]]&lt;br /&gt;
*Setup &amp;amp; Configuration&lt;br /&gt;
**[[Router setup|Router setup]]&lt;br /&gt;
**[[Installing the application and connecting it to the server|Installing the application and connecting it to the server]]&lt;br /&gt;
**[[Plug &amp;amp; play|Plug &amp;amp; play]]&lt;br /&gt;
**[[Binding buttons|Binding buttons]]&lt;br /&gt;
**[[Lighting scenarios|Lighting scenarios]]&lt;br /&gt;
**[[Heating setup|Heating setup]]&lt;br /&gt;
**[[Leak sensor setup|Leak sensor setup]]&lt;br /&gt;
**[[Multiroom setup|Multiroom]]&lt;br /&gt;
**[[Creating areas|Creating areas]]&lt;br /&gt;
**[[Distributed logic|Distributed logic]]&lt;br /&gt;
**[[LTSetup|LTSetup]]&lt;br /&gt;
**[[Remote access to your Larnitech Smart Home System|Remote access to your Larnitech Smart Home System]]&lt;br /&gt;
**[[Automation|Automation]]&lt;br /&gt;
**[[Plan control|Plan control]]&lt;br /&gt;
**[[Climate control settings|Climate control]]&lt;br /&gt;
**[[Security plugin settings|Security plugin]]&lt;br /&gt;
**[[Virtual device|Virtual device]]&lt;br /&gt;
**[[Disarming by Intercom with RFID/NFC cards|Disarming by Intercom with RFID/NFC cards]]&lt;br /&gt;
*Plugins&lt;br /&gt;
**[[Alexa|Alexa]]&lt;br /&gt;
**[[API2|API2]]&lt;br /&gt;
**[[Google Home|Google Home]]&lt;br /&gt;
**[[IKEA|IKEA]]&lt;br /&gt;
**[[Philips Hue|Philips Hue]]&lt;br /&gt;
**[[Siri|Siri]]&lt;br /&gt;
**[[Weather|Weather]]&lt;br /&gt;
**[[Modbus TCP|Modbus TCP]]&lt;br /&gt;
**[[iRidium|iRidium]]&lt;br /&gt;
**[[EIB|EIB]]&lt;br /&gt;
**[[Satel integration|Satel integration]]&lt;br /&gt;
**[[SIP|SIP]]&lt;br /&gt;
*[[Sonos|Sonos]]&lt;br /&gt;
*[[IFTTT (IF This, Then That)|IFTTT (IF This, Then That)]]&lt;br /&gt;
*[[Reset to factory defaults|Reset to factory defaults]]&lt;br /&gt;
*[[Messengers|Messengers]]&lt;br /&gt;
*[[Accounts|Accounts]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=How_to_do&amp;diff=20608</id>
		<title>How to do</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=How_to_do&amp;diff=20608"/>
		<updated>2025-11-07T09:40:34Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
*[[Quick start guide|Quick start guide]]&lt;br /&gt;
*[[Larnitech Smart Home System Architecture|Larnitech Smart Home System Architecture]]&lt;br /&gt;
*Setup &amp;amp; Configuration&lt;br /&gt;
**[[Router setup|Router setup]]&lt;br /&gt;
**[[Installing the application and connecting it to the server|Installing the application and connecting it to the server]]&lt;br /&gt;
**[[Plug &amp;amp; play|Plug &amp;amp; play]]&lt;br /&gt;
**[[Binding buttons|Binding buttons]]&lt;br /&gt;
**[[Lighting scenarios|Lighting scenarios]]&lt;br /&gt;
**[[Heating setup|Heating setup]]&lt;br /&gt;
**[[Leak sensor setup|Leak sensor setup]]&lt;br /&gt;
**[[Multiroom setup|Multiroom]]&lt;br /&gt;
**[[Creating areas|Creating areas]]&lt;br /&gt;
**[[Distributed logic|Distributed logic]]&lt;br /&gt;
**[[LTSetup|LTSetup]]&lt;br /&gt;
**[[Remote access to your Larnitech Smart Home System|Remote access to your Larnitech Smart Home System]]&lt;br /&gt;
**[[Automation|Automation]]&lt;br /&gt;
**[[Plan control|Plan control]]&lt;br /&gt;
**[[Climate control settings|Climate control]]&lt;br /&gt;
**[[Security plugin settings|Security plugin]]&lt;br /&gt;
**[[Virtual device|Virtual device]]&lt;br /&gt;
**[[Disarming by Intercom with RFID/NFC cards|Disarming by Intercom with RFID/NFC cards]]&lt;br /&gt;
*Plugins&lt;br /&gt;
**[[Alexa|Alexa]]&lt;br /&gt;
**[[API|API2]]&lt;br /&gt;
**[[Google Home|Google Home]]&lt;br /&gt;
**[[IKEA|IKEA]]&lt;br /&gt;
**[[Philips Hue|Philips Hue]]&lt;br /&gt;
**[[Siri|Siri]]&lt;br /&gt;
**[[Weather|Weather]]&lt;br /&gt;
**[[Modbus TCP|Modbus TCP]]&lt;br /&gt;
**[[iRidium|iRidium]]&lt;br /&gt;
**[[EIB|EIB]]&lt;br /&gt;
**[[Satel integration|Satel integration]]&lt;br /&gt;
**[[SIP|SIP]]&lt;br /&gt;
*[[Sonos|Sonos]]&lt;br /&gt;
*[[IFTTT (IF This, Then That)|IFTTT (IF This, Then That)]]&lt;br /&gt;
*[[Reset to factory defaults|Reset to factory defaults]]&lt;br /&gt;
*[[Messengers|Messengers]]&lt;br /&gt;
*[[Accounts|Accounts]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_%E2%80%93_DE-MG_comparison&amp;diff=20581</id>
		<title>Metaforsa – DE-MG comparison</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_%E2%80%93_DE-MG_comparison&amp;diff=20581"/>
		<updated>2025-07-15T08:49:21Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Larnitech GmbH offers smart home systems of two varieties: the simplified basic system called&lt;br /&gt;
Metaforsa and the full-function Larnitech Smart Home, based on the DE-MG (main gateway) module. The&lt;br /&gt;
table below offers the comparison between the 4 options.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;| style=&amp;quot;text-align: center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Feature!!DE-MG!!DE-MG.plus!!Metaforsa3!!Metaforsa3.plus&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Quantity of supported extra modules'''&amp;lt;br&amp;gt;This is the quantity of extra modules that can be connected to&amp;lt;br&amp;gt;the Smart Home systemsystem||999||999||4&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;||99&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Lighting scenarios'''&amp;lt;br&amp;gt;There is a possibility of creating various lighting scenarios||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Lighting automation'''&amp;lt;br&amp;gt;Lighting automation is based on motion detectors, level of&amp;lt;br&amp;gt;lighting, door position, time and date||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Quantity of additional scenarios'''&amp;lt;br&amp;gt;This is the number of additional scenarios that can be used&amp;lt;br&amp;gt;in the system. Lighting scenarios and lighting automation are&amp;lt;br&amp;gt;considered basic functions and are not included in this list||150+&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;||150+ &amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;||70+ &amp;lt;sup&amp;gt;1 2&amp;lt;/sup&amp;gt;||150+ &amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Quantity of IP cameras that can be integrated into the system'''&amp;lt;br&amp;gt;This function allows to view the image captured by IP cameras&amp;lt;br&amp;gt;and to control them using the Larnitech Smart Home application||99||99||1 &amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;||99&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Possibility of creating custom scenarios'''&amp;lt;br&amp;gt;Possibility of creating custom scenarios that do not exist in the&amp;lt;br&amp;gt;database||+||+||–&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Voice control (Siri, Alexa, Google Home, Alisa)'''||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Support of multiroom system'''&amp;lt;br&amp;gt;Ability to integrate the media points into the Smart Home system&amp;lt;br&amp;gt;in order to play the voice messages and control media content||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Intercom'''&amp;lt;br&amp;gt;Possibility to connect the FE-IC intercom to Larnitech Smart&amp;lt;br&amp;gt;Home system||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Support of third party media devices'''&amp;lt;br&amp;gt;Possibility to control the third party media devices that support the&amp;lt;br&amp;gt;DLNA protocol||+||+||–||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Remote control'''&amp;lt;br&amp;gt;Remote connection that allows to control all Smart Home&amp;lt;br&amp;gt;systems through direct or cloud connection||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''API'''&amp;lt;br&amp;gt;Application programming interface that allows to exchange data&amp;lt;br&amp;gt;and commands with third party applications||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Plug &amp;amp; Play'''&amp;lt;br&amp;gt;Technology that automatically detects and preconfigures new&amp;lt;br&amp;gt;devices connected to the system||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Video cloud'''&amp;lt;br&amp;gt;Possibility to view the image from IP cameras with the help of&amp;lt;br&amp;gt;cloud connection||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Number of relay outputs'''&amp;lt;br&amp;gt;Quantity of output channels that are built into the module in&amp;lt;br&amp;gt;order to connect the load||–||–||10||10&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Number of dimming channels'''&amp;lt;br&amp;gt;Quantity of dimming channels that are built into the module in&amp;lt;br&amp;gt;order to connect the dimming lamps||–||–||4||4&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Number of PWM outputs'''&amp;lt;br&amp;gt;PWM outputs combinated with inputs ||0||0||28||28&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Number of CAN ports'''&amp;lt;br&amp;gt;Quantity of CAN ports in order to connect additional modules ||2||2||1||1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Built-in IR receiver'''&amp;lt;br&amp;gt;Infrared receiver used to set up a universal remote||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: left;&amp;quot; | '''Additional interfaces'''&amp;lt;br&amp;gt;||–||Bluetooth&amp;lt;br&amp;gt;KNX||–||RS485&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; - Can be extended with the license&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; - Continually expands&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=API2&amp;diff=20577</id>
		<title>API2</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=API2&amp;diff=20577"/>
		<updated>2025-06-23T08:08:29Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
API2 works via WebSocket connection, so you can interact with your Larnitech server from a browser using extensions (such as WebSocket Test Client).&amp;lt;br&amp;gt;&lt;br /&gt;
To get started, you should:&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
1. Establish a web socket connection.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
ws://IPADDR:PORT/api&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Where: IPADDR – ip address of your metaforsa or DE-MG;&amp;lt;br&amp;gt;&lt;br /&gt;
PORT – port for API2 (you can get it from LT_Setup =&amp;amp;gt; General =&amp;amp;gt; API =&amp;amp;gt; Websocket port (2041 by default);&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
2. Authorize&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;request&amp;quot;: &amp;quot;authorize&amp;quot;,&lt;br /&gt;
    &amp;quot;key&amp;quot;: &amp;quot;XXXXXXXXXXXXXXX&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Where XXXXXXXXXXXXXXX - key from LT_Setup =&amp;amp;gt; Security =&amp;amp;gt; Show API key&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
3.After this you can send json requests:&lt;br /&gt;
&lt;br /&gt;
Fields of JSON_REQUEST:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;&amp;quot;request&amp;quot; - Type of request:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“getDevices” – request for getting the list of all devices;&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“getDeviceStatus” – request for getting device status;&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“setDeviceStatus” – request for setting device status;&amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt;“setDeviceStatusRaw” – request for setting device status (status in hex format);&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“getAllDevicesStatus” – request for getting all devices status.&amp;lt;/li&amp;gt;&lt;br /&gt;
       &lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“key” – key for API plugin (you can get it from LT Setup=&amp;amp;gt;Plugins=&amp;amp;gt;API=&amp;amp;gt;Configure button).&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“addr” – address of device.&amp;lt;/li&amp;gt;&lt;br /&gt;
 	&amp;lt;li&amp;gt;“status” – status of device.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
Examples of requests and responses:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot; line&amp;gt;&lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;requestType&amp;quot;:&amp;quot;getDevicesList&amp;quot;,&amp;quot;key&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;requestType&amp;quot;:&amp;quot;devicesList&amp;quot;,&lt;br /&gt;
    &amp;quot;devices&amp;quot;: [&lt;br /&gt;
        {&lt;br /&gt;
            &amp;quot;type&amp;quot;: &amp;quot;lamp&amp;quot;,&lt;br /&gt;
            &amp;quot;name&amp;quot;: &amp;quot;Ceiling&amp;quot;,&lt;br /&gt;
            &amp;quot;addr&amp;quot;:&amp;quot;401:1&amp;quot;&lt;br /&gt;
        },&lt;br /&gt;
                       &lt;br /&gt;
        {&lt;br /&gt;
            &amp;quot;type&amp;quot;: &amp;quot;conditioner&amp;quot;,&lt;br /&gt;
            &amp;quot;name&amp;quot;: &amp;quot;AC&amp;quot;,&lt;br /&gt;
            &amp;quot;addr&amp;quot;:&amp;quot;158:200&amp;quot;,&lt;br /&gt;
            &amp;quot;t-min&amp;quot;:&amp;quot;16&amp;quot;,&lt;br /&gt;
            &amp;quot;t-delta&amp;quot;:&amp;quot;16&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
 &lt;br /&gt;
        ]&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;requestType&amp;quot;:&amp;quot;getDeviceStatus&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;310:1&amp;quot;,&amp;quot;key&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;}&lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
   &amp;quot;requestType&amp;quot; : &amp;quot;deviceStatus&amp;quot;,&lt;br /&gt;
   &amp;quot;status&amp;quot; : {&lt;br /&gt;
      &amp;quot;addr&amp;quot; : &amp;quot;310:1&amp;quot;,&lt;br /&gt;
      &amp;quot;state&amp;quot; : &amp;quot;middle&amp;quot;,&lt;br /&gt;
      &amp;quot;type&amp;quot; : &amp;quot;jalousie&amp;quot;&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;requestType&amp;quot;:&amp;quot;setDeviceStatus&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;310:1&amp;quot;,&amp;quot;key&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;,&amp;quot;status&amp;quot;:{&amp;quot;state&amp;quot;: &amp;quot;on&amp;quot;}}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;requestType&amp;quot;:&amp;quot;setDeviceStatus&amp;quot;,&lt;br /&gt;
  &amp;quot;addr&amp;quot;:&amp;quot;410:1&amp;quot;,&lt;br /&gt;
  &amp;quot;status&amp;quot;:{&lt;br /&gt;
    &amp;quot;state&amp;quot;: &amp;quot;on&amp;quot;&lt;br /&gt;
  }&lt;br /&gt;
   &lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;requestType&amp;quot;:&amp;quot;getAllDevicesStatus&amp;quot;,&amp;quot;key&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;requestType&amp;quot;:&amp;quot;allDevicesStatus&amp;quot;,&lt;br /&gt;
    &amp;quot;statuses&amp;quot;: [&lt;br /&gt;
      {&lt;br /&gt;
        &amp;quot;addr&amp;quot;:&amp;quot;401:1&amp;quot;,&lt;br /&gt;
        &amp;quot;state&amp;quot;: &amp;quot;off&amp;quot;,&lt;br /&gt;
      },&lt;br /&gt;
       &lt;br /&gt;
      {&lt;br /&gt;
        &amp;quot;addr&amp;quot;:&amp;quot;158:200&amp;quot;,&lt;br /&gt;
        &amp;quot;state&amp;quot;: &amp;quot;on&amp;quot;,&lt;br /&gt;
        &amp;quot;temp&amp;quot;:&amp;quot;25&amp;quot;,&lt;br /&gt;
        &amp;quot;mode&amp;quot;:&amp;quot;cool&amp;quot;,&lt;br /&gt;
        &amp;quot;fan&amp;quot;:&amp;quot;low&amp;quot;,&lt;br /&gt;
        &amp;quot;vane-ver&amp;quot;:&amp;quot;1&amp;quot;,&lt;br /&gt;
        &amp;quot;vane-hor&amp;quot;:&amp;quot;4&amp;quot;&lt;br /&gt;
      }  &lt;br /&gt;
        ]&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
request:&lt;br /&gt;
{&amp;quot;requestType&amp;quot;:&amp;quot;setDeviceStatusRaw&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;310:1&amp;quot;,&amp;quot;key&amp;quot;:&amp;quot;0&amp;quot;,&amp;quot;status&amp;quot;:{&amp;quot;state&amp;quot;:&amp;quot;ff00&amp;quot;}}&lt;br /&gt;
 &lt;br /&gt;
response:&lt;br /&gt;
{&lt;br /&gt;
   &amp;quot;addr&amp;quot; : &amp;quot;310:1&amp;quot;,&lt;br /&gt;
   &amp;quot;key&amp;quot; : &amp;quot;0&amp;quot;,&lt;br /&gt;
   &amp;quot;requestType&amp;quot; : &amp;quot;setDeviceStatusRaw&amp;quot;,&lt;br /&gt;
   &amp;quot;status&amp;quot; : {&lt;br /&gt;
      &amp;quot;state&amp;quot; : &amp;quot;ff00&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==CURL== &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Part from logic.xml --&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;585:16&amp;quot; auto-period=&amp;quot;1&amp;quot; cfgid=&amp;quot;4&amp;quot; name=&amp;quot;color-temp dimmer&amp;quot; type=&amp;quot;dimer-lamp&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;585:17&amp;quot; name=&amp;quot;main dimmer&amp;quot; type=&amp;quot;dimer-lamp&amp;quot; auto-period=&amp;quot;600&amp;quot; color-temp=&amp;quot;585:16&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;!-- END Part from logic.xml --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. Use request to get detailed info about element with &amp;quot;status&amp;quot;:&amp;quot;detailed&amp;quot;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot; line&amp;gt;&lt;br /&gt;
curl --header 'Content-Type: application/json' --data '{&amp;quot;request&amp;quot;:&amp;quot;status-get&amp;quot;, &amp;quot;API-KEY&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;, &amp;quot;addr&amp;quot;:&amp;quot;585:17&amp;quot;, &amp;quot;status&amp;quot;:&amp;quot;detailed&amp;quot;}' 'http://de-mg.local/API2/'&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Use request to set brightness for dimmer element&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot; line&amp;gt;&lt;br /&gt;
curl --header 'Content-Type: application/json' --data '{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;API-KEY&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;, &amp;quot;addr&amp;quot;:&amp;quot;585:17&amp;quot;, &amp;quot;status&amp;quot;:{&amp;quot;level&amp;quot;:10}}' 'http://de-mg.local/API2/'&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Use request to set color-temp for dimmer element&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot; line&amp;gt;&lt;br /&gt;
curl --header 'Content-Type: application/json' --data '{&amp;quot;request&amp;quot;:&amp;quot;status-set&amp;quot;,&amp;quot;API-KEY&amp;quot;:&amp;quot;ENTER_API_KEY&amp;quot;,&amp;quot;addr&amp;quot;:&amp;quot;585:17&amp;quot;, &amp;quot;status&amp;quot;:{&amp;quot;color-temp&amp;quot;:100}}' 'http://de-mg.local/API2/'&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=MediaWiki:Common.css&amp;diff=11170</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=MediaWiki:Common.css&amp;diff=11170"/>
		<updated>2023-10-29T12:26:28Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Reset italic styling set by user agent */&lt;br /&gt;
cite,&lt;br /&gt;
dfn {&lt;br /&gt;
	font-style: inherit;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Straight quote marks for &amp;lt;q&amp;gt; */&lt;br /&gt;
q {&lt;br /&gt;
	quotes: '&amp;quot;' '&amp;quot;' &amp;quot;'&amp;quot; &amp;quot;'&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Avoid collision of blockquote with floating elements by swapping margin and padding */&lt;br /&gt;
blockquote {&lt;br /&gt;
	overflow: hidden;&lt;br /&gt;
	margin: 1em 0;&lt;br /&gt;
	padding: 0 40px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Consistent size for &amp;lt;small&amp;gt;, &amp;lt;sub&amp;gt; and &amp;lt;sup&amp;gt; */&lt;br /&gt;
small {&lt;br /&gt;
	font-size: 85%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body-content p&lt;br /&gt;
{&lt;br /&gt;
max-width:1000px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.caution &lt;br /&gt;
{&lt;br /&gt;
max-width:1000px;&lt;br /&gt;
background-color:#d4d4d4;&lt;br /&gt;
padding:5px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cautiontable&lt;br /&gt;
{&lt;br /&gt;
background-color:#d4d4d4;&lt;br /&gt;
margin:5px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.mw-body-content sub,&lt;br /&gt;
.mw-body-content sup,&lt;br /&gt;
span.reference /* for Parsoid */ {&lt;br /&gt;
	font-size: 80%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Same spacing for indented and unindented paragraphs on talk pages */&lt;br /&gt;
.ns-talk .mw-body-content dd {&lt;br /&gt;
	margin-top: 0.4em;&lt;br /&gt;
	margin-bottom: 0.4em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Main page fixes */&lt;br /&gt;
#interwiki-completelist {&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Reduce page jumps by hiding collapsed/dismissed content */&lt;br /&gt;
.client-js .mw-special-Watchlist #watchlist-message,&lt;br /&gt;
.client-js .NavFrame.collapsed .NavContent,&lt;br /&gt;
.client-js .collapsible:not( .mw-made-collapsible).collapsed &amp;gt; tbody &amp;gt; tr:not(:first-child) {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Adds padding above Watchlist announcements where new recentchanges/watchlist filters are enabled */&lt;br /&gt;
.mw-rcfilters-enabled .mw-specialpage-summary {&lt;br /&gt;
	margin-top: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hide charinsert base for those not using the gadget */&lt;br /&gt;
#editpage-specialchars {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Highlight linked elements (such as clicked references) in blue */&lt;br /&gt;
body.action-info .mw-body-content :target,&lt;br /&gt;
.citation:target {&lt;br /&gt;
	background-color: rgba(0, 127, 255, 0.133);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Styling for citations. Breaks long urls, etc., rather than overflowing box */&lt;br /&gt;
.citation {&lt;br /&gt;
	word-wrap: break-word;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Make the list of references smaller&lt;br /&gt;
 * Keep in sync with Template:Refbegin/styles.css&lt;br /&gt;
 * And Template:Reflist/styles.css&lt;br /&gt;
 */&lt;br /&gt;
ol.references {&lt;br /&gt;
	font-size: 90%;&lt;br /&gt;
	margin-bottom: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Style for horizontal lists (separator following item).&lt;br /&gt;
   @source mediawiki.org/wiki/Snippets/Horizontal_lists&lt;br /&gt;
   @revision 8 (2016-05-21)&lt;br /&gt;
   @author [[User:Edokter]]&lt;br /&gt;
 */&lt;br /&gt;
.hlist dl,&lt;br /&gt;
.hlist ol,&lt;br /&gt;
.hlist ul {&lt;br /&gt;
	margin: 0;&lt;br /&gt;
	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Display list items inline */&lt;br /&gt;
.hlist dd,&lt;br /&gt;
.hlist dt,&lt;br /&gt;
.hlist li {&lt;br /&gt;
	margin: 0; /* don't trust the note that says margin doesn't work with inline&lt;br /&gt;
				* removing margin: 0 makes dds have margins again */&lt;br /&gt;
	display: inline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Display nested lists inline */&lt;br /&gt;
.hlist.inline,&lt;br /&gt;
.hlist.inline dl,&lt;br /&gt;
.hlist.inline ol,&lt;br /&gt;
.hlist.inline ul,&lt;br /&gt;
.hlist dl dl,&lt;br /&gt;
.hlist dl ol,&lt;br /&gt;
.hlist dl ul,&lt;br /&gt;
.hlist ol dl,&lt;br /&gt;
.hlist ol ol,&lt;br /&gt;
.hlist ol ul,&lt;br /&gt;
.hlist ul dl,&lt;br /&gt;
.hlist ul ol,&lt;br /&gt;
.hlist ul ul {&lt;br /&gt;
	display: inline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hide empty list items */&lt;br /&gt;
.hlist .mw-empty-li {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Generate interpuncts */&lt;br /&gt;
.hlist dt:after {&lt;br /&gt;
	content: &amp;quot;: &amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * Note hlist style usage differs in Minerva and is defined in core as well!&lt;br /&gt;
 * Please check Minerva desktop (and Minerva.css) when changing&lt;br /&gt;
 * See https://phabricator.wikimedia.org/T213239&lt;br /&gt;
 */&lt;br /&gt;
.hlist dd:after,&lt;br /&gt;
.hlist li:after {&lt;br /&gt;
	content: &amp;quot; · &amp;quot;;&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hlist dd:last-child:after,&lt;br /&gt;
.hlist dt:last-child:after,&lt;br /&gt;
.hlist li:last-child:after {&lt;br /&gt;
	content: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Add parentheses around nested lists */&lt;br /&gt;
.hlist dd dd:first-child:before,&lt;br /&gt;
.hlist dd dt:first-child:before,&lt;br /&gt;
.hlist dd li:first-child:before,&lt;br /&gt;
.hlist dt dd:first-child:before,&lt;br /&gt;
.hlist dt dt:first-child:before,&lt;br /&gt;
.hlist dt li:first-child:before,&lt;br /&gt;
.hlist li dd:first-child:before,&lt;br /&gt;
.hlist li dt:first-child:before,&lt;br /&gt;
.hlist li li:first-child:before {&lt;br /&gt;
	content: &amp;quot; (&amp;quot;;&lt;br /&gt;
	font-weight: normal;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hlist dd dd:last-child:after,&lt;br /&gt;
.hlist dd dt:last-child:after,&lt;br /&gt;
.hlist dd li:last-child:after,&lt;br /&gt;
.hlist dt dd:last-child:after,&lt;br /&gt;
.hlist dt dt:last-child:after,&lt;br /&gt;
.hlist dt li:last-child:after,&lt;br /&gt;
.hlist li dd:last-child:after,&lt;br /&gt;
.hlist li dt:last-child:after,&lt;br /&gt;
.hlist li li:last-child:after {&lt;br /&gt;
	content: &amp;quot;)&amp;quot;;&lt;br /&gt;
	font-weight: normal;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Put ordinals in front of ordered list items */&lt;br /&gt;
.hlist ol {&lt;br /&gt;
	counter-reset: listitem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hlist ol &amp;gt; li {&lt;br /&gt;
	counter-increment: listitem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hlist ol &amp;gt; li:before {&lt;br /&gt;
	content: &amp;quot; &amp;quot; counter(listitem) &amp;quot;\a0&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hlist dd ol &amp;gt; li:first-child:before,&lt;br /&gt;
.hlist dt ol &amp;gt; li:first-child:before,&lt;br /&gt;
.hlist li ol &amp;gt; li:first-child:before {&lt;br /&gt;
	content: &amp;quot; (&amp;quot; counter(listitem) &amp;quot;\a0&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Unbulleted lists */&lt;br /&gt;
.plainlist ol,&lt;br /&gt;
.plainlist ul {&lt;br /&gt;
	line-height: inherit;&lt;br /&gt;
	list-style: none none;&lt;br /&gt;
	margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.plainlist ol li,&lt;br /&gt;
.plainlist ul li {&lt;br /&gt;
	margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Default style for navigation boxes */&lt;br /&gt;
.navbox {                     /* Navbox container style */&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
	border: 1px solid #a2a9b1;&lt;br /&gt;
	width: 100%;&lt;br /&gt;
	clear: both;&lt;br /&gt;
	font-size: 88%;&lt;br /&gt;
	text-align: center;&lt;br /&gt;
	padding: 1px;&lt;br /&gt;
	margin: 1em auto 0;       /* Prevent preceding content from clinging to navboxes */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox .navbox {&lt;br /&gt;
	margin-top: 0;            /* No top margin for nested navboxes */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox + .navbox {&lt;br /&gt;
	margin-top: -1px;         /* Single pixel border between adjacent navboxes */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox-inner,&lt;br /&gt;
.navbox-subgroup {&lt;br /&gt;
	width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox-group,&lt;br /&gt;
.navbox-title,&lt;br /&gt;
.navbox-abovebelow {&lt;br /&gt;
	padding: 0.25em 1em;      /* Title, group and above/below styles */&lt;br /&gt;
	line-height: 1.5em;&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
th.navbox-group {             /* Group style */&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	text-align: right;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox,&lt;br /&gt;
.navbox-subgroup {&lt;br /&gt;
	background-color: #fdfdfd; /* Background color */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox-list {&lt;br /&gt;
	line-height: 1.5em;&lt;br /&gt;
	border-color: #fdfdfd;    /* Must match background color */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* cell spacing for navbox cells */&lt;br /&gt;
tr + tr &amp;gt; .navbox-abovebelow,&lt;br /&gt;
tr + tr &amp;gt; .navbox-group,&lt;br /&gt;
tr + tr &amp;gt; .navbox-image,&lt;br /&gt;
tr + tr &amp;gt; .navbox-list {    /* Borders above 2nd, 3rd, etc. rows */&lt;br /&gt;
	border-top: 2px solid #fdfdfd; /* Must match background color */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox th,&lt;br /&gt;
.navbox-title {&lt;br /&gt;
	background-color: #ccccff;      /* Level 1 color */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox-abovebelow,&lt;br /&gt;
th.navbox-group,&lt;br /&gt;
.navbox-subgroup .navbox-title {&lt;br /&gt;
	background-color: #ddddff;      /* Level 2 color */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox-subgroup .navbox-group,&lt;br /&gt;
.navbox-subgroup .navbox-abovebelow {&lt;br /&gt;
	background-color: #e6e6ff;      /* Level 3 color */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox-even {&lt;br /&gt;
	background-color: #f7f7f7;      /* Even row striping */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox-odd {&lt;br /&gt;
	background-color: transparent;  /* Odd row striping */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.navbox .hlist td dl,&lt;br /&gt;
.navbox .hlist td ol,&lt;br /&gt;
.navbox .hlist td ul,&lt;br /&gt;
.navbox td.hlist dl,&lt;br /&gt;
.navbox td.hlist ol,&lt;br /&gt;
.navbox td.hlist ul {&lt;br /&gt;
	padding: 0.125em 0;       /* Adjust hlist padding in navboxes */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Styling for JQuery makeCollapsible, matching that of collapseButton */&lt;br /&gt;
.mw-parser-output .mw-collapsible-toggle {&lt;br /&gt;
	font-weight: normal;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	text-align: right;&lt;br /&gt;
	padding-right: 0.2em;&lt;br /&gt;
	padding-left: 0.2em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-collapsible-leftside-toggle .mw-collapsible-toggle {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	float: left;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	text-align: left;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Infobox template style */&lt;br /&gt;
.infobox {&lt;br /&gt;
	border: 1px solid #a2a9b1;&lt;br /&gt;
	border-spacing: 3px;&lt;br /&gt;
	background-color: #f8f9fa;&lt;br /&gt;
	color: black;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	margin: 0.5em 0 0.5em 1em;&lt;br /&gt;
	padding: 0.2em;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	float: right;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	clear: right;&lt;br /&gt;
	font-size: 88%;&lt;br /&gt;
	line-height: 1.5em;&lt;br /&gt;
	width: 22em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* not strictly certain these styles are necessary&lt;br /&gt;
 * just replicating the module faithfully&lt;br /&gt;
 */&lt;br /&gt;
.infobox-subbox {&lt;br /&gt;
	padding: 0;&lt;br /&gt;
	border: none;&lt;br /&gt;
	margin: -3px;&lt;br /&gt;
	width: auto;&lt;br /&gt;
	min-width: 100%;&lt;br /&gt;
	font-size: 100%;&lt;br /&gt;
	clear: none;&lt;br /&gt;
	float: none;&lt;br /&gt;
	background-color: transparent;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.infobox-header,&lt;br /&gt;
.infobox-label,&lt;br /&gt;
.infobox-above,&lt;br /&gt;
.infobox-full-data,&lt;br /&gt;
.infobox-data,&lt;br /&gt;
.infobox-below,&lt;br /&gt;
.infobox-subheader,&lt;br /&gt;
.infobox-image,&lt;br /&gt;
.infobox-navbar,&lt;br /&gt;
/* Remove element declaration when both a) infobox3cols is migrated and&lt;br /&gt;
 * b) when every .infobox thing is using the standard module/templates  */&lt;br /&gt;
.infobox th,&lt;br /&gt;
.infobox td {&lt;br /&gt;
	vertical-align: top;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.infobox-label,&lt;br /&gt;
.infobox-data,&lt;br /&gt;
/* Remove element declaration when both a) infobox3cols is migrated and&lt;br /&gt;
 * b) when every .infobox thing is using the standard module/templates  */&lt;br /&gt;
.infobox th,&lt;br /&gt;
.infobox td {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	text-align: left;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* remove .infobox when th, td above are removed */&lt;br /&gt;
.infobox .infobox-above,&lt;br /&gt;
.infobox .infobox-title,&lt;br /&gt;
/* Remove element declaration when both a) infobox3cols is migrated and&lt;br /&gt;
 * b) when every .infobox thing is using the standard module/templates  */&lt;br /&gt;
.infobox caption {&lt;br /&gt;
	font-size: 125%;&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.infobox-title,&lt;br /&gt;
/* Remove element declaration when both a) infobox3cols is migrated and&lt;br /&gt;
 * b) when every .infobox thing is using the standard module/templates  */&lt;br /&gt;
.infobox caption {&lt;br /&gt;
	padding: 0.2em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* remove .infobox when th, td above are removed */&lt;br /&gt;
.infobox .infobox-header,&lt;br /&gt;
.infobox .infobox-subheader,&lt;br /&gt;
.infobox .infobox-image,&lt;br /&gt;
.infobox .infobox-full-data,&lt;br /&gt;
.infobox .infobox-below {&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* remove .infobox when th, td above are removed */&lt;br /&gt;
.infobox .infobox-navbar {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	text-align: right;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.infobox.bordered {&lt;br /&gt;
	border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* TODO split definitions to appropriate class names when live from HTML element */&lt;br /&gt;
.infobox.bordered td,&lt;br /&gt;
.infobox.bordered th {&lt;br /&gt;
	border: 1px solid #a2a9b1;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* TODO split definitions to appropriate class names when live from HTML element */&lt;br /&gt;
.infobox.bordered .borderless td,&lt;br /&gt;
.infobox.bordered .borderless th {&lt;br /&gt;
	border: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* styles for bordered infobox with merged rows */&lt;br /&gt;
/* TODO split definitions to appropriate class names when live from HTML element */&lt;br /&gt;
.infobox.bordered .mergedtoprow td,&lt;br /&gt;
.infobox.bordered .mergedtoprow th {&lt;br /&gt;
	border: 0;&lt;br /&gt;
	border-top: 1px solid #a2a9b1;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	border-right: 1px solid #a2a9b1;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* TODO split definitions to appropriate class names when live from HTML element */&lt;br /&gt;
.infobox.bordered .mergedrow td,&lt;br /&gt;
.infobox.bordered .mergedrow th {&lt;br /&gt;
	border: 0;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	border-right: 1px solid #a2a9b1;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Styles for geography infoboxes, eg countries,&lt;br /&gt;
   country subdivisions, cities, etc.            */&lt;br /&gt;
.infobox.geography {&lt;br /&gt;
	border-collapse: collapse;&lt;br /&gt;
	line-height: 1.2em;&lt;br /&gt;
	font-size: 90%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* TODO split definitions to appropriate class names when live from HTML element */&lt;br /&gt;
.infobox.geography  td,&lt;br /&gt;
.infobox.geography  th {&lt;br /&gt;
	border-top: 1px solid #a2a9b1;&lt;br /&gt;
	padding: 0.4em 0.6em 0.4em 0.6em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* TODO split definitions to appropriate class names when live from HTML element */&lt;br /&gt;
.infobox.geography .mergedtoprow td,&lt;br /&gt;
.infobox.geography .mergedtoprow th {&lt;br /&gt;
	border-top: 1px solid #a2a9b1;&lt;br /&gt;
	padding: 0.4em 0.6em 0.2em 0.6em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* TODO split definitions to appropriate class names when live from HTML element */&lt;br /&gt;
.infobox.geography .mergedrow td,&lt;br /&gt;
.infobox.geography .mergedrow th {&lt;br /&gt;
	border: 0;&lt;br /&gt;
	padding: 0 0.6em 0.2em 0.6em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* TODO split definitions to appropriate class names when live from HTML element */&lt;br /&gt;
.infobox.geography .mergedbottomrow td,&lt;br /&gt;
.infobox.geography .mergedbottomrow th {&lt;br /&gt;
	border-top: 0;&lt;br /&gt;
	border-bottom: 1px solid #a2a9b1;&lt;br /&gt;
	padding: 0 0.6em 0.4em 0.6em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* TODO split definitions to appropriate class names when live from HTML element */&lt;br /&gt;
.infobox.geography .maptable td,&lt;br /&gt;
.infobox.geography .maptable th {&lt;br /&gt;
	border: 0;&lt;br /&gt;
	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Normal font styling for wikitable row headers with scope=&amp;quot;row&amp;quot; tag */&lt;br /&gt;
.wikitable.plainrowheaders th[scope=row] {&lt;br /&gt;
	font-weight: normal;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	text-align: left;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Lists in wikitable data cells are always left-aligned */&lt;br /&gt;
.wikitable td ul,&lt;br /&gt;
.wikitable td ol,&lt;br /&gt;
.wikitable td dl {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	text-align: left;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* ...unless they also use the hlist class */&lt;br /&gt;
.toc.hlist ul,&lt;br /&gt;
#toc.hlist ul,&lt;br /&gt;
.wikitable.hlist td ul,&lt;br /&gt;
.wikitable.hlist td ol,&lt;br /&gt;
.wikitable.hlist td dl {&lt;br /&gt;
	text-align: inherit;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Fix for hieroglyphs specificity issue in infoboxes ([[phab:T43869]]) */&lt;br /&gt;
table.mw-hiero-table td {&lt;br /&gt;
	vertical-align: middle;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Change the external link icon to an Adobe icon for all PDF files */&lt;br /&gt;
.mw-parser-output a[href$=&amp;quot;.pdf&amp;quot;].external,&lt;br /&gt;
.mw-parser-output a[href*=&amp;quot;.pdf?&amp;quot;].external,&lt;br /&gt;
.mw-parser-output a[href*=&amp;quot;.pdf#&amp;quot;].external,&lt;br /&gt;
.mw-parser-output a[href$=&amp;quot;.PDF&amp;quot;].external,&lt;br /&gt;
.mw-parser-output a[href*=&amp;quot;.PDF?&amp;quot;].external,&lt;br /&gt;
.mw-parser-output a[href*=&amp;quot;.PDF#&amp;quot;].external {&lt;br /&gt;
	background: url(&amp;quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&amp;quot;) no-repeat right;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	padding-right: 18px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Messagebox templates */&lt;br /&gt;
.messagebox {&lt;br /&gt;
	border: 1px solid #a2a9b1;&lt;br /&gt;
	background-color: #f8f9fa;&lt;br /&gt;
	width: 80%;&lt;br /&gt;
	margin: 0 auto 1em auto;&lt;br /&gt;
	padding: .2em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.messagebox.merge {&lt;br /&gt;
	border: 1px solid #c0b8cc;&lt;br /&gt;
	background-color: #f0e5ff;&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.messagebox.cleanup {&lt;br /&gt;
	border: 1px solid #9f9fff;&lt;br /&gt;
	background-color: #efefff;&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.messagebox.standard-talk {&lt;br /&gt;
	border: 1px solid #c0c090;&lt;br /&gt;
	background-color: #f8eaba;&lt;br /&gt;
	margin: 4px auto;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* For old WikiProject banners inside banner shells. */&lt;br /&gt;
.mbox-inside .standard-talk {&lt;br /&gt;
	border: 1px solid #c0c090;&lt;br /&gt;
	background-color: #f8eaba;&lt;br /&gt;
	width: 100%;&lt;br /&gt;
	margin: 2px 0;&lt;br /&gt;
	padding: 2px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.messagebox.small {&lt;br /&gt;
	width: 238px;&lt;br /&gt;
	font-size: 85%;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	float: right;&lt;br /&gt;
	clear: both;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	margin: 0 0 1em 1em;&lt;br /&gt;
	line-height: 1.25em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.messagebox.small-talk {&lt;br /&gt;
	width: 238px;&lt;br /&gt;
	font-size: 85%;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	float: right;&lt;br /&gt;
	clear: both;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	margin: 0 0 1em 1em;&lt;br /&gt;
	line-height: 1.25em;&lt;br /&gt;
	background-color: #f8eaba;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */&lt;br /&gt;
th.mbox-text, td.mbox-text {   /* The message body cell(s) */&lt;br /&gt;
	border: none;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	padding: 0.25em 0.9em;     /* 0.9em left/right */&lt;br /&gt;
	width: 100%;               /* Make all mboxes the same width regardless of text length */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
td.mbox-image {                /* The left image cell */&lt;br /&gt;
	border: none;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	padding: 2px 0 2px 0.9em;  /* 0.9em left, 0px right */&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
td.mbox-imageright {           /* The right image cell */&lt;br /&gt;
	border: none;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	padding: 2px 0.9em 2px 0;  /* 0px left, 0.9em right */&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
td.mbox-empty-cell {           /* An empty narrow cell */&lt;br /&gt;
	border: none;&lt;br /&gt;
	padding: 0;&lt;br /&gt;
	width: 1px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Article message box styles */&lt;br /&gt;
table.ambox {&lt;br /&gt;
	margin: 0 10%;                  /* 10% = Will not overlap with other elements */&lt;br /&gt;
	border: 1px solid #a2a9b1;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	border-left: 10px solid #36c;  /* Default &amp;quot;notice&amp;quot; blue */&lt;br /&gt;
	background-color: #fbfbfb;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox + table.ambox {      /* Single border between stacked boxes. */&lt;br /&gt;
	margin-top: -1px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.ambox th.mbox-text,&lt;br /&gt;
.ambox td.mbox-text {            /* The message body cell(s) */&lt;br /&gt;
	padding: 0.25em 0.5em;       /* 0.5em left/right */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.ambox td.mbox-image {           /* The left image cell */&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	padding: 2px 0 2px 0.5em;    /* 0.5em left, 0px right */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.ambox td.mbox-imageright {      /* The right image cell */&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	padding: 2px 0.5em 2px 0;    /* 0px left, 0.5em right */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-notice {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	border-left: 10px solid #36c;       /* Blue */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-speedy {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	border-left: 10px solid #b32424;    /* Red */&lt;br /&gt;
	background-color: #fee7e6;          /* Pink */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-delete {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	border-left: 10px solid #b32424;    /* Red */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-content {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	border-left: 10px solid #f28500;    /* Orange */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-style {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	border-left: 10px solid #fc3;       /* Yellow */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-move {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	border-left: 10px solid #9932cc;    /* Purple */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-protection {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	border-left: 10px solid #a2a9b1;    /* Gray-gold */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Image message box styles */&lt;br /&gt;
table.imbox {&lt;br /&gt;
	margin: 4px 10%;&lt;br /&gt;
	border-collapse: collapse;&lt;br /&gt;
	border: 3px solid #36c;    /* Default &amp;quot;notice&amp;quot; blue */&lt;br /&gt;
	background-color: #fbfbfb;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.imbox .mbox-text .imbox {  /* For imboxes inside imbox-text cells. */&lt;br /&gt;
	margin: 0 -0.5em;       /* 0.9 - 0.5 = 0.4em left/right.        */&lt;br /&gt;
	display: block;         /* Fix for webkit to force 100% width.  */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mbox-inside .imbox {       /* For imboxes inside other templates.  */&lt;br /&gt;
	margin: 4px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.imbox-notice {&lt;br /&gt;
	border: 3px solid #36c;       /* Blue */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.imbox-speedy {&lt;br /&gt;
	border: 3px solid #b32424;    /* Red */&lt;br /&gt;
	background-color: #fee7e6;    /* Pink */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.imbox-delete {&lt;br /&gt;
	border: 3px solid #b32424;    /* Red */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.imbox-content {&lt;br /&gt;
	border: 3px solid #f28500;    /* Orange */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.imbox-style {&lt;br /&gt;
	border: 3px solid #fc3;       /* Yellow */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.imbox-move {&lt;br /&gt;
	border: 3px solid #9932cc;    /* Purple */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.imbox-protection {&lt;br /&gt;
	border: 3px solid #a2a9b1;    /* Gray-gold */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.imbox-license {&lt;br /&gt;
	border: 3px solid #88a;       /* Dark gray */&lt;br /&gt;
	background-color: #f7f8ff;    /* Light gray */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.imbox-featured {&lt;br /&gt;
	border: 3px solid #cba135;    /* Brown-gold */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Category message box styles */&lt;br /&gt;
table.cmbox {&lt;br /&gt;
	margin: 3px 10%;&lt;br /&gt;
	border-collapse: collapse;&lt;br /&gt;
	border: 1px solid #a2a9b1;&lt;br /&gt;
	background-color: #dfe8ff;    /* Default &amp;quot;notice&amp;quot; blue */&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.cmbox-notice {&lt;br /&gt;
	background-color: #d8e8ff;    /* Blue */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.cmbox-speedy {&lt;br /&gt;
	margin-top: 4px;&lt;br /&gt;
	margin-bottom: 4px;&lt;br /&gt;
	border: 4px solid #b32424;    /* Red */&lt;br /&gt;
	background-color: #ffdbdb;    /* Pink */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.cmbox-delete {&lt;br /&gt;
	background-color: #ffdbdb;    /* Pink */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.cmbox-content {&lt;br /&gt;
	background-color: #ffe7ce;    /* Orange */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.cmbox-style {&lt;br /&gt;
	background-color: #fff9db;    /* Yellow */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.cmbox-move {&lt;br /&gt;
	background-color: #e4d8ff;    /* Purple */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.cmbox-protection {&lt;br /&gt;
	background-color: #efefe1;    /* Gray-gold */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Other pages message box styles */&lt;br /&gt;
table.ombox {&lt;br /&gt;
	margin: 4px 10%;&lt;br /&gt;
	border-collapse: collapse;&lt;br /&gt;
	border: 1px solid #a2a9b1;    /* Default &amp;quot;notice&amp;quot; gray */&lt;br /&gt;
	background-color: #f8f9fa;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-notice {&lt;br /&gt;
	border: 1px solid #a2a9b1;    /* Gray */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-speedy {&lt;br /&gt;
	border: 2px solid #b32424;    /* Red */&lt;br /&gt;
	background-color: #fee7e6;    /* Pink */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-delete {&lt;br /&gt;
	border: 2px solid #b32424;    /* Red */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-content {&lt;br /&gt;
	border: 1px solid #f28500;    /* Orange */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-style {&lt;br /&gt;
	border: 1px solid #fc3;       /* Yellow */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-move {&lt;br /&gt;
	border: 1px solid #9932cc;    /* Purple */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-protection {&lt;br /&gt;
	border: 2px solid #a2a9b1;    /* Gray-gold */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Talk page message box styles */&lt;br /&gt;
table.tmbox {&lt;br /&gt;
	margin: 4px 10%;&lt;br /&gt;
	border-collapse: collapse;&lt;br /&gt;
	border: 1px solid #c0c090;    /* Default &amp;quot;notice&amp;quot; gray-brown */&lt;br /&gt;
	background-color: #f8eaba;&lt;br /&gt;
	min-width: 80%;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.tmbox.mbox-small {&lt;br /&gt;
	min-width: 0;                /* reset the min-width of tmbox above        */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mediawiki .mbox-inside .tmbox { /* For tmboxes inside other templates. The &amp;quot;mediawiki&amp;quot; class ensures that */&lt;br /&gt;
	margin: 2px 0;               /* this declaration overrides other styles (including mbox-small above)   */&lt;br /&gt;
	width: 100%;                 /* For Safari and Opera */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mbox-inside .tmbox.mbox-small { /* &amp;quot;small&amp;quot; tmboxes should not be small when  */&lt;br /&gt;
	line-height: 1.5em;          /* also &amp;quot;nested&amp;quot;, so reset styles that are   */&lt;br /&gt;
	font-size: 100%;             /* set in &amp;quot;mbox-small&amp;quot; above.                */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.tmbox-speedy {&lt;br /&gt;
	border: 2px solid #b32424;    /* Red */&lt;br /&gt;
	background-color: #fee7e6;    /* Pink */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.tmbox-delete {&lt;br /&gt;
	border: 2px solid #b32424;    /* Red */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.tmbox-content {&lt;br /&gt;
	border: 2px solid #f28500;    /* Orange */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.tmbox-style {&lt;br /&gt;
	border: 2px solid #fc3;       /* Yellow */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.tmbox-move {&lt;br /&gt;
	border: 2px solid #9932cc;    /* Purple */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.tmbox-protection,&lt;br /&gt;
table.tmbox-notice {&lt;br /&gt;
	border: 1px solid #c0c090;    /* Gray-brown */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Footer and header message box styles */&lt;br /&gt;
table.fmbox {&lt;br /&gt;
	clear: both;&lt;br /&gt;
	margin: 0.2em 0;&lt;br /&gt;
	width: 100%;&lt;br /&gt;
	border: 1px solid #a2a9b1;&lt;br /&gt;
	background-color: #f8f9fa;     /* Default &amp;quot;system&amp;quot; gray */&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.fmbox-system {&lt;br /&gt;
	background-color: #f8f9fa;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.fmbox-warning {&lt;br /&gt;
	border: 1px solid #bb7070;  /* Dark pink */&lt;br /&gt;
	background-color: #ffdbdb;  /* Pink */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.fmbox-editnotice {&lt;br /&gt;
	background-color: transparent;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Div based &amp;quot;warning&amp;quot; style fmbox messages. */&lt;br /&gt;
div.mw-warning-with-logexcerpt,&lt;br /&gt;
div.mw-lag-warn-high,&lt;br /&gt;
div.mw-cascadeprotectedwarning,&lt;br /&gt;
div#mw-protect-cascadeon,&lt;br /&gt;
div.titleblacklist-warning,&lt;br /&gt;
div.locked-warning {&lt;br /&gt;
	clear: both;&lt;br /&gt;
	margin: 0.2em 0;&lt;br /&gt;
	border: 1px solid #bb7070;&lt;br /&gt;
	background-color: #ffdbdb;&lt;br /&gt;
	padding: 0.25em 0.9em;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Use default color for partial block fmbox banner per [[Special:PermaLink/1028105567#pblock-style]] */&lt;br /&gt;
.mw-contributions-blocked-notice-partial .mw-warning-with-logexcerpt {border-color:#fc3;background-color:#fef6e7;}&lt;br /&gt;
&lt;br /&gt;
/* These mbox-small classes must be placed after all other&lt;br /&gt;
   ambox/tmbox/ombox etc classes. &amp;quot;html body.mediawiki&amp;quot; is so&lt;br /&gt;
   they override &amp;quot;table.ambox + table.ambox&amp;quot; above. */&lt;br /&gt;
html body.mediawiki .mbox-small {   /* For the &amp;quot;small=yes&amp;quot; option. */&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	clear: right;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	float: right;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	margin: 4px 0 4px 1em;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
	width: 238px;&lt;br /&gt;
	font-size: 88%;&lt;br /&gt;
	line-height: 1.25em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
html body.mediawiki .mbox-small-left {   /* For the &amp;quot;small=left&amp;quot; option. */&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	margin: 4px 1em 4px 0;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
	overflow: hidden;&lt;br /&gt;
	width: 238px;&lt;br /&gt;
	border-collapse: collapse;&lt;br /&gt;
	font-size: 88%;&lt;br /&gt;
	line-height: 1.25em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Style for compact ambox */&lt;br /&gt;
/* Hide the images */&lt;br /&gt;
.compact-ambox table .mbox-image,&lt;br /&gt;
.compact-ambox table .mbox-imageright,&lt;br /&gt;
.compact-ambox table .mbox-empty-cell {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Remove borders, backgrounds, padding, etc. */&lt;br /&gt;
.compact-ambox table.ambox {&lt;br /&gt;
	border: none;&lt;br /&gt;
	border-collapse: collapse;&lt;br /&gt;
	background-color: transparent;&lt;br /&gt;
	margin: 0 0 0 1.6em !important;&lt;br /&gt;
	padding: 0 !important;&lt;br /&gt;
	width: auto;&lt;br /&gt;
	display: block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
body.mediawiki .compact-ambox table.mbox-small-left {&lt;br /&gt;
	font-size: 100%;&lt;br /&gt;
	width: auto;&lt;br /&gt;
	margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Style the text cell as a list item and remove its padding */&lt;br /&gt;
.compact-ambox table .mbox-text {&lt;br /&gt;
	padding: 0 !important;&lt;br /&gt;
	margin: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.compact-ambox table .mbox-text-span {&lt;br /&gt;
	display: list-item;&lt;br /&gt;
	line-height: 1.5em;&lt;br /&gt;
	list-style-type: square;&lt;br /&gt;
	list-style-image: url(/w/skins/MonoBook/resources/images/bullet.svg);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Allow for hiding text in compact form */&lt;br /&gt;
.compact-ambox .hide-when-compact {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Remove underlines from certain links */&lt;br /&gt;
.nounderlines a,&lt;br /&gt;
.IPA a:link,&lt;br /&gt;
.IPA a:visited {&lt;br /&gt;
	text-decoration: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* [[Wikipedia:NavFrame]].&lt;br /&gt;
   Entirely deprecated. Slated for removal.&lt;br /&gt;
   Use mw-collapsible. */&lt;br /&gt;
div.NavFrame {&lt;br /&gt;
	padding: 4px;&lt;br /&gt;
	border: 1px solid #a2a9b1;&lt;br /&gt;
	text-align: center;&lt;br /&gt;
	font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div.NavFrame + div.NavFrame {&lt;br /&gt;
	border-top-style: none;&lt;br /&gt;
	border-top-style: hidden;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div.NavFrame div.NavHead {&lt;br /&gt;
	line-height: 1.6em;&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
	background-color: #ccf;&lt;br /&gt;
	position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div.NavFrame p,&lt;br /&gt;
div.NavFrame div.NavContent,&lt;br /&gt;
div.NavFrame div.NavContent p {&lt;br /&gt;
	font-size: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
a.NavToggle {&lt;br /&gt;
	position: absolute;&lt;br /&gt;
	top: 0;&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	right: 3px;&lt;br /&gt;
	font-weight: normal;&lt;br /&gt;
	font-size: 90%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hatnotes and disambiguation notices */&lt;br /&gt;
.hatnote {&lt;br /&gt;
	font-style: italic;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hatnote i {&lt;br /&gt;
	font-style: normal;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div.hatnote {&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	padding-left: 1.6em;&lt;br /&gt;
	margin-bottom: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div.hatnote + div.hatnote {&lt;br /&gt;
	margin-top: -0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Prevent line breaks in silly places where desired (nowrap)&lt;br /&gt;
   and links when we don't want them to (nowraplinks a) */&lt;br /&gt;
.nowrap,&lt;br /&gt;
.nowraplinks a {&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* But allow wrapping where desired: */&lt;br /&gt;
.wrap,&lt;br /&gt;
.wraplinks a {&lt;br /&gt;
	white-space: normal;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Increase the height of the image upload box */&lt;br /&gt;
#wpUploadDescription {&lt;br /&gt;
	height: 13em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Minimum thumb width */&lt;br /&gt;
.thumbinner {&lt;br /&gt;
	min-width: 100px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Prevent floating boxes from overlapping any category listings,&lt;br /&gt;
   file histories, edit previews, and edit [Show changes] views. */&lt;br /&gt;
#mw-subcategories,&lt;br /&gt;
#mw-pages,&lt;br /&gt;
#mw-category-media,&lt;br /&gt;
#filehistory,&lt;br /&gt;
#wikiPreview,&lt;br /&gt;
#wikiDiff {&lt;br /&gt;
	clear: both;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Selectively hide headers in WikiProject banners */&lt;br /&gt;
/* TemplateStyles */&lt;br /&gt;
.wpb .wpb-header {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.wpbs-inner .wpb .wpb-header {&lt;br /&gt;
	display: table-row;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.wpbs-inner .wpb-outside {&lt;br /&gt;
	display: none;             /* hide things that should only display outside shells */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Styling for Abuse Filter tags */&lt;br /&gt;
.mw-tag-markers {&lt;br /&gt;
	font-style: italic;&lt;br /&gt;
	font-size: 90%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hide stuff meant for accounts with special permissions. Made visible again in&lt;br /&gt;
   [[MediaWiki:Group-checkuser.css]], [[MediaWiki:Group-sysop.css]], [[MediaWiki:Group-patroller.css]],&lt;br /&gt;
   [[MediaWiki:Group-templateeditor.css]], [[MediaWiki:Group-extendedmover.css]],&lt;br /&gt;
   [[MediaWiki:Group-extendedconfirmed.css]], and [[Mediawiki:Group-autoconfirmed.css]]. */&lt;br /&gt;
.checkuser-show,&lt;br /&gt;
.sysop-show,&lt;br /&gt;
.patroller-show,&lt;br /&gt;
.templateeditor-show,&lt;br /&gt;
.extendedmover-show,&lt;br /&gt;
.extendedconfirmed-show,&lt;br /&gt;
.autoconfirmed-show,&lt;br /&gt;
.user-show {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hide the redlink generated by {{Editnotice}},&lt;br /&gt;
   this overrides the &amp;quot;.sysop-show { display: none; }&amp;quot; above that applies&lt;br /&gt;
   to the same link as well. See [[phab:T45013]]&lt;br /&gt;
&lt;br /&gt;
   Hide the images in editnotices to keep them readable in VE view.&lt;br /&gt;
   Long term, editnotices should become a core feature so that they can be designed responsive. */&lt;br /&gt;
.ve-ui-mwNoticesPopupTool-item .editnotice-redlink,&lt;br /&gt;
.ve-ui-mwNoticesPopupTool-item .mbox-image,&lt;br /&gt;
.ve-ui-mwNoticesPopupTool-item .mbox-imageright {&lt;br /&gt;
	display: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Remove bullets when there are multiple edit page warnings */&lt;br /&gt;
ul.permissions-errors &amp;gt; li {&lt;br /&gt;
	list-style: none none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
ul.permissions-errors {&lt;br /&gt;
	margin: 0;&lt;br /&gt;
}&lt;br /&gt;
li {&lt;br /&gt;
max-width:1000px;&lt;br /&gt;
}&lt;br /&gt;
/* texhtml class for inline math (based on generic times-serif class) */&lt;br /&gt;
span.texhtml {&lt;br /&gt;
	font-family: &amp;quot;Nimbus Roman No9 L&amp;quot;, &amp;quot;Times New Roman&amp;quot;, Times, serif;&lt;br /&gt;
	font-size: 118%;&lt;br /&gt;
	line-height: 1;&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
	/* Force tabular and lining display for texhtml */&lt;br /&gt;
	-moz-font-feature-settings: &amp;quot;lnum&amp;quot;, &amp;quot;tnum&amp;quot;, &amp;quot;kern&amp;quot; 0;&lt;br /&gt;
	-webkit-font-feature-settings: &amp;quot;lnum&amp;quot;, &amp;quot;tnum&amp;quot;, &amp;quot;kern&amp;quot; 0;&lt;br /&gt;
	font-feature-settings: &amp;quot;lnum&amp;quot;, &amp;quot;tnum&amp;quot;, &amp;quot;kern&amp;quot; 0;&lt;br /&gt;
	font-variant-numeric: lining-nums tabular-nums;&lt;br /&gt;
	font-kerning: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
span.texhtml span.texhtml {&lt;br /&gt;
	font-size: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
span.mwe-math-mathml-inline {&lt;br /&gt;
	font-size: 118%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Make &amp;lt;math display=&amp;quot;block&amp;quot;&amp;gt; be left aligned with one space indent for &lt;br /&gt;
 * compatibility with style conventions&lt;br /&gt;
 */&lt;br /&gt;
.mwe-math-fallback-image-display,&lt;br /&gt;
.mwe-math-mathml-display {&lt;br /&gt;
	margin-left: 1.6em !important;&lt;br /&gt;
	margin-top: 0.6em;&lt;br /&gt;
	margin-bottom: 0.6em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mwe-math-mathml-display math {&lt;br /&gt;
	display: inline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Work-around for [[phab:T25965]] / [[phab:T100106]] (Kaltura advertisement) */&lt;br /&gt;
.k-player .k-attribution {&lt;br /&gt;
	visibility: hidden;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Move 'play' button of video player to bottom left corner */&lt;br /&gt;
.PopUpMediaTransform a .play-btn-large {&lt;br /&gt;
	margin: 0;&lt;br /&gt;
	top: auto;&lt;br /&gt;
	right: auto;&lt;br /&gt;
	bottom: 0;&lt;br /&gt;
	left: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Force imgs in galleries to have borders by wrapping them in class=bordered-images */&lt;br /&gt;
.bordered-images img {&lt;br /&gt;
	border: solid #ddd 1px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
@media screen {&lt;br /&gt;
	/* Gallery styles background changes are restricted to screen view.&lt;br /&gt;
	   In printing we should avoid applying backgrounds. */&lt;br /&gt;
	/* The backgrounds for galleries. */&lt;br /&gt;
	#content .gallerybox div.thumb {&lt;br /&gt;
		/* Light gray padding */&lt;br /&gt;
		background-color: #f8f9fa;&lt;br /&gt;
	}&lt;br /&gt;
	/* Put a chequered background behind images, only visible if they have transparency.&lt;br /&gt;
	   '.filehistory a img' and '#file img:hover' are handled by MediaWiki core (as of 1.19) */&lt;br /&gt;
	.gallerybox .thumb img {&lt;br /&gt;
		background: #fff url(//upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png) repeat;&lt;br /&gt;
	}&lt;br /&gt;
	/* But not on articles, user pages, portals or with opt-out. */&lt;br /&gt;
	.ns-0 .gallerybox .thumb img,&lt;br /&gt;
	.ns-2 .gallerybox .thumb img,&lt;br /&gt;
	.ns-100 .gallerybox .thumb img,&lt;br /&gt;
	.nochecker .gallerybox .thumb img {&lt;br /&gt;
		background-image: none;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	/* Display &amp;quot;From Wikipedia, the free encyclopedia&amp;quot; in skins that support it,&lt;br /&gt;
	   do not apply to print mode */&lt;br /&gt;
	#siteSub {&lt;br /&gt;
		display: none;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hide FlaggedRevs notice UI when there are no pending changes */&lt;br /&gt;
.flaggedrevs_draft_synced,&lt;br /&gt;
.flaggedrevs_stable_synced,&lt;br /&gt;
/* &amp;quot;Temporary&amp;quot; to remove links in sidebar T255381 */&lt;br /&gt;
#t-upload,&lt;br /&gt;
/* Hide broken download box on Special:Book pending T285400 */&lt;br /&gt;
.mw-special-Book #coll-downloadbox {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
.img1&lt;br /&gt;
		{&lt;br /&gt;
			margin-left:2px;&lt;br /&gt;
			margin-right:21px;	&lt;br /&gt;
		}&lt;br /&gt;
.img0&lt;br /&gt;
		{&lt;br /&gt;
			margin-left:2px;&lt;br /&gt;
			margin-right:2px;	&lt;br /&gt;
		}&lt;br /&gt;
		.img2&lt;br /&gt;
		{&lt;br /&gt;
			margin-left:2px;&lt;br /&gt;
			margin-right:59px;	&lt;br /&gt;
		}&lt;br /&gt;
		.img1:nth-child(3n), .img2:nth-child(3n){&lt;br /&gt;
			margin-right: 0px;&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ol.l2, ol.l2 ol{&lt;br /&gt;
list-style: none; &lt;br /&gt;
counter-reset: li; &lt;br /&gt;
}&lt;br /&gt;
ol.l2 &amp;gt; ol{&lt;br /&gt;
list-style: none;&lt;br /&gt;
}&lt;br /&gt;
ol.l2 &amp;gt; li:before, ol.l2  ol &amp;gt; li:before {&lt;br /&gt;
counter-increment: li; &lt;br /&gt;
content: counters(li,&amp;quot;.&amp;quot;) &amp;quot;. &amp;quot;; &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.main-page-header{&lt;br /&gt;
color: #f39200;&lt;br /&gt;
font-family: &amp;quot;ProximaNova&amp;quot;;&lt;br /&gt;
font-size: 30px;&lt;br /&gt;
font-weight: 700;&lt;br /&gt;
text-transform: uppercase;&lt;br /&gt;
letter-spacing: 0.51px;&lt;br /&gt;
}&lt;br /&gt;
.main-page-a1{&lt;br /&gt;
    width: 128px;&lt;br /&gt;
    display: flex;&lt;br /&gt;
    flex-direction: column;&lt;br /&gt;
    margin:0 5px 10px;&lt;br /&gt;
}&lt;br /&gt;
.main-page-i1{&lt;br /&gt;
    position: relative;&lt;br /&gt;
    width: 100%;&lt;br /&gt;
}&lt;br /&gt;
.main-page-i1::before{&lt;br /&gt;
    content: &amp;quot;&amp;quot;;&lt;br /&gt;
    display:block;&lt;br /&gt;
    padding-top: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.main-page-i2{&lt;br /&gt;
    position:absolute;&lt;br /&gt;
    top: 0;&lt;br /&gt;
    left: 0;&lt;br /&gt;
    right: 0;&lt;br /&gt;
    bottom: 0;&lt;br /&gt;
    display:flex;&lt;br /&gt;
    justify-content:center;&lt;br /&gt;
    align-items: center;&lt;br /&gt;
}&lt;br /&gt;
.main-page-img{&lt;br /&gt;
vertical-align:center;&lt;br /&gt;
width: auto;&lt;br /&gt;
max-height: 100%;&lt;br /&gt;
height:auto;&lt;br /&gt;
padding:0px;&lt;br /&gt;
position: absolute;&lt;br /&gt;
top: 50%;&lt;br /&gt;
left: 50%;&lt;br /&gt;
transform: translate(-50%, -50%);&lt;br /&gt;
max-height: 100%;&lt;br /&gt;
max-width: 100%;&lt;br /&gt;
}&lt;br /&gt;
.main-page-span-text{&lt;br /&gt;
max-width: 100%;&lt;br /&gt;
    word-wrap: break-word;&lt;br /&gt;
color: #414042;&lt;br /&gt;
    text-transform: uppercase;&lt;br /&gt;
}&lt;br /&gt;
.main-page-span-title{&lt;br /&gt;
    color: #414042;&lt;br /&gt;
    font-family: &amp;quot;ProximaNova&amp;quot;;&lt;br /&gt;
    font-size: 16px;&lt;br /&gt;
    font-weight: 700;&lt;br /&gt;
    text-transform: uppercase;&lt;br /&gt;
    letter-spacing: 0.64px;&lt;br /&gt;
    margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
.main-page-p{&lt;br /&gt;
    color: #414042;&lt;br /&gt;
    font-family: &amp;quot;ProximaNova&amp;quot;;&lt;br /&gt;
    text-transform: none;&lt;br /&gt;
    line-height: 1.8;&lt;br /&gt;
    font-size: 14px;&lt;br /&gt;
    font-weight: 400;&lt;br /&gt;
    letter-spacing: 0.28px;&lt;br /&gt;
}&lt;br /&gt;
.clearlink a {&lt;br /&gt;
	color: inherit;&lt;br /&gt;
text-decoration:none;&lt;br /&gt;
}&lt;br /&gt;
.floatnone {&lt;br /&gt;
max-width:100%;&lt;br /&gt;
max-height:100%;&lt;br /&gt;
    width: auto;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div.searchresult { display: none }&lt;br /&gt;
#backtotop {&lt;br /&gt;
    border-right: none;&lt;br /&gt;
    float: right;&lt;br /&gt;
    margin-top: -1px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#backtotop button {&lt;br /&gt;
    height: 20px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#backtotop .wds-button {&lt;br /&gt;
    padding: 0 7px;&lt;br /&gt;
    font-size: 11px&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#BackToTopBtn div {&lt;br /&gt;
    border-radius: 100%;&lt;br /&gt;
    bottom: 3%;&lt;br /&gt;
    box-sizing: border-box;&lt;br /&gt;
    cursor: pointer;&lt;br /&gt;
    height: 50px;&lt;br /&gt;
    padding: 13px;&lt;br /&gt;
    position: fixed;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
    width: 50px;&lt;br /&gt;
    z-index: 5000102;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#BackToTopBtn div svg {&lt;br /&gt;
    display: block;&lt;br /&gt;
    fill: currentColor;&lt;br /&gt;
    transform: scaleY(-1);&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=AC&amp;diff=11168</id>
		<title>AC</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=AC&amp;diff=11168"/>
		<updated>2023-10-16T07:23:39Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
===Example of description in XML=== &amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
&amp;lt;item type=&amp;quot;AC&amp;quot; name=&amp;quot;AC&amp;quot; addr=&amp;quot;123:4&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Additional parameters=== &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Name!!type and variety!!description!!default value&lt;br /&gt;
|-&lt;br /&gt;
|path*||string||Path to script||-&lt;br /&gt;
|-&lt;br /&gt;
|script-id||string||script id from the description for interface||-&lt;br /&gt;
|-&lt;br /&gt;
|t-min||number||temperature low value||16&lt;br /&gt;
|-&lt;br /&gt;
|t-delta||number||temperature range||16&lt;br /&gt;
|-&lt;br /&gt;
|modes||bit mask||Mask of operation modes (fan, cool, dry, heat, auto)||0x1F&lt;br /&gt;
|-&lt;br /&gt;
|fans||bit mask||Mask of airflow mode (auto, 1, 2, 3, 4, 5, silent mode)||0x1F&lt;br /&gt;
|-&lt;br /&gt;
|vane-ver||bit mask||Mask of vertical fins mode (auto, top, top-center, center, center-bottom, bottom, swing)||0x7E&lt;br /&gt;
|-&lt;br /&gt;
|vane-hor||bit mask||Mask of horizontal fins mode (left, left-center, center, center-right, right, sides (low angle), sides (high angle), from sides to center)||0&lt;br /&gt;
|-&lt;br /&gt;
|temperature-sensors||list||list of valve temperature sensors||-&lt;br /&gt;
|-&lt;br /&gt;
|t-outside||addr||addr of outside temperature sensors||-&lt;br /&gt;
|-&lt;br /&gt;
|t-outside-treshold||value||critically low temperature treshold||-&lt;br /&gt;
|-&lt;br /&gt;
|t-outside-hyst||value||critically low temperature hysteresis||-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – required fields&lt;br /&gt;
&lt;br /&gt;
===Device status upon status request (8 bytes)=== &amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Byte number!!Bit number!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||0&amp;lt;br&amp;gt;3&amp;lt;br&amp;gt;4-7||On/Off&amp;lt;br&amp;gt;Autostate&amp;lt;br&amp;gt;Mode:&amp;lt;br&amp;gt;0 – fan&amp;lt;br&amp;gt;1 – cool&amp;lt;br&amp;gt;2 – dry&amp;lt;br&amp;gt;3 – heat&amp;lt;br&amp;gt;4 – auto&lt;br /&gt;
|-&lt;br /&gt;
|1-2||8-23||Temperature setpoint&lt;br /&gt;
|-&lt;br /&gt;
|3||24-27&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;28-31&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Horizontal vanes:&amp;lt;br&amp;gt;0 – left&amp;lt;br&amp;gt;1 – left-center&amp;lt;br&amp;gt;2 – center&amp;lt;br&amp;gt;3 – center-right&amp;lt;br&amp;gt;4 – right&amp;lt;br&amp;gt;5 – sides (low angle)&amp;lt;br&amp;gt;6 – sides (high angle)&amp;lt;br&amp;gt;7 – from sides to center&amp;lt;br&amp;gt;Vertical vanes:&amp;lt;br&amp;gt;0 – auto&amp;lt;br&amp;gt;1 – top&amp;lt;br&amp;gt;2 – top-center&amp;lt;br&amp;gt;3 – center&amp;lt;br&amp;gt;4 – center-bottom&amp;lt;br&amp;gt;5 – bottom&amp;lt;br&amp;gt;6 – swing&lt;br /&gt;
|-&lt;br /&gt;
|4||32-35&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;||Fan:&amp;lt;br&amp;gt;0 – auto&amp;lt;br&amp;gt;1 – 1st speed&amp;lt;br&amp;gt;2 – 2nd speed&amp;lt;br&amp;gt;3 – 3rd speed&amp;lt;br&amp;gt;4 – 4th speed&amp;lt;br&amp;gt;5 – 5th speed&amp;lt;br&amp;gt;6 – silent mode&lt;br /&gt;
|-&lt;br /&gt;
|5-6||40-55||Current temperature&lt;br /&gt;
|-&lt;br /&gt;
|7||56-63||Flags&lt;br /&gt;
|-&lt;br /&gt;
|8||64-71||Errors&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Possible variants of setting the status=== &amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
====1-byte====&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Byte!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||0 – off&amp;lt;br&amp;gt;1 – on&amp;lt;br&amp;gt;0xFF – Change the status for the opposite one&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====2-bytes==== &amp;lt;!--T:8--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:9--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Byte!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||0xf&lt;br /&gt;
|-&lt;br /&gt;
|1||1 – Target +1&amp;lt;br&amp;gt;17 – Mode +1 cyclic&amp;lt;br&amp;gt;33 – Fan +1 cyclic&amp;lt;br&amp;gt;49 – Horizontal vanes +1 cyclic&amp;lt;br&amp;gt;65 – Vertical vanes +1 cyclic&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====3-bytes==== &amp;lt;!--T:10--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:11--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Byte!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||0xf&lt;br /&gt;
|-&lt;br /&gt;
|1||16 – Mode (value)&amp;lt;br&amp;gt;18 – Mode (step)&amp;lt;br&amp;gt;32 – Fan (value)&amp;lt;br&amp;gt;34 – Fan (step)&amp;lt;br&amp;gt;48 – Horizontal vanes (value)&amp;lt;br&amp;gt;50 – Horizontal vanes (step)&amp;lt;br&amp;gt;64 – Vertical vanes (value)&amp;lt;br&amp;gt;66 – Vertical vanes (step)&amp;lt;br&amp;gt;80 - Set current temp&lt;br /&gt;
|-&lt;br /&gt;
|2||value – select value (for example status {0xf0, 32, 2} set fan 2)&amp;lt;br&amp;gt;step – set step (cyclic) (for example status {0xf0, 34, 2} set fan +2; status {0xf0, 34, -1} set fan -1)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====4-bytes==== &amp;lt;!--T:12--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:13--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Byte!!Description&lt;br /&gt;
|-&lt;br /&gt;
|0||0xf&lt;br /&gt;
|-&lt;br /&gt;
|1||0 – Target (value)&amp;lt;br&amp;gt;2 – Target (step)&lt;br /&gt;
|-&lt;br /&gt;
|2||fractional part of temperature (0-255)&amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|3||integer part of temperature&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11166</id>
		<title>Quick Start Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11166"/>
		<updated>2023-09-29T07:23:10Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
&amp;lt;youtube width=&amp;quot;900px&amp;quot; height=&amp;quot;500px&amp;quot;&amp;gt;DIMELmedOHw&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Quick start/unboxing.&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
We welcome everyone at our channel! This video is a guide on how to set up the Larnitech system quickly and effortlessly. The setup is going to be done with the help of a demonstration case. A training set includes a demonstration suitcase &amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; and a box with several extra items &amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;.&lt;br /&gt;
[[File:DemoCase01.png|1000x800px]] &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The box features the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; - A power unit with Type-C USB port, supporting the Power Delivery technology;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; - A power bank with a display and Type-C output port, which can be used to power up the demonstration suitcase;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; - Type-C cable with a power consumption indicator;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt; - 2 CAN bus cables;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9316;&amp;lt;/span&amp;gt; - Demonstration board featuring a BW-LC02 module with 2 LED lights, 4 buttons with backlight and a temperature sensor connected to it.&lt;br /&gt;
[[File:DemoCase2.png|1000x800px]] &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:9--&amp;gt;&lt;br /&gt;
The demonstration suitcase contains the following elements:&lt;br /&gt;
‘Metaforsa 2’ module. &lt;br /&gt;
&lt;br /&gt;
‘Metaforsa 2’ has:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; - 10 relay channels with LED lights connected to them, indicating their current status;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; - 4 dimmable channels, with dimmable LED lights connected to them;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; - 24 input channels, with 6 buttons &amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt; and 4 switches &amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9316;&amp;lt;/span&amp;gt; connected to them in order to imitate various sensors.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9317;&amp;lt;/span&amp;gt; - Input channels for temperature sensors with one sensor connected to it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9318;&amp;lt;/span&amp;gt; - CAN bus for connecting extra devices. Other modules of the demonstration case are connected to it, as well as 2 ports &amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9319;&amp;lt;/span&amp;gt; for connecting external devices;&lt;br /&gt;
[[File:DemoCase3.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:16--&amp;gt;&lt;br /&gt;
DW-IO module&lt;br /&gt;
&lt;br /&gt;
This module has 14 universal input/output channels, with the following items connected to them:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; - 4-channel RGBW strip, connected via the AMP5V-4 &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; current amplifier;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; - A strip with addressed LED lights. Each of these LED lights can shine with its own individual color.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt; - Temperature sensor;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9316;&amp;lt;/span&amp;gt; - And two buttons with backlight.&lt;br /&gt;
[[File:DemoCase4.png|1000x800px]] &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:22--&amp;gt;&lt;br /&gt;
The demonstration case also features the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; - a Media Point FE-MP with &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;  two speakers;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; - A six-in-one CW-CO2 sensor, which measures:&lt;br /&gt;
Level of motion, Lighting, Temperature, Humidity, Level of CO2 and which has an infrared transmitter.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt; - a 4-inch sensor panel LCP4 which can display either a regular interface or an interface adapted for wall panels;&lt;br /&gt;
&lt;br /&gt;
Inside the case there is a button control module BW-SW24 which has a six-button 24-volt JUNG keypad &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9316;&amp;lt;/span&amp;gt; connected to it.&lt;br /&gt;
And a Wi-Fi router, which can get connected to the internet either via an ethernet port &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9317;&amp;lt;/span&amp;gt; on the front panel of the case or via an available Wi-Fi network.&lt;br /&gt;
For power supply, there is a Type-C port &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9318;&amp;lt;/span&amp;gt;, which is located on the front panel&lt;br /&gt;
All the equipment installed in the demonstration suitcase is powered by 20 Volts, which is absolutely safe for the user.&lt;br /&gt;
Connect the power cable and the Ethernet cable. If you do not have the possibility to connect via Ethernet, later in this video we will demonstrate how to connect the inbuilt router to your Wi-Fi network.&lt;br /&gt;
[[File:DemoCase5.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:23--&amp;gt;&lt;br /&gt;
In order to proceed, the Larnitech app needs to be installed onto your smartphone or tablet. Just scan the first QR code from the top of your suitcase.&lt;br /&gt;
&lt;br /&gt;
If after installing and starting the application the connection does not get established automatically, you will need to connect to Wi-Fi network ‘Larnitech_case_5G’ with the help of your mobile device. Then start the application and scan the first QR code in the ‘Connections’ section&lt;br /&gt;
You may need to turn off data transmission on your mobile device if the demonstration set is not connected to the Internet.&lt;br /&gt;
[[File:DemoCase6.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:24--&amp;gt;&lt;br /&gt;
The main screen of the app has several key elements. In the upper left corner there is the ‘area select’ menu&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt;. &lt;br /&gt;
Just click one of the available areas in order to manage it &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;. &lt;br /&gt;
Then there are icons which let you choose the executors, sensors, climate, multimedia, remote controls and cameras &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt;. In the right corner there is an icon for the additional menu &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt;. Inside the icon you can also see the status of the current connection.&lt;br /&gt;
[[File:DemoCase7.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:24--&amp;gt;&lt;br /&gt;
Turning the executors &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; on or off is done with a simple click. In order to change the level of lighting &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;, color of lights or the position of the blinds, use a double click. In order to access the status history &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; of this executor or sensor, press and hold the icon for one second.&lt;br /&gt;
A short press of the physical buttons on the panel turns the light on or off. Press and hold the button to change the light brightness.&lt;br /&gt;
[[File:DemoCase08.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:25--&amp;gt;&lt;br /&gt;
In order to demonstrate the Plug and Play function, we open the executors in the Setup area &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; and connect the module to the CAN bus. The system automatically detects the new module and adds it to the ‘Setup’ area, &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; where we are able to control the new module instantly.&lt;br /&gt;
[[File:DemoCase9.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:26--&amp;gt;&lt;br /&gt;
Now we can set up these executors. In order to do this, enter the additional menu &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; and activate the edit mode, by pressing the appropriate icon .&lt;br /&gt;
Now we are in the edit mode &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;, which can be seen from the appropriate notification in the top part of the screen. In this mode, when we press and hold an icon, we can move it among other elements and place it into another Room by placing it in the Area-choosing Menu and then choosing the area that we need. A long press &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; of the element starts the menu, from which we set up the current element.In the ‘General’ &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt; section we can change the name of the element, add a voice command for it, change an icon or add the element to ‘Favorites’.&lt;br /&gt;
[[File:DemoCase10.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:27--&amp;gt;&lt;br /&gt;
‘Auto’ section &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; lets us activate the automation with a few clicks, as well as set up its parameters.&lt;br /&gt;
&lt;br /&gt;
In the ‘schedule’ section &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;, you can determine the schedule when the given element will turn on or off, including by using the time of the setting and rising of the sun.&lt;br /&gt;
&lt;br /&gt;
The ‘Switches’ tab &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; lets you bind a button to control the executor.&lt;br /&gt;
[[File:DemoCase11.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:28--&amp;gt;&lt;br /&gt;
In order to do this, &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; we press the button we need to bind. The system displays it, after which we press ‘Bind’&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; and save the changes. Now this button controls the executor&lt;br /&gt;
The ‘Switches’ tab &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; also features additional button setup options. For example, we can program the executor to be controlled with a double or triple click of a button, as well as define an action performed by this, for example ‘only turning on’ or ‘only turning off’ an executor. In this case we are setting up the button to do the following: one click will cause the lamp to toggle, a double click will turn it on and a triple click will turn it off. In this way a single button can perform up to five different actions.&lt;br /&gt;
[[File:DemoCase12.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:29--&amp;gt;&lt;br /&gt;
Let’s also set up basic automation of turning an executor on or off with the help of a motion sensor.&lt;br /&gt;
&lt;br /&gt;
The ‘Auto period’ &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; option sets the time for which the automation is disabled after an executor is manually controlled.For our demonstration purposes, we will set it to zero.&lt;br /&gt;
&lt;br /&gt;
Then we will activate the automation &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;  to turn on the executor when motion is detected. We choose the motion sensor &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; and the level of motion &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt;. We can also choose a light sensor and its parameters. &lt;br /&gt;
[[File:DemoCase13.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:30--&amp;gt;&lt;br /&gt;
Now we will activate turning off &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; of an executor if there is no motion: we choose the same sensor, set a lower threshold and a minimal time.Save the changes.&lt;br /&gt;
The extra ‘A’ icon &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; will be added to the executor icon, meaning that automation has been set up for it. Now the lamp will be turned on when motion is detected and instantly turned off when no motion is detected.&lt;br /&gt;
[[File:DemoCase14.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:31--&amp;gt;&lt;br /&gt;
Let’s create a light scheme. For this we need to select the appropriate item in the additional menu &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt;. Give the light scheme a name &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;.&lt;br /&gt;
[[File:DemoCase15.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:32--&amp;gt;&lt;br /&gt;
In the ‘State’ tab, use a long press to add the lights we want to use into the light scene &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; and set up their state &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;. ‘Auto’, ‘Schedule’, ‘Switch’ tabs are the same for all the executors. &lt;br /&gt;
Save the changes and we are able to use the newly-created light scheme &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; immediately.&lt;br /&gt;
[[File:DemoCase16.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:33--&amp;gt;&lt;br /&gt;
While you are in the Edit Mode, there is a ‘Setup’ &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; icon in the additional menu. &lt;br /&gt;
Here in the ‘Structure’&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; tab we can see all the areas. &lt;br /&gt;
We can create new ones &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt;, rename them and move the elements around.&lt;br /&gt;
[[File:DemoCase17.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:34--&amp;gt;&lt;br /&gt;
In the ‘Mikrotik’ tab &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; you can see the current parameters of your router, which you can also connect to your local Wi-Fi network. &lt;br /&gt;
In order to do this, enter the Wi-Fi sub-menu, click the wlan1 interface configuration &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;, after which choose the ‘station’ mode, choose a Wi-Fi network out of the list &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; of available ones and enter the connection password.&lt;br /&gt;
[[File:DemoCase18.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:35--&amp;gt;&lt;br /&gt;
In the ‘Backups’ tab &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; you can see the list of saved configurations, which can be restored if necessary.&lt;br /&gt;
[[File:DemoCase19.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:36--&amp;gt;&lt;br /&gt;
For cloud access to the device, you do not need any extra settings. The app detects the absence of the system in your local network and automatically establishes the connection via the cloud.&lt;br /&gt;
[[File:DemoCase20.jpg|800x600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:36--&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;We thank you for watching this tutorial!&amp;lt;/b&amp;gt; If you have questions or need extra help, please do not hesitate to refer to our technical support team. See you in the next episodes!&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11165</id>
		<title>Quick Start Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11165"/>
		<updated>2023-09-29T07:21:36Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
&amp;lt;youtube width=&amp;quot;800px&amp;quot;&amp;gt;DIMELmedOHw&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Quick start/unboxing.&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
We welcome everyone at our channel! This video is a guide on how to set up the Larnitech system quickly and effortlessly. The setup is going to be done with the help of a demonstration case. A training set includes a demonstration suitcase &amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; and a box with several extra items &amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;.&lt;br /&gt;
[[File:DemoCase01.png|1000x800px]] &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
The box features the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; - A power unit with Type-C USB port, supporting the Power Delivery technology;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; - A power bank with a display and Type-C output port, which can be used to power up the demonstration suitcase;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; - Type-C cable with a power consumption indicator;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt; - 2 CAN bus cables;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9316;&amp;lt;/span&amp;gt; - Demonstration board featuring a BW-LC02 module with 2 LED lights, 4 buttons with backlight and a temperature sensor connected to it.&lt;br /&gt;
[[File:DemoCase2.png|1000x800px]] &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:9--&amp;gt;&lt;br /&gt;
The demonstration suitcase contains the following elements:&lt;br /&gt;
‘Metaforsa 2’ module. &lt;br /&gt;
&lt;br /&gt;
‘Metaforsa 2’ has:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; - 10 relay channels with LED lights connected to them, indicating their current status;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; - 4 dimmable channels, with dimmable LED lights connected to them;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; - 24 input channels, with 6 buttons &amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt; and 4 switches &amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9316;&amp;lt;/span&amp;gt; connected to them in order to imitate various sensors.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9317;&amp;lt;/span&amp;gt; - Input channels for temperature sensors with one sensor connected to it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9318;&amp;lt;/span&amp;gt; - CAN bus for connecting extra devices. Other modules of the demonstration case are connected to it, as well as 2 ports &amp;lt;span style=&amp;quot;display: inline-block; border-radius: 50%; text-align: center; font-size: 30px;&amp;quot;&amp;gt;&amp;amp;#9319;&amp;lt;/span&amp;gt; for connecting external devices;&lt;br /&gt;
[[File:DemoCase3.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:16--&amp;gt;&lt;br /&gt;
DW-IO module&lt;br /&gt;
&lt;br /&gt;
This module has 14 universal input/output channels, with the following items connected to them:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; - 4-channel RGBW strip, connected via the AMP5V-4 &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; current amplifier;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; - A strip with addressed LED lights. Each of these LED lights can shine with its own individual color.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt; - Temperature sensor;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9316;&amp;lt;/span&amp;gt; - And two buttons with backlight.&lt;br /&gt;
[[File:DemoCase4.png|1000x800px]] &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:22--&amp;gt;&lt;br /&gt;
The demonstration case also features the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; - a Media Point FE-MP with &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;  two speakers;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; - A six-in-one CW-CO2 sensor, which measures:&lt;br /&gt;
Level of motion, Lighting, Temperature, Humidity, Level of CO2 and which has an infrared transmitter.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt; - a 4-inch sensor panel LCP4 which can display either a regular interface or an interface adapted for wall panels;&lt;br /&gt;
&lt;br /&gt;
Inside the case there is a button control module BW-SW24 which has a six-button 24-volt JUNG keypad &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9316;&amp;lt;/span&amp;gt; connected to it.&lt;br /&gt;
And a Wi-Fi router, which can get connected to the internet either via an ethernet port &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9317;&amp;lt;/span&amp;gt; on the front panel of the case or via an available Wi-Fi network.&lt;br /&gt;
For power supply, there is a Type-C port &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9318;&amp;lt;/span&amp;gt;, which is located on the front panel&lt;br /&gt;
All the equipment installed in the demonstration suitcase is powered by 20 Volts, which is absolutely safe for the user.&lt;br /&gt;
Connect the power cable and the Ethernet cable. If you do not have the possibility to connect via Ethernet, later in this video we will demonstrate how to connect the inbuilt router to your Wi-Fi network.&lt;br /&gt;
[[File:DemoCase5.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:23--&amp;gt;&lt;br /&gt;
In order to proceed, the Larnitech app needs to be installed onto your smartphone or tablet. Just scan the first QR code from the top of your suitcase.&lt;br /&gt;
&lt;br /&gt;
If after installing and starting the application the connection does not get established automatically, you will need to connect to Wi-Fi network ‘Larnitech_case_5G’ with the help of your mobile device. Then start the application and scan the first QR code in the ‘Connections’ section&lt;br /&gt;
You may need to turn off data transmission on your mobile device if the demonstration set is not connected to the Internet.&lt;br /&gt;
[[File:DemoCase6.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:24--&amp;gt;&lt;br /&gt;
The main screen of the app has several key elements. In the upper left corner there is the ‘area select’ menu&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt;. &lt;br /&gt;
Just click one of the available areas in order to manage it &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;. &lt;br /&gt;
Then there are icons which let you choose the executors, sensors, climate, multimedia, remote controls and cameras &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt;. In the right corner there is an icon for the additional menu &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt;. Inside the icon you can also see the status of the current connection.&lt;br /&gt;
[[File:DemoCase7.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:24--&amp;gt;&lt;br /&gt;
Turning the executors &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; on or off is done with a simple click. In order to change the level of lighting &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;, color of lights or the position of the blinds, use a double click. In order to access the status history &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; of this executor or sensor, press and hold the icon for one second.&lt;br /&gt;
A short press of the physical buttons on the panel turns the light on or off. Press and hold the button to change the light brightness.&lt;br /&gt;
[[File:DemoCase08.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:25--&amp;gt;&lt;br /&gt;
In order to demonstrate the Plug and Play function, we open the executors in the Setup area &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; and connect the module to the CAN bus. The system automatically detects the new module and adds it to the ‘Setup’ area, &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; where we are able to control the new module instantly.&lt;br /&gt;
[[File:DemoCase9.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:26--&amp;gt;&lt;br /&gt;
Now we can set up these executors. In order to do this, enter the additional menu &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; and activate the edit mode, by pressing the appropriate icon .&lt;br /&gt;
Now we are in the edit mode &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;, which can be seen from the appropriate notification in the top part of the screen. In this mode, when we press and hold an icon, we can move it among other elements and place it into another Room by placing it in the Area-choosing Menu and then choosing the area that we need. A long press &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; of the element starts the menu, from which we set up the current element.In the ‘General’ &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt; section we can change the name of the element, add a voice command for it, change an icon or add the element to ‘Favorites’.&lt;br /&gt;
[[File:DemoCase10.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:27--&amp;gt;&lt;br /&gt;
‘Auto’ section &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; lets us activate the automation with a few clicks, as well as set up its parameters.&lt;br /&gt;
&lt;br /&gt;
In the ‘schedule’ section &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;, you can determine the schedule when the given element will turn on or off, including by using the time of the setting and rising of the sun.&lt;br /&gt;
&lt;br /&gt;
The ‘Switches’ tab &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; lets you bind a button to control the executor.&lt;br /&gt;
[[File:DemoCase11.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:28--&amp;gt;&lt;br /&gt;
In order to do this, &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; we press the button we need to bind. The system displays it, after which we press ‘Bind’&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; and save the changes. Now this button controls the executor&lt;br /&gt;
The ‘Switches’ tab &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; also features additional button setup options. For example, we can program the executor to be controlled with a double or triple click of a button, as well as define an action performed by this, for example ‘only turning on’ or ‘only turning off’ an executor. In this case we are setting up the button to do the following: one click will cause the lamp to toggle, a double click will turn it on and a triple click will turn it off. In this way a single button can perform up to five different actions.&lt;br /&gt;
[[File:DemoCase12.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:29--&amp;gt;&lt;br /&gt;
Let’s also set up basic automation of turning an executor on or off with the help of a motion sensor.&lt;br /&gt;
&lt;br /&gt;
The ‘Auto period’ &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; option sets the time for which the automation is disabled after an executor is manually controlled.For our demonstration purposes, we will set it to zero.&lt;br /&gt;
&lt;br /&gt;
Then we will activate the automation &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;  to turn on the executor when motion is detected. We choose the motion sensor &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; and the level of motion &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt;. We can also choose a light sensor and its parameters. &lt;br /&gt;
[[File:DemoCase13.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:30--&amp;gt;&lt;br /&gt;
Now we will activate turning off &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; of an executor if there is no motion: we choose the same sensor, set a lower threshold and a minimal time.Save the changes.&lt;br /&gt;
The extra ‘A’ icon &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; will be added to the executor icon, meaning that automation has been set up for it. Now the lamp will be turned on when motion is detected and instantly turned off when no motion is detected.&lt;br /&gt;
[[File:DemoCase14.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:31--&amp;gt;&lt;br /&gt;
Let’s create a light scheme. For this we need to select the appropriate item in the additional menu &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt;. Give the light scheme a name &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;.&lt;br /&gt;
[[File:DemoCase15.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:32--&amp;gt;&lt;br /&gt;
In the ‘State’ tab, use a long press to add the lights we want to use into the light scene &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; and set up their state &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;. ‘Auto’, ‘Schedule’, ‘Switch’ tabs are the same for all the executors. &lt;br /&gt;
Save the changes and we are able to use the newly-created light scheme &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; immediately.&lt;br /&gt;
[[File:DemoCase16.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:33--&amp;gt;&lt;br /&gt;
While you are in the Edit Mode, there is a ‘Setup’ &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; icon in the additional menu. &lt;br /&gt;
Here in the ‘Structure’&amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt; tab we can see all the areas. &lt;br /&gt;
We can create new ones &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9315;&amp;lt;/span&amp;gt;, rename them and move the elements around.&lt;br /&gt;
[[File:DemoCase17.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:34--&amp;gt;&lt;br /&gt;
In the ‘Mikrotik’ tab &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; you can see the current parameters of your router, which you can also connect to your local Wi-Fi network. &lt;br /&gt;
In order to do this, enter the Wi-Fi sub-menu, click the wlan1 interface configuration &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9313;&amp;lt;/span&amp;gt;, after which choose the ‘station’ mode, choose a Wi-Fi network out of the list &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9314;&amp;lt;/span&amp;gt; of available ones and enter the connection password.&lt;br /&gt;
[[File:DemoCase18.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:35--&amp;gt;&lt;br /&gt;
In the ‘Backups’ tab &amp;lt;span style=&amp;quot;font-size: 25px;&amp;quot;&amp;gt;&amp;amp;#9312;&amp;lt;/span&amp;gt; you can see the list of saved configurations, which can be restored if necessary.&lt;br /&gt;
[[File:DemoCase19.png|1000x800px]]&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:36--&amp;gt;&lt;br /&gt;
For cloud access to the device, you do not need any extra settings. The app detects the absence of the system in your local network and automatically establishes the connection via the cloud.&lt;br /&gt;
[[File:DemoCase20.jpg|800x600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;!--T:36--&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;We thank you for watching this tutorial!&amp;lt;/b&amp;gt; If you have questions or need extra help, please do not hesitate to refer to our technical support team. See you in the next episodes!&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11072</id>
		<title>Quick Start Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11072"/>
		<updated>2023-09-13T12:43:40Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
&amp;lt;youtube width=&amp;quot;400px&amp;quot;&amp;gt;DIMELmedOHw&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11071</id>
		<title>Quick Start Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11071"/>
		<updated>2023-09-13T12:42:54Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
&amp;lt;youtube width=&amp;quot;400px&amp;quot;&amp;gt;DIMELmedOHw&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11070</id>
		<title>Quick Start Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11070"/>
		<updated>2023-09-13T12:42:30Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;/language&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
&amp;lt;youtube width=&amp;quot;400px&amp;quot;&amp;gt;DIMELmedOHw&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11069</id>
		<title>Quick Start Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11069"/>
		<updated>2023-09-13T12:42:21Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;/languages&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
&amp;lt;youtube width=&amp;quot;400px&amp;quot;&amp;gt;DIMELmedOHw&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=How_to_do&amp;diff=11049</id>
		<title>How to do</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=How_to_do&amp;diff=11049"/>
		<updated>2023-09-13T12:14:21Z</updated>

		<summary type="html">&lt;p&gt;Mark: Marked this version for translation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
*[[Quick start guide|Quick start guide]]&lt;br /&gt;
*[[Larnitech Smart Home System Architecture|Larnitech Smart Home System Architecture]]&lt;br /&gt;
*Setup &amp;amp; Configuration&lt;br /&gt;
**[[Router setup|Router setup]]&lt;br /&gt;
**[[Installing the application and connecting it to the server|Installing the application and connecting it to the server]]&lt;br /&gt;
**[[Plug &amp;amp; play|Plug &amp;amp; play]]&lt;br /&gt;
**[[Binding buttons|Binding buttons]]&lt;br /&gt;
**[[Lighting scenarios|Lighting scenarios]]&lt;br /&gt;
**[[Heating setup|Heating setup]]&lt;br /&gt;
**[[Leak sensor setup|Leak sensor setup]]&lt;br /&gt;
**[[Multiroom setup|Multiroom]]&lt;br /&gt;
**[[Creating areas|Creating areas]]&lt;br /&gt;
**[[Distributed logic|Distributed logic]]&lt;br /&gt;
**[[LTSetup|LTSetup]]&lt;br /&gt;
**[[Remote access to your Larnitech Smart Home System|Remote access to your Larnitech Smart Home System]]&lt;br /&gt;
**[[Automation|Automation]]&lt;br /&gt;
**[[Plan control|Plan control]]&lt;br /&gt;
**[[Climate control settings|Climate control]]&lt;br /&gt;
**[[Security plugin settings|Security plugin]]&lt;br /&gt;
**[[Virtual device|Virtual device]]&lt;br /&gt;
**[[Disarming by Intercom with RFID/NFC cards|Disarming by Intercom with RFID/NFC cards]]&lt;br /&gt;
*Plugins&lt;br /&gt;
**[[Alexa|Alexa]]&lt;br /&gt;
**[[API|API]]&lt;br /&gt;
**[[Google Home|Google Home]]&lt;br /&gt;
**[[IKEA|IKEA]]&lt;br /&gt;
**[[Philips Hue|Philips Hue]]&lt;br /&gt;
**[[Siri|Siri]]&lt;br /&gt;
**[[Weather|Weather]]&lt;br /&gt;
**[[Modbus TCP|Modbus TCP]]&lt;br /&gt;
**[[iRidium|iRidium]]&lt;br /&gt;
**[[EIB|EIB]]&lt;br /&gt;
**[[Satel integration|Satel integration]]&lt;br /&gt;
**[[SIP|SIP]]&lt;br /&gt;
*[[Sonos|Sonos]]&lt;br /&gt;
*[[IFTTT (IF This, Then That)|IFTTT (IF This, Then That)]]&lt;br /&gt;
*[[Reset to factory defaults|Reset to factory defaults]]&lt;br /&gt;
*[[Messengers|Messengers]]&lt;br /&gt;
*[[Accounts|Accounts]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=How_to_do&amp;diff=11048</id>
		<title>How to do</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=How_to_do&amp;diff=11048"/>
		<updated>2023-09-13T12:13:49Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;translate&amp;gt;&lt;br /&gt;
*[[Quick start guide|Quick start guide]]&lt;br /&gt;
*[[Larnitech Smart Home System Architecture|Larnitech Smart Home System Architecture]]&lt;br /&gt;
*Setup &amp;amp; Configuration&lt;br /&gt;
**[[Router setup|Router setup]]&lt;br /&gt;
**[[Installing the application and connecting it to the server|Installing the application and connecting it to the server]]&lt;br /&gt;
**[[Plug &amp;amp; play|Plug &amp;amp; play]]&lt;br /&gt;
**[[Binding buttons|Binding buttons]]&lt;br /&gt;
**[[Lighting scenarios|Lighting scenarios]]&lt;br /&gt;
**[[Heating setup|Heating setup]]&lt;br /&gt;
**[[Leak sensor setup|Leak sensor setup]]&lt;br /&gt;
**[[Multiroom setup|Multiroom]]&lt;br /&gt;
**[[Creating areas|Creating areas]]&lt;br /&gt;
**[[Distributed logic|Distributed logic]]&lt;br /&gt;
**[[LTSetup|LTSetup]]&lt;br /&gt;
**[[Remote access to your Larnitech Smart Home System|Remote access to your Larnitech Smart Home System]]&lt;br /&gt;
**[[Automation|Automation]]&lt;br /&gt;
**[[Plan control|Plan control]]&lt;br /&gt;
**[[Climate control settings|Climate control]]&lt;br /&gt;
**[[Security plugin settings|Security plugin]]&lt;br /&gt;
**[[Virtual device|Virtual device]]&lt;br /&gt;
**[[Disarming by Intercom with RFID/NFC cards|Disarming by Intercom with RFID/NFC cards]]&lt;br /&gt;
*Plugins&lt;br /&gt;
**[[Alexa|Alexa]]&lt;br /&gt;
**[[API|API]]&lt;br /&gt;
**[[Google Home|Google Home]]&lt;br /&gt;
**[[IKEA|IKEA]]&lt;br /&gt;
**[[Philips Hue|Philips Hue]]&lt;br /&gt;
**[[Siri|Siri]]&lt;br /&gt;
**[[Weather|Weather]]&lt;br /&gt;
**[[Modbus TCP|Modbus TCP]]&lt;br /&gt;
**[[iRidium|iRidium]]&lt;br /&gt;
**[[EIB|EIB]]&lt;br /&gt;
**[[Satel integration|Satel integration]]&lt;br /&gt;
**[[SIP|SIP]]&lt;br /&gt;
*[[Sonos|Sonos]]&lt;br /&gt;
*[[IFTTT (IF This, Then That)|IFTTT (IF This, Then That)]]&lt;br /&gt;
*[[Reset to factory defaults|Reset to factory defaults]]&lt;br /&gt;
*[[Messengers|Messengers]]&lt;br /&gt;
*[[Accounts|Accounts]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11046</id>
		<title>Quick Start Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11046"/>
		<updated>2023-09-13T12:11:05Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
&amp;lt;youtube width=&amp;quot;400px&amp;quot;&amp;gt;DIMELmedOHw&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
testtext&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Quick_start_guide&amp;diff=11043</id>
		<title>Quick start guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Quick_start_guide&amp;diff=11043"/>
		<updated>2023-09-13T12:03:54Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
&amp;lt;ol class=&amp;quot;l2&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Connect DE-MG/Metaforsa to the local network and other devices via CAN bus.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Power on the DE-MG/Metaforsa module and make sure that the power indicator light on the module is green.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Use the PC browser to open the web interface of the DE-MG/Metaforsa system configuration http://192.168.1.111 (login: admin; password: admin by default).&amp;lt;br&amp;gt;[[File:1.png|500px]]&amp;lt;br&amp;gt;&lt;br /&gt;
Make sure that your PC is applied to the same local network as the DE-MG/Metaforsa module and that the local network uses the address 192.168.1.x (otherwise follow the instruction [http://wiki.larnitech.com/documentation/how-to/setup-configuration/router-setup/ to change the IP address]).&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Update the system in the Updates section if needed.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Install the Larnitech application from Appstore or PlayMarket to your tablet or smartphone.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Make sure that your tablet/smartphone is connected to the same local Wi-Fi network which the DE-MG/Metaforsa module is registered on. Start the application and enter the following parameters that will appear in the Settings field. &amp;lt;ol type=&amp;quot;I&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Choose the language.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Set the 'Connection' parameter to 'Local'.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Your DE-MG/Metaforsa server should appear under the 'Servers list'. Choose it, then apply the settings by clicking ‘Next’.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;[[File:2.jpg|500px]]&lt;br /&gt;
&amp;lt;li&amp;gt;Available elements will be shown in the Setup field.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Using the web interface, go to the Modules section, where available modules will be shown. If necessary, use the ‘Update HW’ button to configure each of them for working with the equipment connected to them.&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:3.png|500px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:4.png|500px]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Power on the equipment connected to the net and make sure it works correctly.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Use the Setup section of the application or the Structure section of the web interface in order to create areas, place the elements in the areas and configure the settings.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Bind the buttons to the load according to the instruction.&amp;lt;br&amp;gt;&amp;lt;youtube width=&amp;quot;400&amp;quot;&amp;gt;lMwjmQ7YqNU&amp;lt;/youtube&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;If necessary, create light schemes according to the instruction.&amp;lt;br&amp;gt;&amp;lt;youtube width=&amp;quot;400&amp;quot;&amp;gt;5EYFy0mAbuA&amp;lt;/youtube&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;If necessary, set up the automatization according to the instruction.&amp;lt;br&amp;gt;&amp;lt;youtube width=&amp;quot;400&amp;quot;&amp;gt;HMBaR02HmuI&amp;lt;/youtube&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Add and set up the equipment remote control.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Add video surveillance cameras.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Add scenarios.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Set up the connection to the cloud service.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Add and set up the necessary plugins.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Change the security settings by changing the password to the web interface and system access key.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Enjoy&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11032</id>
		<title>Quick Start Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Quick_Start_Guide&amp;diff=11032"/>
		<updated>2023-09-05T10:46:24Z</updated>

		<summary type="html">&lt;p&gt;Mark: Quick Start Guide&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quick Start Guide&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=DW-RC12.B&amp;diff=10837</id>
		<title>DW-RC12.B</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=DW-RC12.B&amp;diff=10837"/>
		<updated>2023-03-17T20:09:34Z</updated>

		<summary type="html">&lt;p&gt;Mark: Created page with &amp;quot;DW-RC12.B&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;DW-RC12.B&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=DW-RC12.C&amp;diff=10836</id>
		<title>DW-RC12.C</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=DW-RC12.C&amp;diff=10836"/>
		<updated>2023-03-17T20:08:53Z</updated>

		<summary type="html">&lt;p&gt;Mark: Created page with &amp;quot;DW-RC12.B module&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;DW-RC12.B module&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=DW-METERS&amp;diff=2493</id>
		<title>DW-METERS</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=DW-METERS&amp;diff=2493"/>
		<updated>2021-12-07T11:41:35Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Module shut-off and deinstallation procedure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = DW-METERS.C&lt;br /&gt;
| image      = DW-METERSC.png&lt;br /&gt;
| RS485      = 1&lt;br /&gt;
| MBUS       = 1&lt;br /&gt;
| dts        = 1200-115200 b/s&lt;br /&gt;
| voltage    = 11.5...27.5 V DC&lt;br /&gt;
| dim        = 2U, 36x97x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==RS485/MBUS INTERFACE ADAPTER==&lt;br /&gt;
&lt;br /&gt;
This module is designed for reading data from electricity (RS485), water, gas, heat (MBUS) meters&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*Features&lt;br /&gt;
*MBUS&lt;br /&gt;
*RS485 Supported protocols:&lt;br /&gt;
**ModBus RTU&lt;br /&gt;
**DMX512&lt;br /&gt;
**custom protocols&lt;br /&gt;
*1200 – 115200 baud rate&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;&lt;br /&gt;
CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and/or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
*all connectivity work must be carried out with the power turned OFF;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding the cables and wires;&lt;br /&gt;
*do not apply excessive force to the wires by kinking or pressing them too hard: the inner conductors of the cables and wires may get stripped or damaged;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load limit parameters specified in the manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
When the power is on, NEVER:&lt;br /&gt;
*connect/disconnect the connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Overview==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS VIEW.png|300px]]&lt;br /&gt;
&lt;br /&gt;
==Module dimensions==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS DIM.png|500px]]&lt;br /&gt;
&lt;br /&gt;
==Example of connection==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS EXA.png|300px]]&lt;br /&gt;
&lt;br /&gt;
==Module parameters==&lt;br /&gt;
&lt;br /&gt;
{{ Mp&lt;br /&gt;
| rs485qty        = 1&lt;br /&gt;
| mbusqty         = 1&lt;br /&gt;
| dts             = 1200-115200 b/s&lt;br /&gt;
| power           = 11.5 … 27.5 V DC from CAN&lt;br /&gt;
| maxcur24v       = 40 mA&lt;br /&gt;
| bustype         = CAN (4-wire)&lt;br /&gt;
| instalation     = DIN-rail (EN 60715)&lt;br /&gt;
| case            = ABS&lt;br /&gt;
| protection      = IP40&lt;br /&gt;
| temprange       = -10 … +50 °C&lt;br /&gt;
| size            = 2U, 36x97x58 mm&lt;br /&gt;
| weight          = 130g&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Indication of module operation==&lt;br /&gt;
===Bootloader===&lt;br /&gt;
{{indication| textBBB= Waiting for bootloader command}}&lt;br /&gt;
===Firmware===&lt;br /&gt;
{{indicationfw&lt;br /&gt;
|topyl     = 0&lt;br /&gt;
|topgl     = 1&lt;br /&gt;
|err1      = 1&lt;br /&gt;
|err2      = 1&lt;br /&gt;
|err2text   = Lost connection to AC&lt;br /&gt;
|err5      = 1&lt;br /&gt;
|canact    = 1&lt;br /&gt;
|canacttxt = Transmitting data&lt;br /&gt;
|owact     = 1 &lt;br /&gt;
|owacttxt  = Receiving data&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Module installation and connection procedure==&lt;br /&gt;
#Install the module in the switchboard on the DIN rail and fix it with the special latch on the module base.&lt;br /&gt;
#Connect the RS485 and MBUS connector.&lt;br /&gt;
#Connect the CAN connector.&lt;br /&gt;
#Configure the module using LT setup.&lt;br /&gt;
#Check all equipment for proper operation.&lt;br /&gt;
&lt;br /&gt;
==Module shut-off and deinstallation procedure==&lt;br /&gt;
#Disconnect the CAN connector.&lt;br /&gt;
#Disconnect the MBUS and RS485 connector.&lt;br /&gt;
#Remove the module from the DIN rail, releasing the latch at the bottom of the module base.&lt;br /&gt;
&lt;br /&gt;
==HW settings==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Name!!Type, range!!SUBID!!Default!!Description&lt;br /&gt;
|-&lt;br /&gt;
|cfg||string||98||9600/8N1||cfg='SPEED/BPS', where&lt;br /&gt;
*SPEED – baud rate [1200..115200];&lt;br /&gt;
*B – data length [7,8];&lt;br /&gt;
*P – presence and type of parity bit [N(No parity),E(Even parity),O(Odd parity)];&lt;br /&gt;
*S – stop bit length [1, 1.5 or 2].&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[Protocol]||string||98||—||Protocol setting is described by protocol parameter. The following&lt;br /&gt;
protocols are supported:&lt;br /&gt;
*'modbus', Modbus protocol, at the end of redirection the checksum CRC16(Modbus) is added;&lt;br /&gt;
*'dmx', DMX protocol;&lt;br /&gt;
*'CO2' for connecting Larnitech CO2 sensors;&lt;br /&gt;
*'salda' for connecting Salda ventilation.&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' modbus&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|echo||on; off||98||'off'||For settings check out and testing echo parameter can be used. Module&lt;br /&gt;
echo-reply can be turned on or off with the help of this parameter.Echo parameter value:&lt;br /&gt;
*'off'&lt;br /&gt;
*'on'&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' echo='off'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|term||integer 0-1||98||'0'||Turning on built in RS485 bus 120Ω terminator&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' term=1&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=DW-METERS&amp;diff=2492</id>
		<title>DW-METERS</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=DW-METERS&amp;diff=2492"/>
		<updated>2021-12-07T11:41:16Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Module installation and connection procedure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = DW-METERS.C&lt;br /&gt;
| image      = DW-METERSC.png&lt;br /&gt;
| RS485      = 1&lt;br /&gt;
| MBUS       = 1&lt;br /&gt;
| dts        = 1200-115200 b/s&lt;br /&gt;
| voltage    = 11.5...27.5 V DC&lt;br /&gt;
| dim        = 2U, 36x97x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==RS485/MBUS INTERFACE ADAPTER==&lt;br /&gt;
&lt;br /&gt;
This module is designed for reading data from electricity (RS485), water, gas, heat (MBUS) meters&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*Features&lt;br /&gt;
*MBUS&lt;br /&gt;
*RS485 Supported protocols:&lt;br /&gt;
**ModBus RTU&lt;br /&gt;
**DMX512&lt;br /&gt;
**custom protocols&lt;br /&gt;
*1200 – 115200 baud rate&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;&lt;br /&gt;
CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and/or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
*all connectivity work must be carried out with the power turned OFF;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding the cables and wires;&lt;br /&gt;
*do not apply excessive force to the wires by kinking or pressing them too hard: the inner conductors of the cables and wires may get stripped or damaged;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load limit parameters specified in the manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
When the power is on, NEVER:&lt;br /&gt;
*connect/disconnect the connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Overview==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS VIEW.png|300px]]&lt;br /&gt;
&lt;br /&gt;
==Module dimensions==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS DIM.png|500px]]&lt;br /&gt;
&lt;br /&gt;
==Example of connection==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS EXA.png|300px]]&lt;br /&gt;
&lt;br /&gt;
==Module parameters==&lt;br /&gt;
&lt;br /&gt;
{{ Mp&lt;br /&gt;
| rs485qty        = 1&lt;br /&gt;
| mbusqty         = 1&lt;br /&gt;
| dts             = 1200-115200 b/s&lt;br /&gt;
| power           = 11.5 … 27.5 V DC from CAN&lt;br /&gt;
| maxcur24v       = 40 mA&lt;br /&gt;
| bustype         = CAN (4-wire)&lt;br /&gt;
| instalation     = DIN-rail (EN 60715)&lt;br /&gt;
| case            = ABS&lt;br /&gt;
| protection      = IP40&lt;br /&gt;
| temprange       = -10 … +50 °C&lt;br /&gt;
| size            = 2U, 36x97x58 mm&lt;br /&gt;
| weight          = 130g&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Indication of module operation==&lt;br /&gt;
===Bootloader===&lt;br /&gt;
{{indication| textBBB= Waiting for bootloader command}}&lt;br /&gt;
===Firmware===&lt;br /&gt;
{{indicationfw&lt;br /&gt;
|topyl     = 0&lt;br /&gt;
|topgl     = 1&lt;br /&gt;
|err1      = 1&lt;br /&gt;
|err2      = 1&lt;br /&gt;
|err2text   = Lost connection to AC&lt;br /&gt;
|err5      = 1&lt;br /&gt;
|canact    = 1&lt;br /&gt;
|canacttxt = Transmitting data&lt;br /&gt;
|owact     = 1 &lt;br /&gt;
|owacttxt  = Receiving data&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Module installation and connection procedure==&lt;br /&gt;
#Install the module in the switchboard on the DIN rail and fix it with the special latch on the module base.&lt;br /&gt;
#Connect the RS485 and MBUS connector.&lt;br /&gt;
#Connect the CAN connector.&lt;br /&gt;
#Configure the module using LT setup.&lt;br /&gt;
#Check all equipment for proper operation.&lt;br /&gt;
&lt;br /&gt;
==Module shut-off and deinstallation procedure==&lt;br /&gt;
#Disconnect the CAN connector.&lt;br /&gt;
#Disconnect the X1 connector.&lt;br /&gt;
#Remove the module from the DIN rail, releasing the latch at the bottom of the module base.&lt;br /&gt;
&lt;br /&gt;
==HW settings==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Name!!Type, range!!SUBID!!Default!!Description&lt;br /&gt;
|-&lt;br /&gt;
|cfg||string||98||9600/8N1||cfg='SPEED/BPS', where&lt;br /&gt;
*SPEED – baud rate [1200..115200];&lt;br /&gt;
*B – data length [7,8];&lt;br /&gt;
*P – presence and type of parity bit [N(No parity),E(Even parity),O(Odd parity)];&lt;br /&gt;
*S – stop bit length [1, 1.5 or 2].&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[Protocol]||string||98||—||Protocol setting is described by protocol parameter. The following&lt;br /&gt;
protocols are supported:&lt;br /&gt;
*'modbus', Modbus protocol, at the end of redirection the checksum CRC16(Modbus) is added;&lt;br /&gt;
*'dmx', DMX protocol;&lt;br /&gt;
*'CO2' for connecting Larnitech CO2 sensors;&lt;br /&gt;
*'salda' for connecting Salda ventilation.&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' modbus&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|echo||on; off||98||'off'||For settings check out and testing echo parameter can be used. Module&lt;br /&gt;
echo-reply can be turned on or off with the help of this parameter.Echo parameter value:&lt;br /&gt;
*'off'&lt;br /&gt;
*'on'&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' echo='off'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|term||integer 0-1||98||'0'||Turning on built in RS485 bus 120Ω terminator&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' term=1&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=DW-METERS&amp;diff=2491</id>
		<title>DW-METERS</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=DW-METERS&amp;diff=2491"/>
		<updated>2021-12-07T11:40:11Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* RS485/MBUS INTERFACE ADAPTER */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = DW-METERS.C&lt;br /&gt;
| image      = DW-METERSC.png&lt;br /&gt;
| RS485      = 1&lt;br /&gt;
| MBUS       = 1&lt;br /&gt;
| dts        = 1200-115200 b/s&lt;br /&gt;
| voltage    = 11.5...27.5 V DC&lt;br /&gt;
| dim        = 2U, 36x97x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==RS485/MBUS INTERFACE ADAPTER==&lt;br /&gt;
&lt;br /&gt;
This module is designed for reading data from electricity (RS485), water, gas, heat (MBUS) meters&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*Features&lt;br /&gt;
*MBUS&lt;br /&gt;
*RS485 Supported protocols:&lt;br /&gt;
**ModBus RTU&lt;br /&gt;
**DMX512&lt;br /&gt;
**custom protocols&lt;br /&gt;
*1200 – 115200 baud rate&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;&lt;br /&gt;
CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and/or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
*all connectivity work must be carried out with the power turned OFF;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding the cables and wires;&lt;br /&gt;
*do not apply excessive force to the wires by kinking or pressing them too hard: the inner conductors of the cables and wires may get stripped or damaged;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load limit parameters specified in the manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
When the power is on, NEVER:&lt;br /&gt;
*connect/disconnect the connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Overview==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS VIEW.png|300px]]&lt;br /&gt;
&lt;br /&gt;
==Module dimensions==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS DIM.png|500px]]&lt;br /&gt;
&lt;br /&gt;
==Example of connection==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS EXA.png|300px]]&lt;br /&gt;
&lt;br /&gt;
==Module parameters==&lt;br /&gt;
&lt;br /&gt;
{{ Mp&lt;br /&gt;
| rs485qty        = 1&lt;br /&gt;
| mbusqty         = 1&lt;br /&gt;
| dts             = 1200-115200 b/s&lt;br /&gt;
| power           = 11.5 … 27.5 V DC from CAN&lt;br /&gt;
| maxcur24v       = 40 mA&lt;br /&gt;
| bustype         = CAN (4-wire)&lt;br /&gt;
| instalation     = DIN-rail (EN 60715)&lt;br /&gt;
| case            = ABS&lt;br /&gt;
| protection      = IP40&lt;br /&gt;
| temprange       = -10 … +50 °C&lt;br /&gt;
| size            = 2U, 36x97x58 mm&lt;br /&gt;
| weight          = 130g&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Indication of module operation==&lt;br /&gt;
===Bootloader===&lt;br /&gt;
{{indication| textBBB= Waiting for bootloader command}}&lt;br /&gt;
===Firmware===&lt;br /&gt;
{{indicationfw&lt;br /&gt;
|topyl     = 0&lt;br /&gt;
|topgl     = 1&lt;br /&gt;
|err1      = 1&lt;br /&gt;
|err2      = 1&lt;br /&gt;
|err2text   = Lost connection to AC&lt;br /&gt;
|err5      = 1&lt;br /&gt;
|canact    = 1&lt;br /&gt;
|canacttxt = Transmitting data&lt;br /&gt;
|owact     = 1 &lt;br /&gt;
|owacttxt  = Receiving data&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Module installation and connection procedure==&lt;br /&gt;
#Install the module in the switchboard on the DIN rail and fix it with the special latch on the module base.&lt;br /&gt;
#Connect the X1 connector.&lt;br /&gt;
#Connect the CAN connector.&lt;br /&gt;
#Configure the module using LT setup.&lt;br /&gt;
#Check all equipment for proper operation.&lt;br /&gt;
&lt;br /&gt;
==Module shut-off and deinstallation procedure==&lt;br /&gt;
#Disconnect the CAN connector.&lt;br /&gt;
#Disconnect the X1 connector.&lt;br /&gt;
#Remove the module from the DIN rail, releasing the latch at the bottom of the module base.&lt;br /&gt;
&lt;br /&gt;
==HW settings==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Name!!Type, range!!SUBID!!Default!!Description&lt;br /&gt;
|-&lt;br /&gt;
|cfg||string||98||9600/8N1||cfg='SPEED/BPS', where&lt;br /&gt;
*SPEED – baud rate [1200..115200];&lt;br /&gt;
*B – data length [7,8];&lt;br /&gt;
*P – presence and type of parity bit [N(No parity),E(Even parity),O(Odd parity)];&lt;br /&gt;
*S – stop bit length [1, 1.5 or 2].&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[Protocol]||string||98||—||Protocol setting is described by protocol parameter. The following&lt;br /&gt;
protocols are supported:&lt;br /&gt;
*'modbus', Modbus protocol, at the end of redirection the checksum CRC16(Modbus) is added;&lt;br /&gt;
*'dmx', DMX protocol;&lt;br /&gt;
*'CO2' for connecting Larnitech CO2 sensors;&lt;br /&gt;
*'salda' for connecting Salda ventilation.&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' modbus&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|echo||on; off||98||'off'||For settings check out and testing echo parameter can be used. Module&lt;br /&gt;
echo-reply can be turned on or off with the help of this parameter.Echo parameter value:&lt;br /&gt;
*'off'&lt;br /&gt;
*'on'&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' echo='off'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|term||integer 0-1||98||'0'||Turning on built in RS485 bus 120Ω terminator&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' term=1&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=DW-METERS&amp;diff=2490</id>
		<title>DW-METERS</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=DW-METERS&amp;diff=2490"/>
		<updated>2021-12-07T11:37:36Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Features */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = DW-METERS.C&lt;br /&gt;
| image      = DW-METERSC.png&lt;br /&gt;
| RS485      = 1&lt;br /&gt;
| MBUS       = 1&lt;br /&gt;
| dts        = 1200-115200 b/s&lt;br /&gt;
| voltage    = 11.5...27.5 V DC&lt;br /&gt;
| dim        = 2U, 36x97x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==RS485/MBUS INTERFACE ADAPTER==&lt;br /&gt;
&lt;br /&gt;
This module is designed for interface adjustment between the devices which have the RS485 interface and the Smart Home system. This module has an internal 120Ω terminator resistor.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*Features&lt;br /&gt;
*MBUS&lt;br /&gt;
*RS485 Supported protocols:&lt;br /&gt;
**ModBus RTU&lt;br /&gt;
**DMX512&lt;br /&gt;
**custom protocols&lt;br /&gt;
*1200 – 115200 baud rate&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;&lt;br /&gt;
CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and/or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
*all connectivity work must be carried out with the power turned OFF;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding the cables and wires;&lt;br /&gt;
*do not apply excessive force to the wires by kinking or pressing them too hard: the inner conductors of the cables and wires may get stripped or damaged;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load limit parameters specified in the manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
When the power is on, NEVER:&lt;br /&gt;
*connect/disconnect the connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Overview==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS VIEW.png|300px]]&lt;br /&gt;
&lt;br /&gt;
==Module dimensions==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS DIM.png|500px]]&lt;br /&gt;
&lt;br /&gt;
==Example of connection==&lt;br /&gt;
&lt;br /&gt;
[[File:METERS EXA.png|300px]]&lt;br /&gt;
&lt;br /&gt;
==Module parameters==&lt;br /&gt;
&lt;br /&gt;
{{ Mp&lt;br /&gt;
| rs485qty        = 1&lt;br /&gt;
| mbusqty         = 1&lt;br /&gt;
| dts             = 1200-115200 b/s&lt;br /&gt;
| power           = 11.5 … 27.5 V DC from CAN&lt;br /&gt;
| maxcur24v       = 40 mA&lt;br /&gt;
| bustype         = CAN (4-wire)&lt;br /&gt;
| instalation     = DIN-rail (EN 60715)&lt;br /&gt;
| case            = ABS&lt;br /&gt;
| protection      = IP40&lt;br /&gt;
| temprange       = -10 … +50 °C&lt;br /&gt;
| size            = 2U, 36x97x58 mm&lt;br /&gt;
| weight          = 130g&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Indication of module operation==&lt;br /&gt;
===Bootloader===&lt;br /&gt;
{{indication| textBBB= Waiting for bootloader command}}&lt;br /&gt;
===Firmware===&lt;br /&gt;
{{indicationfw&lt;br /&gt;
|topyl     = 0&lt;br /&gt;
|topgl     = 1&lt;br /&gt;
|err1      = 1&lt;br /&gt;
|err2      = 1&lt;br /&gt;
|err2text   = Lost connection to AC&lt;br /&gt;
|err5      = 1&lt;br /&gt;
|canact    = 1&lt;br /&gt;
|canacttxt = Transmitting data&lt;br /&gt;
|owact     = 1 &lt;br /&gt;
|owacttxt  = Receiving data&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Module installation and connection procedure==&lt;br /&gt;
#Install the module in the switchboard on the DIN rail and fix it with the special latch on the module base.&lt;br /&gt;
#Connect the X1 connector.&lt;br /&gt;
#Connect the CAN connector.&lt;br /&gt;
#Configure the module using LT setup.&lt;br /&gt;
#Check all equipment for proper operation.&lt;br /&gt;
&lt;br /&gt;
==Module shut-off and deinstallation procedure==&lt;br /&gt;
#Disconnect the CAN connector.&lt;br /&gt;
#Disconnect the X1 connector.&lt;br /&gt;
#Remove the module from the DIN rail, releasing the latch at the bottom of the module base.&lt;br /&gt;
&lt;br /&gt;
==HW settings==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Name!!Type, range!!SUBID!!Default!!Description&lt;br /&gt;
|-&lt;br /&gt;
|cfg||string||98||9600/8N1||cfg='SPEED/BPS', where&lt;br /&gt;
*SPEED – baud rate [1200..115200];&lt;br /&gt;
*B – data length [7,8];&lt;br /&gt;
*P – presence and type of parity bit [N(No parity),E(Even parity),O(Odd parity)];&lt;br /&gt;
*S – stop bit length [1, 1.5 or 2].&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[Protocol]||string||98||—||Protocol setting is described by protocol parameter. The following&lt;br /&gt;
protocols are supported:&lt;br /&gt;
*'modbus', Modbus protocol, at the end of redirection the checksum CRC16(Modbus) is added;&lt;br /&gt;
*'dmx', DMX protocol;&lt;br /&gt;
*'CO2' for connecting Larnitech CO2 sensors;&lt;br /&gt;
*'salda' for connecting Salda ventilation.&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' modbus&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|echo||on; off||98||'off'||For settings check out and testing echo parameter can be used. Module&lt;br /&gt;
echo-reply can be turned on or off with the help of this parameter.Echo parameter value:&lt;br /&gt;
*'off'&lt;br /&gt;
*'on'&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' echo='off'&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|term||integer 0-1||98||'0'||Turning on built in RS485 bus 120Ω terminator&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
hw=&amp;quot;cfg='9600/8N1' term=1&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=SIP&amp;diff=2282</id>
		<title>SIP</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=SIP&amp;diff=2282"/>
		<updated>2021-11-25T11:45:44Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Send request to support for SIP registration. They will send you pair of SIP accounts&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Make sure you have SIP licence&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;[[File:sip1.png|500px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Make sure you have the latest versions of LT Setup, LT Server, SIP plugin installed&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;[[File:sip2.png|500px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Configure plugin before enabling.&lt;br /&gt;
&amp;lt;br&amp;gt;[[File:sip3.png|500px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Fill settings&lt;br /&gt;
&amp;lt;br&amp;gt;[[File:sip4.png|500px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''SIP number of SIP intercom (caller)''' - SIP account received from support team that will be used for 3rd-party device.&lt;br /&gt;
&amp;lt;br&amp;gt;Ends &amp;quot;1&amp;quot;. Example: 277900276'''1'''@sip.larnitech.com&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''Cameras''' - You can add any camera from our system to the virtual intercom.&amp;lt;br&amp;gt;&lt;br /&gt;
'''Server:''' sip.larnitech.com&amp;lt;br&amp;gt;&lt;br /&gt;
'''Port:''' 5060&amp;lt;br&amp;gt;&lt;br /&gt;
'''Login:''' SIP account received from support. It must end with 0. Example  77900276'''0'''@sip.larnitech.com&amp;lt;br&amp;gt;&lt;br /&gt;
'''Password:''' password received from support team&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Leave ‘Local SIP server settings’ empty&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Save configuration and Enable the plugin.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;'''LOG Example:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
 IC SIP: [   msg] Url 'state/SIP-NUMBER/WAITING' response code 200&lt;br /&gt;
 IC SIP: [   msg] Url 'state/SIP-NUMBER/WAITING' response code 200&lt;br /&gt;
 IC SIP: [   msg] Url 'state/SIP-NUMBER/WAITING' response code 200&lt;br /&gt;
 IC SIP: [   msg] Url 'state/SIP-NUMBER/WAITING' response code 200&lt;br /&gt;
 IC SIP: [   msg] Url 'state/SIP-NUMBER/WAITING' response code 200 - '''Calling (response code 200 - OK)'''&lt;br /&gt;
 IC SIP: [   msg]          SIP-NUMBER: [2028:  0] device mode: TALKING - '''Answer and Talking'''&lt;br /&gt;
 IC SIP: [   msg] Url 'state/SIP-NUMBER/WAITING' response code 200&lt;br /&gt;
 IC SIP: [   msg] Url 'state/SIP-NUMBER/WAITING' response code 200&lt;br /&gt;
 IC SIP: [   msg]          SIP-NUMBER: device mode: IDLE&lt;br /&gt;
 IC SIP: [   msg] Url 'state/SIP-NUMBER/HANGUP' response code 200 - '''Cancel Call'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Plan_control&amp;diff=2275</id>
		<title>Plan control</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Plan_control&amp;diff=2275"/>
		<updated>2021-11-24T08:26:35Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Instruction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;youtube&amp;gt;GNf-zfeYLSk&amp;lt;/youtube&amp;gt;&lt;br /&gt;
===Zip file===&lt;br /&gt;
[{{filepath:ltPlan.zip}} ltPlan]&lt;br /&gt;
&lt;br /&gt;
===Instruction===&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Install fresh application from [https://repo.larnitech.com/ https://repo.larnitech.com/]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Download file ltPlan.zip unpack it and add your floor images to png-&amp;gt;plan folder&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Pack it back with ZIP and upload to your DE-MG/Metaforsa in Skins section. &amp;lt;b&amp;gt;Important! ZIP file name must the same as folder name located inside&amp;lt;/b&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Add record &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot; line&amp;gt;&lt;br /&gt;
&amp;lt;item addr=&amp;quot;2048:&amp;quot; type=&amp;quot;virtual&amp;quot; sub-type=&amp;quot;plan&amp;quot; image=&amp;quot;plan.png&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
to one or more areas in your logic.xml file.&lt;br /&gt;
Where &amp;quot;plan.png&amp;quot; name of your background image for the area&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Enable ltPlan skin in app (Settings-&amp;gt;Skins)&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Add devices to your floor plan as shown on video&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
If the plan image has only opaque walls and a transparent background, you can use the sub-type=&amp;quot;planp&amp;quot;, and the application will automatically paint your walls blue.&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Modbus_TCP&amp;diff=2227</id>
		<title>Modbus TCP</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Modbus_TCP&amp;diff=2227"/>
		<updated>2021-11-18T14:25:06Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* ModBus TCP Plugin installation &amp;amp; configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==ModBus TCP Plugin installation &amp;amp; configuration==&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Make sure you have ModBus TCP licenses&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus1.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Make sure you have the latest versions of LT Setup, LT Server, ModBus TCP plugin installed&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus2.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Configure plugin before enabling.&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus3.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus4.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus5.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
'''IP''' - IP address of a ModBus TCP device, make sure that you can ping this device&amp;lt;br&amp;gt;&lt;br /&gt;
'''Port''' - 502 it is default port in most cases, but check documentation of your ModBus TCP device&amp;lt;br&amp;gt;&lt;br /&gt;
'''Master/Slave''' - this option means that you add a Master device or Slave device&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Enable plugin.&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus6.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Go to Scripts page and create Blockly script&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus7.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Add ModBus block from Other tab&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus8.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Choose ModBus TCP com-port from dropdown list and fill other fields. Save script and try it.&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus9.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Logs==&lt;br /&gt;
 Starting Service of MODBUS TCP plugin for Larnitech system...&lt;br /&gt;
 Started Service of MODBUS TCP plugin for Larnitech system.&lt;br /&gt;
 Compiled: Jul  7 2021 13:59:57&lt;br /&gt;
 INF: Settings:&lt;br /&gt;
 INF: debug yes '''- Debug mode is enabled'''&lt;br /&gt;
 INF: modbus-devices 192.168.1.110:502:0&lt;br /&gt;
 INF: Modbus 192.168.1.110:502:0 thread created&lt;br /&gt;
 INF: Modbus 192.168.1.110:502:0 thread started&lt;br /&gt;
 DEBUG: Modbus client: connected to 192.168.1.110:502:0''' - Plugin connected to the device'''&lt;br /&gt;
 DEBUG: Modbus client: waiting for messages for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Add message 01050011FF00 to 192.168.1.110:502:0 queue&lt;br /&gt;
 DEBUG: Modbus thread unlocked for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Modbus client: send packet to 192.168.1.110:502:0 0x01050011FF00''' - Send ‘ON’ to first coil'''&lt;br /&gt;
 DEBUG: Modbus client: confirmation from 192.168.1.110:502:0 0x01050011FF00 '''- Right feedback from the device'''&lt;br /&gt;
 DEBUG: Modbus client: waiting for messages for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Add message 010500110000 to 192.168.1.110:502:0 queue&lt;br /&gt;
 DEBUG: Modbus thread unlocked for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Modbus client: send packet to 192.168.1.110:502:0 0x010500110000''' - Send ‘OFF’ to first coil'''&lt;br /&gt;
 DEBUG: Modbus client: confirmation from 192.168.1.110:502:0 0x010500110000''' - Right feedback from the device'''&lt;br /&gt;
 DEBUG: Modbus client: waiting for messages for 192.168.1.110:502:0&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Modbus_TCP&amp;diff=2226</id>
		<title>Modbus TCP</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Modbus_TCP&amp;diff=2226"/>
		<updated>2021-11-18T14:24:38Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Logs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==ModBus TCP Plugin installation &amp;amp; configuration==&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Make sure you have ModBus TCP licenses&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus1.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Make sure you have the latest versions of LT Setup, LT Server, ModBus TCP plugin installed&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus2.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Configure plugin before enabling.&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus3.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus4.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus5.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
'''IP''' - IP address of a ModBus TCP device, make sure that you can ping this device&lt;br /&gt;
'''Port''' - 502 it is default port in most cases, but check documentation of your ModBus TCP device&lt;br /&gt;
'''Master/Slave''' - this option means that you add a Master device or Slave device&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Enable plugin.&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus6.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Go to Scripts page and create Blockly script&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus7.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Add ModBus block from Other tab&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus8.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Choose ModBus TCP com-port from dropdown list and fill other fields. Save script and try it.&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus9.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Logs==&lt;br /&gt;
 Starting Service of MODBUS TCP plugin for Larnitech system...&lt;br /&gt;
 Started Service of MODBUS TCP plugin for Larnitech system.&lt;br /&gt;
 Compiled: Jul  7 2021 13:59:57&lt;br /&gt;
 INF: Settings:&lt;br /&gt;
 INF: debug yes '''- Debug mode is enabled'''&lt;br /&gt;
 INF: modbus-devices 192.168.1.110:502:0&lt;br /&gt;
 INF: Modbus 192.168.1.110:502:0 thread created&lt;br /&gt;
 INF: Modbus 192.168.1.110:502:0 thread started&lt;br /&gt;
 DEBUG: Modbus client: connected to 192.168.1.110:502:0''' - Plugin connected to the device'''&lt;br /&gt;
 DEBUG: Modbus client: waiting for messages for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Add message 01050011FF00 to 192.168.1.110:502:0 queue&lt;br /&gt;
 DEBUG: Modbus thread unlocked for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Modbus client: send packet to 192.168.1.110:502:0 0x01050011FF00''' - Send ‘ON’ to first coil'''&lt;br /&gt;
 DEBUG: Modbus client: confirmation from 192.168.1.110:502:0 0x01050011FF00 '''- Right feedback from the device'''&lt;br /&gt;
 DEBUG: Modbus client: waiting for messages for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Add message 010500110000 to 192.168.1.110:502:0 queue&lt;br /&gt;
 DEBUG: Modbus thread unlocked for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Modbus client: send packet to 192.168.1.110:502:0 0x010500110000''' - Send ‘OFF’ to first coil'''&lt;br /&gt;
 DEBUG: Modbus client: confirmation from 192.168.1.110:502:0 0x010500110000''' - Right feedback from the device'''&lt;br /&gt;
 DEBUG: Modbus client: waiting for messages for 192.168.1.110:502:0&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Modbus_TCP&amp;diff=2225</id>
		<title>Modbus TCP</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Modbus_TCP&amp;diff=2225"/>
		<updated>2021-11-18T14:24:16Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Logs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==ModBus TCP Plugin installation &amp;amp; configuration==&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Make sure you have ModBus TCP licenses&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus1.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Make sure you have the latest versions of LT Setup, LT Server, ModBus TCP plugin installed&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus2.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Configure plugin before enabling.&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus3.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus4.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus5.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
'''IP''' - IP address of a ModBus TCP device, make sure that you can ping this device&lt;br /&gt;
'''Port''' - 502 it is default port in most cases, but check documentation of your ModBus TCP device&lt;br /&gt;
'''Master/Slave''' - this option means that you add a Master device or Slave device&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Enable plugin.&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus6.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Go to Scripts page and create Blockly script&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus7.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Add ModBus block from Other tab&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus8.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Choose ModBus TCP com-port from dropdown list and fill other fields. Save script and try it.&lt;br /&gt;
&amp;lt;br&amp;gt;[[file:newmodbus9.png|700px|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Logs==&lt;br /&gt;
 Starting Service of MODBUS TCP plugin for Larnitech system...&lt;br /&gt;
 Started Service of MODBUS TCP plugin for Larnitech system.&lt;br /&gt;
 Compiled: Jul  7 2021 13:59:57&lt;br /&gt;
 INF: Settings:&lt;br /&gt;
 INF: debug yes '''- Debug mode is enabled'''&lt;br /&gt;
 INF: modbus-devices 192.168.1.110:502:0&lt;br /&gt;
 INF: Modbus 192.168.1.110:502:0 thread created&lt;br /&gt;
 INF: Modbus 192.168.1.110:502:0 thread started&lt;br /&gt;
 DEBUG: Modbus client: connected to 192.168.1.110:502:0''' - Plugin connected to the device'''&lt;br /&gt;
 DEBUG: Modbus client: waiting for messages for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Add message 01050011FF00 to 192.168.1.110:502:0 queue&lt;br /&gt;
 DEBUG: Modbus thread unlocked for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Modbus client: send packet to 192.168.1.110:502:0 0x01050011FF00''' - Send ‘ON’ to first coil'''&lt;br /&gt;
 DEBUG: Modbus client: confirmation from 192.168.1.110:502:0 0x01050011FF00 '''- Right feedback from device'''&lt;br /&gt;
 DEBUG: Modbus client: waiting for messages for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Add message 010500110000 to 192.168.1.110:502:0 queue&lt;br /&gt;
 DEBUG: Modbus thread unlocked for 192.168.1.110:502:0&lt;br /&gt;
 DEBUG: Modbus client: send packet to 192.168.1.110:502:0 0x010500110000''' - Send ‘OFF’ to first coil'''&lt;br /&gt;
 DEBUG: Modbus client: confirmation from 192.168.1.110:502:0 0x010500110000''' - Right feedback from device'''&lt;br /&gt;
 DEBUG: Modbus client: waiting for messages for 192.168.1.110:502:0&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_%E2%80%93_DE-MG_comparison&amp;diff=2125</id>
		<title>Metaforsa – DE-MG comparison</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_%E2%80%93_DE-MG_comparison&amp;diff=2125"/>
		<updated>2021-11-10T08:53:32Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Larnitech GmbH offers smart home systems of two varieties: the simplified basic system called&lt;br /&gt;
Metaforsa and the full-function Larnitech Smart Home, based on the DE-MG (main gateway) module. The&lt;br /&gt;
table below offers the comparison between the 4 options.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Feature!!DE-MG!!Metaforsa!!Metaforsa2!!Metaforsa2 Cloud&lt;br /&gt;
|-&lt;br /&gt;
|'''Quantity of supported extra modules'''&amp;lt;br&amp;gt;This is the quantity of extra modules that can be connected to&amp;lt;br&amp;gt;the Smart Home system||999||4&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;||4&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;||99&lt;br /&gt;
|-&lt;br /&gt;
|'''Lighting scenarios'''&amp;lt;br&amp;gt;There is a possibility of creating various lighting scenarios||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
|'''Lighting automation'''&amp;lt;br&amp;gt;Lighting automation is based on motion detectors, level of&amp;lt;br&amp;gt;lighting, door position, time and date||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
|'''Quantity of additional scenarios'''&amp;lt;br&amp;gt;This is the number of additional scenarios that can be used&amp;lt;br&amp;gt;in the system. Lighting scenarios and lighting automation are&amp;lt;br&amp;gt;considered basic functions and are not included in this list||150+&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;||70+ &amp;lt;sup&amp;gt;1 2&amp;lt;/sup&amp;gt;||70+ &amp;lt;sup&amp;gt;1 2&amp;lt;/sup&amp;gt;||150+ &amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|'''Quantity of IP cameras that can be integrated into the system'''&amp;lt;br&amp;gt;This function allows to view the image captured by IP cameras&amp;lt;br&amp;gt;and to control them using the Larnitech Smart Home application||99||1||1||99&lt;br /&gt;
|-&lt;br /&gt;
|'''Possibility of creating custom scenarios'''&amp;lt;br&amp;gt;Possibility of creating custom scenarios that do not exist in the&amp;lt;br&amp;gt;database||+||–&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;||–&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;||+&lt;br /&gt;
|-&lt;br /&gt;
|'''Voice control (Siri, Alexa, Google Home, Alisa)'''||+||+||+||+&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|'''Support of multiroom system'''&amp;lt;br&amp;gt;Ability to integrate the media points into the Smart Home system&amp;lt;br&amp;gt;in order to play the voice messages and control media content||local/remote||local only||local only||local/remote&lt;br /&gt;
|-&amp;lt;br&amp;gt;'''Doorbell'''&lt;br /&gt;
|Possibility to connect the FE-IC doorbell to Larnitech Smart&amp;lt;br&amp;gt;Home system||local/remote||local/remote||local/remote||local/remote&lt;br /&gt;
|-&lt;br /&gt;
|'''Support of third party media devices'''&amp;lt;br&amp;gt;Possibility to control the third party media devices that support&amp;lt;br&amp;gt;the DLNA protocol||local/remote||ocal only||local only||local/remote&lt;br /&gt;
|-&lt;br /&gt;
|'''Remote control'''&amp;lt;br&amp;gt;Remote connection that allows to control all Smart Home&amp;lt;br&amp;gt;systems through direct or cloud connection||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
|'''API'''&amp;lt;br&amp;gt;Application programming interface that allows to exchange data&amp;lt;br&amp;gt;and commands with third party applications||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
|'''Plug &amp;amp; Play'''&amp;lt;br&amp;gt;Technology that automatically detects and preconfigures new&amp;lt;br&amp;gt;devices connected to the system||+||+||+||+&lt;br /&gt;
|-&lt;br /&gt;
|'''Video cloud'''&amp;lt;br&amp;gt;Possibility to view the image from IP cameras with the help of&amp;lt;br&amp;gt;cloud connection||+||limited||limited||limited&lt;br /&gt;
|-&lt;br /&gt;
|'''Number of relay outputs'''&amp;lt;br&amp;gt;Quantity of output channels that are built into the module in&amp;lt;br&amp;gt;order to connect the load||–||10||10||10&lt;br /&gt;
|-&lt;br /&gt;
|'''Number of discrete inputs'''&amp;lt;br&amp;gt;Quantity of input channels that are built into the module in order&amp;lt;br&amp;gt;to connect the sensors and buttons||–||16||24||24&lt;br /&gt;
|-&lt;br /&gt;
|'''Number of dimming channels'''&amp;lt;br&amp;gt;Quantity of dimming channels that are built into the module in&amp;lt;br&amp;gt;order to connect the dimming lamps||–||–||4||4&lt;br /&gt;
|-&lt;br /&gt;
|'''Number of PWM outputs'''&amp;lt;br&amp;gt;PWM outputs combinated with inputs ||0||0||0||8&lt;br /&gt;
|-&lt;br /&gt;
|'''Number of CAN ports'''&amp;lt;br&amp;gt;Quantity of CAN ports in order to connect additional modules ||2||1||1||1&lt;br /&gt;
|-&lt;br /&gt;
|'''Built-in IR receiver'''&amp;lt;br&amp;gt;Infrared receiver used to set up a universal remote||+||–||–||+&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; - Can be extended with the license&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; - Continually expands&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt; - Alexa, Google Home, Alisa included; Siri can be extended with license&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=520</id>
		<title>Metaforsa MF-10</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=520"/>
		<updated>2021-07-21T15:01:45Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Connection of FW-WL.A leakage sensors */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = MF-10&lt;br /&gt;
| image      = Metaforsa.jpg&lt;br /&gt;
| outCount   = 10&lt;br /&gt;
| dimmOut    = &lt;br /&gt;
| peakl      = 8A&lt;br /&gt;
| peakdl     = &lt;br /&gt;
| dt         = &lt;br /&gt;
| inDisc     = 16&lt;br /&gt;
| inDigit    = 4&lt;br /&gt;
| voltage    = 11.5...15.5 V DC&lt;br /&gt;
| dim        = 9U, 156x110x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE Installation Manual describes the procedure for its installation, assembly, operation and setting.&lt;br /&gt;
While working with the system, you must strictly comply with all the requirements set out in this manual. Failure to comply may result in damage to the device, its failure, electric shock, fire and other fallout.&lt;br /&gt;
The manufacturer reserves the right to make changes to this manual without prior notice. This manual is an integral part of the system and shall remain with the end-use customer.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*10 universal outputs support:&lt;br /&gt;
**Lights&lt;br /&gt;
**NC/NO heating valves&lt;br /&gt;
**Blinds&lt;br /&gt;
**1 or 2-pole gates&lt;br /&gt;
**1 or 2-pole valves&lt;br /&gt;
**NC/NO locks&lt;br /&gt;
**Fan coil units&lt;br /&gt;
*16 Discreet inputs that support:&lt;br /&gt;
**Buttons&lt;br /&gt;
**Switches&lt;br /&gt;
**reed switches&lt;br /&gt;
**leak sensors&lt;br /&gt;
**motion detectors&lt;br /&gt;
*4 digital inputs for up to 8 temperature sensors&lt;br /&gt;
*Extension port&lt;br /&gt;
*Relays with AgSnO2 contacts rated for 16A and 120A 20ms inrush current&lt;br /&gt;
*Cloud connection and control of all house systems&lt;br /&gt;
*Voice control (Siri, Alexa, Google Home)&lt;br /&gt;
*Plugins engine allows expanding the system possibilities (e.g. integrating with Satel, Philips Hue, IKEA lights)&lt;br /&gt;
*Safety against unauthorized intrusion ensured with RSA/AES256 encryption&lt;br /&gt;
*Push notifications from the system on your phone (also possible to receive through Telegram and Viber messengers)&lt;br /&gt;
*History (meter data for 1 year is stored)&lt;br /&gt;
*Plug and play (possibility for fast and user-friendly extension of the system)&lt;br /&gt;
*Regular system updates&lt;br /&gt;
*Large constantly updated database of scripts to meet all your needs&lt;br /&gt;
*Automatic daily backups via cloud with the possibility to restore the initial configuration&lt;br /&gt;
*Open API (which allows integrating Larnitech into other systems)&lt;br /&gt;
*Interactive and user-friendly LT SETUP Web interface available for advanced configuration&lt;br /&gt;
*Plug and play&lt;br /&gt;
*It is a completely ready-to-install Smart Home system kit&lt;br /&gt;
&lt;br /&gt;
==Safety requirements== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;'''CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and / or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*all connection works must be carried out without power;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding of cables and wires;&lt;br /&gt;
*do not pinch or kink the cables and wires by applying excessive force. Otherwise, inner conductors of the cable and wires may be stripped or broken;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load parameters limit specified in this manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When working with the system after voltage supply '''NEVER''':&lt;br /&gt;
*make connection/disconnection of connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&lt;br /&gt;
==System configuration and purpose== &lt;br /&gt;
&lt;br /&gt;
===Purpose of the system=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE is a ready-made solution for automation of residential and commercial premises, hotel complexes which includes the most highly desired features of Smart House.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The device has 10 control channels, 16 incoming sensor channels, and a digital sensors’ connection port.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Universal outputs can be used to control: !!  Universal inputs allow you to connect:&lt;br /&gt;
|-&lt;br /&gt;
|  Lighting ||  Buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|  Socket connectors ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Underfloor heating ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Curtain/gate actuators ||  Leakage sensors&lt;br /&gt;
|-&lt;br /&gt;
|  Water supply/heating valves || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Digital sensors connection port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The digital sensors connection port allows you to connect a variety of digital sensors, such as temperature sensors, ambient light, humidity and other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expansion port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The expansion port allows you to upgrade the system by connecting auxiliary equipment, such as the control module for LED lighting, dimming, metering devices and other elements.&lt;br /&gt;
The package, which is completely ready-to-install, includes the basic hardware and software.&lt;br /&gt;
&lt;br /&gt;
===Package contents=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The package comes standard with:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Mainframe METAFORSA MF-10.А || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply unit MEANWELL DR-15-12 || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Motion sensor Satel amber || 3 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Leakage sensor FW-WL.A || 2 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Temperature-sensitive element FW-TS.A || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic reed switch (window/door position sensor) || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Ethernet-cable noise filter || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply cord || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Manual || 1 pc&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Basic technical specifications of the System=== &lt;br /&gt;
&lt;br /&gt;
The basic specifications and characteristics of the module METAFORSA MF-14.A are shown in table 1&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;text-align:left;&amp;quot; | Table1&lt;br /&gt;
|-&lt;br /&gt;
!Specification !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Output ports'''&lt;br /&gt;
|-&lt;br /&gt;
| Number of switched channels || 10 &lt;br /&gt;
|-&lt;br /&gt;
| Number of switched groups|| 3 &lt;br /&gt;
|-&lt;br /&gt;
| Commutation voltage || 0-250 V AC/DC &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one channel) || 8A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one group) || 20A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (device) || 45A &lt;br /&gt;
|-&lt;br /&gt;
| Power supply cable connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Permissible section of power supply cable to connect in socket:&amp;lt;br&amp;gt;single-conductor cable&amp;lt;br&amp;gt;multiple-conductor cable&amp;lt;br&amp;gt;tipped multiple-conductor cable||&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 2.5mm2&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Input ports'''&lt;br /&gt;
|-&lt;br /&gt;
|Number of discrete inputs || 16&lt;br /&gt;
|- &lt;br /&gt;
|Number of digital inputs || 4 &lt;br /&gt;
|-&lt;br /&gt;
|Current maximum rating on the direct-current voltage connectors || 50mA &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Other'''&lt;br /&gt;
|-&lt;br /&gt;
|Operating ambient temperature || 0 … +45°С &lt;br /&gt;
|-&lt;br /&gt;
|Storage/transportation temperature || -20 … +60°С &lt;br /&gt;
|-&lt;br /&gt;
|Permissible humidity || 0 … 95% (non-condensing) &lt;br /&gt;
|-&lt;br /&gt;
|Supply voltage || 11.5 … 15.5 V DC&lt;br /&gt;
|-&lt;br /&gt;
|Maximum demand || 1А &lt;br /&gt;
|-&lt;br /&gt;
|Available interfaces ||  Ethernet, CAN, OneWire&lt;br /&gt;
|-&lt;br /&gt;
|Bus type ||  CAN (4-wire)&lt;br /&gt;
|-&lt;br /&gt;
|CAN (4-wire) || 800 m* (twisted pair 5 cat) &lt;br /&gt;
|-&lt;br /&gt;
|CAN wire type || FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|CAN connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Digital line maximum length || 30 m &lt;br /&gt;
|-&lt;br /&gt;
|Digital line wirde type || UTP/FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|Digital line connection type || Connector RJ-12&lt;br /&gt;
|-&lt;br /&gt;
|LAN maximum length || 100 m &lt;br /&gt;
|-&lt;br /&gt;
|LAN wire type || UTP/FTP Cat 5E&lt;br /&gt;
|-&lt;br /&gt;
|LAN connection type || Connector RJ-45 &lt;br /&gt;
|-&lt;br /&gt;
|Dimensional specifications || 9U, 156x110x58 mm &lt;br /&gt;
|-&lt;br /&gt;
|Shell material || ABS plastic &lt;br /&gt;
|-&lt;br /&gt;
|Casing || IP40&lt;br /&gt;
|-&lt;br /&gt;
|Equipment installation type || DIN-rail (EN 60715) &lt;br /&gt;
|-&lt;br /&gt;
|Weight || 400 g &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – installing additional power supply units is required for long lines; the maximum length of the line may be reduced by various interference factors&lt;br /&gt;
&lt;br /&gt;
===General structure of the System=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Module general view is shown in '''fig. 1'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10.ch.jpg|700px|frameless|left|Fig. 1 Module general view]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;clear:left;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1-5 || — connectors for load application and power supply&lt;br /&gt;
|-&lt;br /&gt;
|6 || — device status indication&lt;br /&gt;
|-&lt;br /&gt;
|7 || — power connector&lt;br /&gt;
|-&lt;br /&gt;
|8 || — Ethernet network connector&lt;br /&gt;
|-&lt;br /&gt;
|9-12 || — connectors for digital sensors and buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|13 || — OneWire interface connector (for digital sensors)&lt;br /&gt;
|-&lt;br /&gt;
|14 || — connector for expansion module.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Overview of the METAFORSA device external connectors:''' In the upper part of the casing (fig. 1) there are 5 connectors with screw clamps. Connectors: (1) – contact points (L1, L2), (3) – contact points (L3, L4) and (5) – contact point (L5) – phase conductor connection for load switching of the channels C1-C4, C5-C8, and C9-C10 respectively. The parallel connection of two contact points is used in connectors (1) and (3) in order to increase the capacity. Connectors: (2) – C1-C4 contact points, (4) – contact points C5-C8 and (5) – C9-C10 – are used for load connection (of actuators – lights, valves, curtain drives, etc.). Internal circuit for output switching is shown in '''fig. 2.'''&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10il.jpg|700px|frameless|left|Fig. 2]]&lt;br /&gt;
&lt;br /&gt;
*connector (7) — module power supply connection;&lt;br /&gt;
*connector (8) — Ethernet network connection;&lt;br /&gt;
*connectors (9-12) — four six-point connectors for digital sensors connection – motion, leakage, reed switch sensors, and button/switching unit sensors;&lt;br /&gt;
*connector (13) — OneWire digital sensors bus connection;&lt;br /&gt;
*connector (14) — expansion module connection.&lt;br /&gt;
&lt;br /&gt;
The physical configuration and contact point assignment of each connector are shown in '''table 2.'''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ text-align=&amp;quot;left&amp;quot;|'''Table2'''&lt;br /&gt;
|-&lt;br /&gt;
!Connector!!Contact!! style=&amp;quot;width:300px&amp;quot; |Assignment&lt;br /&gt;
|-&lt;br /&gt;
|1, 3&amp;lt;br&amp;gt;[[File:mf10l.jpg|80px|frameless]] ||L1-2 L3-4|| Phase conductor connection for C1-C8 channels load switching&lt;br /&gt;
|-&lt;br /&gt;
|2, 4&amp;lt;br&amp;gt;[[File:mf10out.jpg|80px|frameless]] ||C1-4 C5-8|| Load application (light lamps, thermal actuators, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|5&amp;lt;br&amp;gt;[[File:mf10out2.jpg|80px|frameless]] || С9 L5 С10|| Connection of curtain/jalousie/shutter actuators, valve, lamps, gate controllers, etc.: С9, С10 — outputs for load application L5 — connection of group phase supply wire&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot;| 6&amp;lt;br&amp;gt;Device status indicators || The module status indicators are described in '''table 3'''&lt;br /&gt;
|-&lt;br /&gt;
|7&amp;lt;br&amp;gt;[[File:mf10power.jpg|80px|frameless]] ||+12V GND|| +12V — module power supply by an external 12 V power supply GND — common&lt;br /&gt;
|-&lt;br /&gt;
|8&amp;lt;br&amp;gt;[[File:Rj45.jpg|80px|frameless]] ||RJ45|| Connector for LAN connectivity&lt;br /&gt;
|-&lt;br /&gt;
|9-12&amp;lt;br&amp;gt;[[File:mf10in.jpg|80px|frameless]] ||+12V In1 … In16 GND||Controlling devices connection (buttons, magnetic reed switches, motion or leakage sensors): +12V — sensor power output +12 V In1 … In16 — logic inputs (0-12 V) GND — common&lt;br /&gt;
|-&lt;br /&gt;
|13&amp;lt;br&amp;gt;[[File:mf10ow.jpg|80px|frameless]] ||OneWire|| Digital sensors connection (temperature) VCC — sensors power supply output +5V OW1-OW4 — OneWire data buses GND — common&lt;br /&gt;
|-&lt;br /&gt;
|14&amp;lt;br&amp;gt;[[File:Can.jpg|80px|frameless]] ||VCC&amp;lt;br&amp;gt;GND&amp;lt;br&amp;gt;L&amp;lt;br&amp;gt;H|| External modules connection for CAN-bus VСС — 12V output for external devices power supply GND — common L — CAN-L data bus H — CAN-H data bus&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{indicationmf10}}&lt;br /&gt;
&lt;br /&gt;
===System installation and assembly=== &lt;br /&gt;
Before connecting the system, you must:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*site the sensor and actuators (if not pre-installed), set the sensors and actuators;&lt;br /&gt;
*site the module and power supply.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note: The module must be installed near the power supply voltage source.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;CAUTION!&lt;br /&gt;
#'''AC power voltage must be provided to the system input through the circuit breaker assembly. It should be installed close to the power supply.'''&lt;br /&gt;
#'''The load is applied through the circuit breaker assembly. It can be both common – for all groups, and individual – for each  group (fig. 3,4).'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa1.jpg|700px|Fig. 3]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 3.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa2.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 4.'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
#'''The power of circuit breaker assembly must comply with the load capacity;'''&lt;br /&gt;
#'''Nothing else than the phase conductors can be connected to the module, the neutral wire is connected separately.'''&lt;br /&gt;
&lt;br /&gt;
Typical diagram of METAFORSA MF-10.A module connection is shown in '''fig. 5.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa3.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig. 5''' Typical connection diagram&lt;br /&gt;
&lt;br /&gt;
===Connection of the actuators===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of the lights/electric contactor/heating thermal actuator====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa4.jpg|350px|lamp]]&amp;lt;br&amp;gt;'''Fig. 6'''|| style=&amp;quot;margin:20px&amp;quot;|Such actuators as light, electric contactor, heating thermal actuator should be switched on any of the outputs 1 – 10, the neutral wire and the ground wire should be connected directly to the switchboard. The example of connection is shown in '''Fig.6'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of high load device====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa5.png|350px|Contactor]]|| style=&amp;quot;margin:20px&amp;quot;|Recomended contactors:&lt;br /&gt;
*ABB ESB series&lt;br /&gt;
*Schneider Acti 9 iCT series&lt;br /&gt;
*Hager ESC series.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the load, make sure that the output configuration of METAFORSA module is correct. The incorrect configuration or incorrect connection can cause the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa6.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 7'''|| style=&amp;quot;margin:20px&amp;quot;|The single pole water/gas supply valve is connected to any of the outputs of 1 – 10, the (neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.7'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the valve, it is necessary to ensure the output configuration of METAFORSA module is correct. The incorrect configuration can cause the voltage application simultaneously to both channels of the valve, which may result in the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa7.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 8'''|| style=&amp;quot;margin:20px&amp;quot;|Two adjacent contact points (for example, 3, 4) are used to connect the double-pole water/gas supply valve; in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.8'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you should properly configure access to the application. The contacts incorrectly configured can result in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa8|Fig. 9|Any contact point (for example, 3) is used to connect the single-pole gate drive controllers. The example of connection is shown in '''Fig.9'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa9|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the double-pole gate drive controller. The example of connection is shown in '''Fig.10'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with 220V force control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa10|Fig. 11|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator, in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.11.'''|.jpg}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with low-voltage control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa11|Fig. 12|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator with low-voltage control. The example of connection is shown in '''Fig.12'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
===Connection of sensing elements/switches/buttons===&lt;br /&gt;
&lt;br /&gt;
====Connection of motion sensors====&lt;br /&gt;
&lt;br /&gt;
The motion sensors should be connected to any free input in1-in16; in these conditions their power is connected to the contact points of +12V and GND of the relevant group. The example of connection is shown in '''fig.13.'''&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa12.jpg|250px|ms]]&amp;lt;br&amp;gt;&lt;br /&gt;
'''Fig. 13'''&lt;br /&gt;
||[[File:mf10exa13.jpg|300px|ms]]&amp;lt;br&amp;gt;&lt;br /&gt;
'''Fig. 14'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Configuration and connection of the Satel AMBER sensor''' The configuration of Satel Amber is shown in fig. 14 and consists of the following major elements:&lt;br /&gt;
&lt;br /&gt;
#LED status indicator/&lt;br /&gt;
#LED contact is used to turn on and off the LED display.&lt;br /&gt;
#SENS contacts are used to set the sensitivity of the sensor. If the contacts are closed, the high sensitivity is set. If the contacts are open, the low sensitivity is set.&lt;br /&gt;
#Terminals:&lt;br /&gt;
#*'''+12V''' — sensor power is connected to the contact point of METAFORSA “+12V” &lt;br /&gt;
#*'''COM''' — common, connected to the input of METAFORSA “GND” &lt;br /&gt;
#*'''NC''' — danger relay contact, a jumper is applied at СОМ &lt;br /&gt;
#*'''NC''' — danger relay contact, connected to the input of METAFORSA “in 1-16” &lt;br /&gt;
#*'''TMP''' — not in use &lt;br /&gt;
#*'''TMP''' — not in use&lt;br /&gt;
&lt;br /&gt;
====Connection of FW-WL.A leakage sensors====&lt;br /&gt;
&lt;br /&gt;
W-WL.A leakage sensors are connected to any free input in1 – in16, in these conditions the power should be connected to +12V and GND points of the relevant group. The example of connection is shown in '''fig 15.'''&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:mf10exa14.jpg|250px|center]]&amp;lt;br&amp;gt;'''Fig15'''||[[File:mf10exa15.jpg|300px|center]]&amp;lt;br&amp;gt;'''Fig16'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Configuration and connection of the FW-WL.A sensor&lt;br /&gt;
1. Terminals:&lt;br /&gt;
:'''+12V''' — sensor power is connected to the contact point of METAFORSA “+12V”;&lt;br /&gt;
:'''OW''' — sensor pickup signal;&lt;br /&gt;
:'''GND''' — common, connected to GND contact of METAFORSA.&lt;br /&gt;
2. Sensor preset switch (optionally):&lt;br /&gt;
:1 — sensor sensitivity (ON – high, OFF – low);&lt;br /&gt;
:2 — indicator colour setting (ON – blue, OFF – green).&lt;br /&gt;
3. LED status indicator.&lt;br /&gt;
&lt;br /&gt;
====Connection of buttons/switches/magnetic reed switches====&lt;br /&gt;
&lt;br /&gt;
Buttons and reed switches are connected to any free input in1-in16, while their second contact point is connected to GND point of the relevant METAFORSA module group, + 12V power outputs – not in use. The example of connection is shown in '''Fig. 14-16'''.&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Buttons.png|300px|center]]&amp;lt;br&amp;gt;'''Fig14''' connection of buttons/switching units || [[File:Reed-sv.png|300px|center]]&amp;lt;br&amp;gt;'''Fig15''' connection of the magnetic reed switches (window/door position sensors)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of digital sensors====&lt;br /&gt;
&lt;br /&gt;
The OW adapter ('''Fig. 16a''') is supplied along with METAFORSA module with the possibility to connect up to 8 digital sensors to it. In these conditions, several devices can be connected to one channel ('''Fig. 16b'''). The connected sensors are detected automatically and do not require any original setting.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Ow1Conn.png|300px|center]]&amp;lt;br&amp;gt;'''Fig16 a'''||[[File:Ow2Conn.png|300px|center]]&amp;lt;br&amp;gt;'''Fig16 b'''&lt;br /&gt;
|}&lt;br /&gt;
'''Configuration and connection of the OW adapter'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:700px; background-rgb:#dededf&amp;quot;&amp;gt;'''Caution: Ensure the connection is correct. The incorrect connection may cause sensor and/or module malfunction. '''&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=519</id>
		<title>Metaforsa MF-10</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=519"/>
		<updated>2021-07-21T14:59:48Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Connection of motion sensors */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = MF-10&lt;br /&gt;
| image      = Metaforsa.jpg&lt;br /&gt;
| outCount   = 10&lt;br /&gt;
| dimmOut    = &lt;br /&gt;
| peakl      = 8A&lt;br /&gt;
| peakdl     = &lt;br /&gt;
| dt         = &lt;br /&gt;
| inDisc     = 16&lt;br /&gt;
| inDigit    = 4&lt;br /&gt;
| voltage    = 11.5...15.5 V DC&lt;br /&gt;
| dim        = 9U, 156x110x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE Installation Manual describes the procedure for its installation, assembly, operation and setting.&lt;br /&gt;
While working with the system, you must strictly comply with all the requirements set out in this manual. Failure to comply may result in damage to the device, its failure, electric shock, fire and other fallout.&lt;br /&gt;
The manufacturer reserves the right to make changes to this manual without prior notice. This manual is an integral part of the system and shall remain with the end-use customer.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*10 universal outputs support:&lt;br /&gt;
**Lights&lt;br /&gt;
**NC/NO heating valves&lt;br /&gt;
**Blinds&lt;br /&gt;
**1 or 2-pole gates&lt;br /&gt;
**1 or 2-pole valves&lt;br /&gt;
**NC/NO locks&lt;br /&gt;
**Fan coil units&lt;br /&gt;
*16 Discreet inputs that support:&lt;br /&gt;
**Buttons&lt;br /&gt;
**Switches&lt;br /&gt;
**reed switches&lt;br /&gt;
**leak sensors&lt;br /&gt;
**motion detectors&lt;br /&gt;
*4 digital inputs for up to 8 temperature sensors&lt;br /&gt;
*Extension port&lt;br /&gt;
*Relays with AgSnO2 contacts rated for 16A and 120A 20ms inrush current&lt;br /&gt;
*Cloud connection and control of all house systems&lt;br /&gt;
*Voice control (Siri, Alexa, Google Home)&lt;br /&gt;
*Plugins engine allows expanding the system possibilities (e.g. integrating with Satel, Philips Hue, IKEA lights)&lt;br /&gt;
*Safety against unauthorized intrusion ensured with RSA/AES256 encryption&lt;br /&gt;
*Push notifications from the system on your phone (also possible to receive through Telegram and Viber messengers)&lt;br /&gt;
*History (meter data for 1 year is stored)&lt;br /&gt;
*Plug and play (possibility for fast and user-friendly extension of the system)&lt;br /&gt;
*Regular system updates&lt;br /&gt;
*Large constantly updated database of scripts to meet all your needs&lt;br /&gt;
*Automatic daily backups via cloud with the possibility to restore the initial configuration&lt;br /&gt;
*Open API (which allows integrating Larnitech into other systems)&lt;br /&gt;
*Interactive and user-friendly LT SETUP Web interface available for advanced configuration&lt;br /&gt;
*Plug and play&lt;br /&gt;
*It is a completely ready-to-install Smart Home system kit&lt;br /&gt;
&lt;br /&gt;
==Safety requirements== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;'''CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and / or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*all connection works must be carried out without power;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding of cables and wires;&lt;br /&gt;
*do not pinch or kink the cables and wires by applying excessive force. Otherwise, inner conductors of the cable and wires may be stripped or broken;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load parameters limit specified in this manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When working with the system after voltage supply '''NEVER''':&lt;br /&gt;
*make connection/disconnection of connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&lt;br /&gt;
==System configuration and purpose== &lt;br /&gt;
&lt;br /&gt;
===Purpose of the system=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE is a ready-made solution for automation of residential and commercial premises, hotel complexes which includes the most highly desired features of Smart House.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The device has 10 control channels, 16 incoming sensor channels, and a digital sensors’ connection port.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Universal outputs can be used to control: !!  Universal inputs allow you to connect:&lt;br /&gt;
|-&lt;br /&gt;
|  Lighting ||  Buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|  Socket connectors ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Underfloor heating ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Curtain/gate actuators ||  Leakage sensors&lt;br /&gt;
|-&lt;br /&gt;
|  Water supply/heating valves || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Digital sensors connection port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The digital sensors connection port allows you to connect a variety of digital sensors, such as temperature sensors, ambient light, humidity and other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expansion port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The expansion port allows you to upgrade the system by connecting auxiliary equipment, such as the control module for LED lighting, dimming, metering devices and other elements.&lt;br /&gt;
The package, which is completely ready-to-install, includes the basic hardware and software.&lt;br /&gt;
&lt;br /&gt;
===Package contents=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The package comes standard with:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Mainframe METAFORSA MF-10.А || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply unit MEANWELL DR-15-12 || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Motion sensor Satel amber || 3 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Leakage sensor FW-WL.A || 2 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Temperature-sensitive element FW-TS.A || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic reed switch (window/door position sensor) || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Ethernet-cable noise filter || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply cord || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Manual || 1 pc&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Basic technical specifications of the System=== &lt;br /&gt;
&lt;br /&gt;
The basic specifications and characteristics of the module METAFORSA MF-14.A are shown in table 1&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;text-align:left;&amp;quot; | Table1&lt;br /&gt;
|-&lt;br /&gt;
!Specification !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Output ports'''&lt;br /&gt;
|-&lt;br /&gt;
| Number of switched channels || 10 &lt;br /&gt;
|-&lt;br /&gt;
| Number of switched groups|| 3 &lt;br /&gt;
|-&lt;br /&gt;
| Commutation voltage || 0-250 V AC/DC &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one channel) || 8A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one group) || 20A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (device) || 45A &lt;br /&gt;
|-&lt;br /&gt;
| Power supply cable connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Permissible section of power supply cable to connect in socket:&amp;lt;br&amp;gt;single-conductor cable&amp;lt;br&amp;gt;multiple-conductor cable&amp;lt;br&amp;gt;tipped multiple-conductor cable||&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 2.5mm2&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Input ports'''&lt;br /&gt;
|-&lt;br /&gt;
|Number of discrete inputs || 16&lt;br /&gt;
|- &lt;br /&gt;
|Number of digital inputs || 4 &lt;br /&gt;
|-&lt;br /&gt;
|Current maximum rating on the direct-current voltage connectors || 50mA &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Other'''&lt;br /&gt;
|-&lt;br /&gt;
|Operating ambient temperature || 0 … +45°С &lt;br /&gt;
|-&lt;br /&gt;
|Storage/transportation temperature || -20 … +60°С &lt;br /&gt;
|-&lt;br /&gt;
|Permissible humidity || 0 … 95% (non-condensing) &lt;br /&gt;
|-&lt;br /&gt;
|Supply voltage || 11.5 … 15.5 V DC&lt;br /&gt;
|-&lt;br /&gt;
|Maximum demand || 1А &lt;br /&gt;
|-&lt;br /&gt;
|Available interfaces ||  Ethernet, CAN, OneWire&lt;br /&gt;
|-&lt;br /&gt;
|Bus type ||  CAN (4-wire)&lt;br /&gt;
|-&lt;br /&gt;
|CAN (4-wire) || 800 m* (twisted pair 5 cat) &lt;br /&gt;
|-&lt;br /&gt;
|CAN wire type || FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|CAN connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Digital line maximum length || 30 m &lt;br /&gt;
|-&lt;br /&gt;
|Digital line wirde type || UTP/FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|Digital line connection type || Connector RJ-12&lt;br /&gt;
|-&lt;br /&gt;
|LAN maximum length || 100 m &lt;br /&gt;
|-&lt;br /&gt;
|LAN wire type || UTP/FTP Cat 5E&lt;br /&gt;
|-&lt;br /&gt;
|LAN connection type || Connector RJ-45 &lt;br /&gt;
|-&lt;br /&gt;
|Dimensional specifications || 9U, 156x110x58 mm &lt;br /&gt;
|-&lt;br /&gt;
|Shell material || ABS plastic &lt;br /&gt;
|-&lt;br /&gt;
|Casing || IP40&lt;br /&gt;
|-&lt;br /&gt;
|Equipment installation type || DIN-rail (EN 60715) &lt;br /&gt;
|-&lt;br /&gt;
|Weight || 400 g &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – installing additional power supply units is required for long lines; the maximum length of the line may be reduced by various interference factors&lt;br /&gt;
&lt;br /&gt;
===General structure of the System=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Module general view is shown in '''fig. 1'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10.ch.jpg|700px|frameless|left|Fig. 1 Module general view]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;clear:left;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1-5 || — connectors for load application and power supply&lt;br /&gt;
|-&lt;br /&gt;
|6 || — device status indication&lt;br /&gt;
|-&lt;br /&gt;
|7 || — power connector&lt;br /&gt;
|-&lt;br /&gt;
|8 || — Ethernet network connector&lt;br /&gt;
|-&lt;br /&gt;
|9-12 || — connectors for digital sensors and buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|13 || — OneWire interface connector (for digital sensors)&lt;br /&gt;
|-&lt;br /&gt;
|14 || — connector for expansion module.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Overview of the METAFORSA device external connectors:''' In the upper part of the casing (fig. 1) there are 5 connectors with screw clamps. Connectors: (1) – contact points (L1, L2), (3) – contact points (L3, L4) and (5) – contact point (L5) – phase conductor connection for load switching of the channels C1-C4, C5-C8, and C9-C10 respectively. The parallel connection of two contact points is used in connectors (1) and (3) in order to increase the capacity. Connectors: (2) – C1-C4 contact points, (4) – contact points C5-C8 and (5) – C9-C10 – are used for load connection (of actuators – lights, valves, curtain drives, etc.). Internal circuit for output switching is shown in '''fig. 2.'''&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10il.jpg|700px|frameless|left|Fig. 2]]&lt;br /&gt;
&lt;br /&gt;
*connector (7) — module power supply connection;&lt;br /&gt;
*connector (8) — Ethernet network connection;&lt;br /&gt;
*connectors (9-12) — four six-point connectors for digital sensors connection – motion, leakage, reed switch sensors, and button/switching unit sensors;&lt;br /&gt;
*connector (13) — OneWire digital sensors bus connection;&lt;br /&gt;
*connector (14) — expansion module connection.&lt;br /&gt;
&lt;br /&gt;
The physical configuration and contact point assignment of each connector are shown in '''table 2.'''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ text-align=&amp;quot;left&amp;quot;|'''Table2'''&lt;br /&gt;
|-&lt;br /&gt;
!Connector!!Contact!! style=&amp;quot;width:300px&amp;quot; |Assignment&lt;br /&gt;
|-&lt;br /&gt;
|1, 3&amp;lt;br&amp;gt;[[File:mf10l.jpg|80px|frameless]] ||L1-2 L3-4|| Phase conductor connection for C1-C8 channels load switching&lt;br /&gt;
|-&lt;br /&gt;
|2, 4&amp;lt;br&amp;gt;[[File:mf10out.jpg|80px|frameless]] ||C1-4 C5-8|| Load application (light lamps, thermal actuators, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|5&amp;lt;br&amp;gt;[[File:mf10out2.jpg|80px|frameless]] || С9 L5 С10|| Connection of curtain/jalousie/shutter actuators, valve, lamps, gate controllers, etc.: С9, С10 — outputs for load application L5 — connection of group phase supply wire&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot;| 6&amp;lt;br&amp;gt;Device status indicators || The module status indicators are described in '''table 3'''&lt;br /&gt;
|-&lt;br /&gt;
|7&amp;lt;br&amp;gt;[[File:mf10power.jpg|80px|frameless]] ||+12V GND|| +12V — module power supply by an external 12 V power supply GND — common&lt;br /&gt;
|-&lt;br /&gt;
|8&amp;lt;br&amp;gt;[[File:Rj45.jpg|80px|frameless]] ||RJ45|| Connector for LAN connectivity&lt;br /&gt;
|-&lt;br /&gt;
|9-12&amp;lt;br&amp;gt;[[File:mf10in.jpg|80px|frameless]] ||+12V In1 … In16 GND||Controlling devices connection (buttons, magnetic reed switches, motion or leakage sensors): +12V — sensor power output +12 V In1 … In16 — logic inputs (0-12 V) GND — common&lt;br /&gt;
|-&lt;br /&gt;
|13&amp;lt;br&amp;gt;[[File:mf10ow.jpg|80px|frameless]] ||OneWire|| Digital sensors connection (temperature) VCC — sensors power supply output +5V OW1-OW4 — OneWire data buses GND — common&lt;br /&gt;
|-&lt;br /&gt;
|14&amp;lt;br&amp;gt;[[File:Can.jpg|80px|frameless]] ||VCC&amp;lt;br&amp;gt;GND&amp;lt;br&amp;gt;L&amp;lt;br&amp;gt;H|| External modules connection for CAN-bus VСС — 12V output for external devices power supply GND — common L — CAN-L data bus H — CAN-H data bus&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{indicationmf10}}&lt;br /&gt;
&lt;br /&gt;
===System installation and assembly=== &lt;br /&gt;
Before connecting the system, you must:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*site the sensor and actuators (if not pre-installed), set the sensors and actuators;&lt;br /&gt;
*site the module and power supply.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note: The module must be installed near the power supply voltage source.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;CAUTION!&lt;br /&gt;
#'''AC power voltage must be provided to the system input through the circuit breaker assembly. It should be installed close to the power supply.'''&lt;br /&gt;
#'''The load is applied through the circuit breaker assembly. It can be both common – for all groups, and individual – for each  group (fig. 3,4).'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa1.jpg|700px|Fig. 3]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 3.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa2.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 4.'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
#'''The power of circuit breaker assembly must comply with the load capacity;'''&lt;br /&gt;
#'''Nothing else than the phase conductors can be connected to the module, the neutral wire is connected separately.'''&lt;br /&gt;
&lt;br /&gt;
Typical diagram of METAFORSA MF-10.A module connection is shown in '''fig. 5.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa3.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig. 5''' Typical connection diagram&lt;br /&gt;
&lt;br /&gt;
===Connection of the actuators===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of the lights/electric contactor/heating thermal actuator====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa4.jpg|350px|lamp]]&amp;lt;br&amp;gt;'''Fig. 6'''|| style=&amp;quot;margin:20px&amp;quot;|Such actuators as light, electric contactor, heating thermal actuator should be switched on any of the outputs 1 – 10, the neutral wire and the ground wire should be connected directly to the switchboard. The example of connection is shown in '''Fig.6'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of high load device====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa5.png|350px|Contactor]]|| style=&amp;quot;margin:20px&amp;quot;|Recomended contactors:&lt;br /&gt;
*ABB ESB series&lt;br /&gt;
*Schneider Acti 9 iCT series&lt;br /&gt;
*Hager ESC series.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the load, make sure that the output configuration of METAFORSA module is correct. The incorrect configuration or incorrect connection can cause the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa6.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 7'''|| style=&amp;quot;margin:20px&amp;quot;|The single pole water/gas supply valve is connected to any of the outputs of 1 – 10, the (neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.7'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the valve, it is necessary to ensure the output configuration of METAFORSA module is correct. The incorrect configuration can cause the voltage application simultaneously to both channels of the valve, which may result in the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa7.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 8'''|| style=&amp;quot;margin:20px&amp;quot;|Two adjacent contact points (for example, 3, 4) are used to connect the double-pole water/gas supply valve; in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.8'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you should properly configure access to the application. The contacts incorrectly configured can result in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa8|Fig. 9|Any contact point (for example, 3) is used to connect the single-pole gate drive controllers. The example of connection is shown in '''Fig.9'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa9|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the double-pole gate drive controller. The example of connection is shown in '''Fig.10'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with 220V force control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa10|Fig. 11|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator, in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.11.'''|.jpg}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with low-voltage control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa11|Fig. 12|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator with low-voltage control. The example of connection is shown in '''Fig.12'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
===Connection of sensing elements/switches/buttons===&lt;br /&gt;
&lt;br /&gt;
====Connection of motion sensors====&lt;br /&gt;
&lt;br /&gt;
The motion sensors should be connected to any free input in1-in16; in these conditions their power is connected to the contact points of +12V and GND of the relevant group. The example of connection is shown in '''fig.13.'''&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa12.jpg|250px|ms]]&amp;lt;br&amp;gt;&lt;br /&gt;
'''Fig. 13'''&lt;br /&gt;
||[[File:mf10exa13.jpg|300px|ms]]&amp;lt;br&amp;gt;&lt;br /&gt;
'''Fig. 14'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Configuration and connection of the Satel AMBER sensor''' The configuration of Satel Amber is shown in fig. 14 and consists of the following major elements:&lt;br /&gt;
&lt;br /&gt;
#LED status indicator/&lt;br /&gt;
#LED contact is used to turn on and off the LED display.&lt;br /&gt;
#SENS contacts are used to set the sensitivity of the sensor. If the contacts are closed, the high sensitivity is set. If the contacts are open, the low sensitivity is set.&lt;br /&gt;
#Terminals:&lt;br /&gt;
#*'''+12V''' — sensor power is connected to the contact point of METAFORSA “+12V” &lt;br /&gt;
#*'''COM''' — common, connected to the input of METAFORSA “GND” &lt;br /&gt;
#*'''NC''' — danger relay contact, a jumper is applied at СОМ &lt;br /&gt;
#*'''NC''' — danger relay contact, connected to the input of METAFORSA “in 1-16” &lt;br /&gt;
#*'''TMP''' — not in use &lt;br /&gt;
#*'''TMP''' — not in use&lt;br /&gt;
&lt;br /&gt;
====Connection of FW-WL.A leakage sensors====&lt;br /&gt;
&lt;br /&gt;
FW-WL.A leakage sensors are connected to any free input in1 – in24, in these conditions the power should be connected to +12V and GND points of the relevant group. The example of connection is shown in '''fig. 12'''.&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Leak1.png|300px|center]]&amp;lt;br&amp;gt;'''Fig12'''||[[File:Leak2.png|300px|center]]&amp;lt;br&amp;gt;'''Fig13'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Configuration and connection of the FW-WL.A sensor&lt;br /&gt;
1. Terminals:&lt;br /&gt;
:'''+12V''' — sensor power is connected to the contact point of METAFORSA “+12V”;&lt;br /&gt;
:'''OW''' — sensor pickup signal;&lt;br /&gt;
:'''GND''' — common, connected to GND contact of METAFORSA.&lt;br /&gt;
2. Sensor preset switch (optionally):&lt;br /&gt;
:1 — sensor sensitivity (ON – high, OFF – low);&lt;br /&gt;
:2 — indicator colour setting (ON – blue, OFF – green).&lt;br /&gt;
3. LED status indicator.&lt;br /&gt;
&lt;br /&gt;
====Connection of buttons/switches/magnetic reed switches====&lt;br /&gt;
&lt;br /&gt;
Buttons and reed switches are connected to any free input in1-in16, while their second contact point is connected to GND point of the relevant METAFORSA module group, + 12V power outputs – not in use. The example of connection is shown in '''Fig. 14-16'''.&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Buttons.png|300px|center]]&amp;lt;br&amp;gt;'''Fig14''' connection of buttons/switching units || [[File:Reed-sv.png|300px|center]]&amp;lt;br&amp;gt;'''Fig15''' connection of the magnetic reed switches (window/door position sensors)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of digital sensors====&lt;br /&gt;
&lt;br /&gt;
The OW adapter ('''Fig. 16a''') is supplied along with METAFORSA module with the possibility to connect up to 8 digital sensors to it. In these conditions, several devices can be connected to one channel ('''Fig. 16b'''). The connected sensors are detected automatically and do not require any original setting.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Ow1Conn.png|300px|center]]&amp;lt;br&amp;gt;'''Fig16 a'''||[[File:Ow2Conn.png|300px|center]]&amp;lt;br&amp;gt;'''Fig16 b'''&lt;br /&gt;
|}&lt;br /&gt;
'''Configuration and connection of the OW adapter'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:700px; background-rgb:#dededf&amp;quot;&amp;gt;'''Caution: Ensure the connection is correct. The incorrect connection may cause sensor and/or module malfunction. '''&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=518</id>
		<title>Metaforsa MF-10</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=518"/>
		<updated>2021-07-21T14:57:21Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Connection of motion sensors */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = MF-10&lt;br /&gt;
| image      = Metaforsa.jpg&lt;br /&gt;
| outCount   = 10&lt;br /&gt;
| dimmOut    = &lt;br /&gt;
| peakl      = 8A&lt;br /&gt;
| peakdl     = &lt;br /&gt;
| dt         = &lt;br /&gt;
| inDisc     = 16&lt;br /&gt;
| inDigit    = 4&lt;br /&gt;
| voltage    = 11.5...15.5 V DC&lt;br /&gt;
| dim        = 9U, 156x110x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE Installation Manual describes the procedure for its installation, assembly, operation and setting.&lt;br /&gt;
While working with the system, you must strictly comply with all the requirements set out in this manual. Failure to comply may result in damage to the device, its failure, electric shock, fire and other fallout.&lt;br /&gt;
The manufacturer reserves the right to make changes to this manual without prior notice. This manual is an integral part of the system and shall remain with the end-use customer.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*10 universal outputs support:&lt;br /&gt;
**Lights&lt;br /&gt;
**NC/NO heating valves&lt;br /&gt;
**Blinds&lt;br /&gt;
**1 or 2-pole gates&lt;br /&gt;
**1 or 2-pole valves&lt;br /&gt;
**NC/NO locks&lt;br /&gt;
**Fan coil units&lt;br /&gt;
*16 Discreet inputs that support:&lt;br /&gt;
**Buttons&lt;br /&gt;
**Switches&lt;br /&gt;
**reed switches&lt;br /&gt;
**leak sensors&lt;br /&gt;
**motion detectors&lt;br /&gt;
*4 digital inputs for up to 8 temperature sensors&lt;br /&gt;
*Extension port&lt;br /&gt;
*Relays with AgSnO2 contacts rated for 16A and 120A 20ms inrush current&lt;br /&gt;
*Cloud connection and control of all house systems&lt;br /&gt;
*Voice control (Siri, Alexa, Google Home)&lt;br /&gt;
*Plugins engine allows expanding the system possibilities (e.g. integrating with Satel, Philips Hue, IKEA lights)&lt;br /&gt;
*Safety against unauthorized intrusion ensured with RSA/AES256 encryption&lt;br /&gt;
*Push notifications from the system on your phone (also possible to receive through Telegram and Viber messengers)&lt;br /&gt;
*History (meter data for 1 year is stored)&lt;br /&gt;
*Plug and play (possibility for fast and user-friendly extension of the system)&lt;br /&gt;
*Regular system updates&lt;br /&gt;
*Large constantly updated database of scripts to meet all your needs&lt;br /&gt;
*Automatic daily backups via cloud with the possibility to restore the initial configuration&lt;br /&gt;
*Open API (which allows integrating Larnitech into other systems)&lt;br /&gt;
*Interactive and user-friendly LT SETUP Web interface available for advanced configuration&lt;br /&gt;
*Plug and play&lt;br /&gt;
*It is a completely ready-to-install Smart Home system kit&lt;br /&gt;
&lt;br /&gt;
==Safety requirements== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;'''CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and / or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*all connection works must be carried out without power;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding of cables and wires;&lt;br /&gt;
*do not pinch or kink the cables and wires by applying excessive force. Otherwise, inner conductors of the cable and wires may be stripped or broken;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load parameters limit specified in this manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When working with the system after voltage supply '''NEVER''':&lt;br /&gt;
*make connection/disconnection of connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&lt;br /&gt;
==System configuration and purpose== &lt;br /&gt;
&lt;br /&gt;
===Purpose of the system=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE is a ready-made solution for automation of residential and commercial premises, hotel complexes which includes the most highly desired features of Smart House.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The device has 10 control channels, 16 incoming sensor channels, and a digital sensors’ connection port.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Universal outputs can be used to control: !!  Universal inputs allow you to connect:&lt;br /&gt;
|-&lt;br /&gt;
|  Lighting ||  Buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|  Socket connectors ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Underfloor heating ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Curtain/gate actuators ||  Leakage sensors&lt;br /&gt;
|-&lt;br /&gt;
|  Water supply/heating valves || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Digital sensors connection port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The digital sensors connection port allows you to connect a variety of digital sensors, such as temperature sensors, ambient light, humidity and other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expansion port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The expansion port allows you to upgrade the system by connecting auxiliary equipment, such as the control module for LED lighting, dimming, metering devices and other elements.&lt;br /&gt;
The package, which is completely ready-to-install, includes the basic hardware and software.&lt;br /&gt;
&lt;br /&gt;
===Package contents=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The package comes standard with:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Mainframe METAFORSA MF-10.А || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply unit MEANWELL DR-15-12 || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Motion sensor Satel amber || 3 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Leakage sensor FW-WL.A || 2 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Temperature-sensitive element FW-TS.A || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic reed switch (window/door position sensor) || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Ethernet-cable noise filter || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply cord || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Manual || 1 pc&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Basic technical specifications of the System=== &lt;br /&gt;
&lt;br /&gt;
The basic specifications and characteristics of the module METAFORSA MF-14.A are shown in table 1&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;text-align:left;&amp;quot; | Table1&lt;br /&gt;
|-&lt;br /&gt;
!Specification !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Output ports'''&lt;br /&gt;
|-&lt;br /&gt;
| Number of switched channels || 10 &lt;br /&gt;
|-&lt;br /&gt;
| Number of switched groups|| 3 &lt;br /&gt;
|-&lt;br /&gt;
| Commutation voltage || 0-250 V AC/DC &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one channel) || 8A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one group) || 20A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (device) || 45A &lt;br /&gt;
|-&lt;br /&gt;
| Power supply cable connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Permissible section of power supply cable to connect in socket:&amp;lt;br&amp;gt;single-conductor cable&amp;lt;br&amp;gt;multiple-conductor cable&amp;lt;br&amp;gt;tipped multiple-conductor cable||&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 2.5mm2&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Input ports'''&lt;br /&gt;
|-&lt;br /&gt;
|Number of discrete inputs || 16&lt;br /&gt;
|- &lt;br /&gt;
|Number of digital inputs || 4 &lt;br /&gt;
|-&lt;br /&gt;
|Current maximum rating on the direct-current voltage connectors || 50mA &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Other'''&lt;br /&gt;
|-&lt;br /&gt;
|Operating ambient temperature || 0 … +45°С &lt;br /&gt;
|-&lt;br /&gt;
|Storage/transportation temperature || -20 … +60°С &lt;br /&gt;
|-&lt;br /&gt;
|Permissible humidity || 0 … 95% (non-condensing) &lt;br /&gt;
|-&lt;br /&gt;
|Supply voltage || 11.5 … 15.5 V DC&lt;br /&gt;
|-&lt;br /&gt;
|Maximum demand || 1А &lt;br /&gt;
|-&lt;br /&gt;
|Available interfaces ||  Ethernet, CAN, OneWire&lt;br /&gt;
|-&lt;br /&gt;
|Bus type ||  CAN (4-wire)&lt;br /&gt;
|-&lt;br /&gt;
|CAN (4-wire) || 800 m* (twisted pair 5 cat) &lt;br /&gt;
|-&lt;br /&gt;
|CAN wire type || FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|CAN connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Digital line maximum length || 30 m &lt;br /&gt;
|-&lt;br /&gt;
|Digital line wirde type || UTP/FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|Digital line connection type || Connector RJ-12&lt;br /&gt;
|-&lt;br /&gt;
|LAN maximum length || 100 m &lt;br /&gt;
|-&lt;br /&gt;
|LAN wire type || UTP/FTP Cat 5E&lt;br /&gt;
|-&lt;br /&gt;
|LAN connection type || Connector RJ-45 &lt;br /&gt;
|-&lt;br /&gt;
|Dimensional specifications || 9U, 156x110x58 mm &lt;br /&gt;
|-&lt;br /&gt;
|Shell material || ABS plastic &lt;br /&gt;
|-&lt;br /&gt;
|Casing || IP40&lt;br /&gt;
|-&lt;br /&gt;
|Equipment installation type || DIN-rail (EN 60715) &lt;br /&gt;
|-&lt;br /&gt;
|Weight || 400 g &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – installing additional power supply units is required for long lines; the maximum length of the line may be reduced by various interference factors&lt;br /&gt;
&lt;br /&gt;
===General structure of the System=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Module general view is shown in '''fig. 1'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10.ch.jpg|700px|frameless|left|Fig. 1 Module general view]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;clear:left;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1-5 || — connectors for load application and power supply&lt;br /&gt;
|-&lt;br /&gt;
|6 || — device status indication&lt;br /&gt;
|-&lt;br /&gt;
|7 || — power connector&lt;br /&gt;
|-&lt;br /&gt;
|8 || — Ethernet network connector&lt;br /&gt;
|-&lt;br /&gt;
|9-12 || — connectors for digital sensors and buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|13 || — OneWire interface connector (for digital sensors)&lt;br /&gt;
|-&lt;br /&gt;
|14 || — connector for expansion module.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Overview of the METAFORSA device external connectors:''' In the upper part of the casing (fig. 1) there are 5 connectors with screw clamps. Connectors: (1) – contact points (L1, L2), (3) – contact points (L3, L4) and (5) – contact point (L5) – phase conductor connection for load switching of the channels C1-C4, C5-C8, and C9-C10 respectively. The parallel connection of two contact points is used in connectors (1) and (3) in order to increase the capacity. Connectors: (2) – C1-C4 contact points, (4) – contact points C5-C8 and (5) – C9-C10 – are used for load connection (of actuators – lights, valves, curtain drives, etc.). Internal circuit for output switching is shown in '''fig. 2.'''&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10il.jpg|700px|frameless|left|Fig. 2]]&lt;br /&gt;
&lt;br /&gt;
*connector (7) — module power supply connection;&lt;br /&gt;
*connector (8) — Ethernet network connection;&lt;br /&gt;
*connectors (9-12) — four six-point connectors for digital sensors connection – motion, leakage, reed switch sensors, and button/switching unit sensors;&lt;br /&gt;
*connector (13) — OneWire digital sensors bus connection;&lt;br /&gt;
*connector (14) — expansion module connection.&lt;br /&gt;
&lt;br /&gt;
The physical configuration and contact point assignment of each connector are shown in '''table 2.'''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ text-align=&amp;quot;left&amp;quot;|'''Table2'''&lt;br /&gt;
|-&lt;br /&gt;
!Connector!!Contact!! style=&amp;quot;width:300px&amp;quot; |Assignment&lt;br /&gt;
|-&lt;br /&gt;
|1, 3&amp;lt;br&amp;gt;[[File:mf10l.jpg|80px|frameless]] ||L1-2 L3-4|| Phase conductor connection for C1-C8 channels load switching&lt;br /&gt;
|-&lt;br /&gt;
|2, 4&amp;lt;br&amp;gt;[[File:mf10out.jpg|80px|frameless]] ||C1-4 C5-8|| Load application (light lamps, thermal actuators, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|5&amp;lt;br&amp;gt;[[File:mf10out2.jpg|80px|frameless]] || С9 L5 С10|| Connection of curtain/jalousie/shutter actuators, valve, lamps, gate controllers, etc.: С9, С10 — outputs for load application L5 — connection of group phase supply wire&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot;| 6&amp;lt;br&amp;gt;Device status indicators || The module status indicators are described in '''table 3'''&lt;br /&gt;
|-&lt;br /&gt;
|7&amp;lt;br&amp;gt;[[File:mf10power.jpg|80px|frameless]] ||+12V GND|| +12V — module power supply by an external 12 V power supply GND — common&lt;br /&gt;
|-&lt;br /&gt;
|8&amp;lt;br&amp;gt;[[File:Rj45.jpg|80px|frameless]] ||RJ45|| Connector for LAN connectivity&lt;br /&gt;
|-&lt;br /&gt;
|9-12&amp;lt;br&amp;gt;[[File:mf10in.jpg|80px|frameless]] ||+12V In1 … In16 GND||Controlling devices connection (buttons, magnetic reed switches, motion or leakage sensors): +12V — sensor power output +12 V In1 … In16 — logic inputs (0-12 V) GND — common&lt;br /&gt;
|-&lt;br /&gt;
|13&amp;lt;br&amp;gt;[[File:mf10ow.jpg|80px|frameless]] ||OneWire|| Digital sensors connection (temperature) VCC — sensors power supply output +5V OW1-OW4 — OneWire data buses GND — common&lt;br /&gt;
|-&lt;br /&gt;
|14&amp;lt;br&amp;gt;[[File:Can.jpg|80px|frameless]] ||VCC&amp;lt;br&amp;gt;GND&amp;lt;br&amp;gt;L&amp;lt;br&amp;gt;H|| External modules connection for CAN-bus VСС — 12V output for external devices power supply GND — common L — CAN-L data bus H — CAN-H data bus&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{indicationmf10}}&lt;br /&gt;
&lt;br /&gt;
===System installation and assembly=== &lt;br /&gt;
Before connecting the system, you must:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*site the sensor and actuators (if not pre-installed), set the sensors and actuators;&lt;br /&gt;
*site the module and power supply.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note: The module must be installed near the power supply voltage source.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;CAUTION!&lt;br /&gt;
#'''AC power voltage must be provided to the system input through the circuit breaker assembly. It should be installed close to the power supply.'''&lt;br /&gt;
#'''The load is applied through the circuit breaker assembly. It can be both common – for all groups, and individual – for each  group (fig. 3,4).'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa1.jpg|700px|Fig. 3]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 3.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa2.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 4.'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
#'''The power of circuit breaker assembly must comply with the load capacity;'''&lt;br /&gt;
#'''Nothing else than the phase conductors can be connected to the module, the neutral wire is connected separately.'''&lt;br /&gt;
&lt;br /&gt;
Typical diagram of METAFORSA MF-10.A module connection is shown in '''fig. 5.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa3.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig. 5''' Typical connection diagram&lt;br /&gt;
&lt;br /&gt;
===Connection of the actuators===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of the lights/electric contactor/heating thermal actuator====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa4.jpg|350px|lamp]]&amp;lt;br&amp;gt;'''Fig. 6'''|| style=&amp;quot;margin:20px&amp;quot;|Such actuators as light, electric contactor, heating thermal actuator should be switched on any of the outputs 1 – 10, the neutral wire and the ground wire should be connected directly to the switchboard. The example of connection is shown in '''Fig.6'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of high load device====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa5.png|350px|Contactor]]|| style=&amp;quot;margin:20px&amp;quot;|Recomended contactors:&lt;br /&gt;
*ABB ESB series&lt;br /&gt;
*Schneider Acti 9 iCT series&lt;br /&gt;
*Hager ESC series.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the load, make sure that the output configuration of METAFORSA module is correct. The incorrect configuration or incorrect connection can cause the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa6.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 7'''|| style=&amp;quot;margin:20px&amp;quot;|The single pole water/gas supply valve is connected to any of the outputs of 1 – 10, the (neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.7'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the valve, it is necessary to ensure the output configuration of METAFORSA module is correct. The incorrect configuration can cause the voltage application simultaneously to both channels of the valve, which may result in the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa7.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 8'''|| style=&amp;quot;margin:20px&amp;quot;|Two adjacent contact points (for example, 3, 4) are used to connect the double-pole water/gas supply valve; in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.8'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you should properly configure access to the application. The contacts incorrectly configured can result in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa8|Fig. 9|Any contact point (for example, 3) is used to connect the single-pole gate drive controllers. The example of connection is shown in '''Fig.9'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa9|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the double-pole gate drive controller. The example of connection is shown in '''Fig.10'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with 220V force control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa10|Fig. 11|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator, in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.11.'''|.jpg}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with low-voltage control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa11|Fig. 12|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator with low-voltage control. The example of connection is shown in '''Fig.12'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
===Connection of sensing elements/switches/buttons===&lt;br /&gt;
&lt;br /&gt;
====Connection of motion sensors====&lt;br /&gt;
&lt;br /&gt;
The motion sensors should be connected to any free input in1-in16; in these conditions their power is connected to the contact points of +12V and GND of the relevant group. The example of connection is shown in '''fig.13.'''&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa12.jpg|250px|ms]]&amp;lt;br&amp;gt;&lt;br /&gt;
'''Fig. 13'''&lt;br /&gt;
||[[File:mf10exa13.jpg|300px|ms]]&amp;lt;br&amp;gt;&lt;br /&gt;
'''Fig. 14'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Connection of FW-WL.A leakage sensors====&lt;br /&gt;
&lt;br /&gt;
FW-WL.A leakage sensors are connected to any free input in1 – in24, in these conditions the power should be connected to +12V and GND points of the relevant group. The example of connection is shown in '''fig. 12'''.&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Leak1.png|300px|center]]&amp;lt;br&amp;gt;'''Fig12'''||[[File:Leak2.png|300px|center]]&amp;lt;br&amp;gt;'''Fig13'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Configuration and connection of the FW-WL.A sensor&lt;br /&gt;
1. Terminals:&lt;br /&gt;
:'''+12V''' — sensor power is connected to the contact point of METAFORSA “+12V”;&lt;br /&gt;
:'''OW''' — sensor pickup signal;&lt;br /&gt;
:'''GND''' — common, connected to GND contact of METAFORSA.&lt;br /&gt;
2. Sensor preset switch (optionally):&lt;br /&gt;
:1 — sensor sensitivity (ON – high, OFF – low);&lt;br /&gt;
:2 — indicator colour setting (ON – blue, OFF – green).&lt;br /&gt;
3. LED status indicator.&lt;br /&gt;
&lt;br /&gt;
====Connection of buttons/switches/magnetic reed switches====&lt;br /&gt;
&lt;br /&gt;
Buttons and reed switches are connected to any free input in1-in16, while their second contact point is connected to GND point of the relevant METAFORSA module group, + 12V power outputs – not in use. The example of connection is shown in '''Fig. 14-16'''.&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Buttons.png|300px|center]]&amp;lt;br&amp;gt;'''Fig14''' connection of buttons/switching units || [[File:Reed-sv.png|300px|center]]&amp;lt;br&amp;gt;'''Fig15''' connection of the magnetic reed switches (window/door position sensors)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of digital sensors====&lt;br /&gt;
&lt;br /&gt;
The OW adapter ('''Fig. 16a''') is supplied along with METAFORSA module with the possibility to connect up to 8 digital sensors to it. In these conditions, several devices can be connected to one channel ('''Fig. 16b'''). The connected sensors are detected automatically and do not require any original setting.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Ow1Conn.png|300px|center]]&amp;lt;br&amp;gt;'''Fig16 a'''||[[File:Ow2Conn.png|300px|center]]&amp;lt;br&amp;gt;'''Fig16 b'''&lt;br /&gt;
|}&lt;br /&gt;
'''Configuration and connection of the OW adapter'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:700px; background-rgb:#dededf&amp;quot;&amp;gt;'''Caution: Ensure the connection is correct. The incorrect connection may cause sensor and/or module malfunction. '''&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=517</id>
		<title>Metaforsa MF-10</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=517"/>
		<updated>2021-07-21T14:55:50Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Connection of motion sensors */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = MF-10&lt;br /&gt;
| image      = Metaforsa.jpg&lt;br /&gt;
| outCount   = 10&lt;br /&gt;
| dimmOut    = &lt;br /&gt;
| peakl      = 8A&lt;br /&gt;
| peakdl     = &lt;br /&gt;
| dt         = &lt;br /&gt;
| inDisc     = 16&lt;br /&gt;
| inDigit    = 4&lt;br /&gt;
| voltage    = 11.5...15.5 V DC&lt;br /&gt;
| dim        = 9U, 156x110x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE Installation Manual describes the procedure for its installation, assembly, operation and setting.&lt;br /&gt;
While working with the system, you must strictly comply with all the requirements set out in this manual. Failure to comply may result in damage to the device, its failure, electric shock, fire and other fallout.&lt;br /&gt;
The manufacturer reserves the right to make changes to this manual without prior notice. This manual is an integral part of the system and shall remain with the end-use customer.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*10 universal outputs support:&lt;br /&gt;
**Lights&lt;br /&gt;
**NC/NO heating valves&lt;br /&gt;
**Blinds&lt;br /&gt;
**1 or 2-pole gates&lt;br /&gt;
**1 or 2-pole valves&lt;br /&gt;
**NC/NO locks&lt;br /&gt;
**Fan coil units&lt;br /&gt;
*16 Discreet inputs that support:&lt;br /&gt;
**Buttons&lt;br /&gt;
**Switches&lt;br /&gt;
**reed switches&lt;br /&gt;
**leak sensors&lt;br /&gt;
**motion detectors&lt;br /&gt;
*4 digital inputs for up to 8 temperature sensors&lt;br /&gt;
*Extension port&lt;br /&gt;
*Relays with AgSnO2 contacts rated for 16A and 120A 20ms inrush current&lt;br /&gt;
*Cloud connection and control of all house systems&lt;br /&gt;
*Voice control (Siri, Alexa, Google Home)&lt;br /&gt;
*Plugins engine allows expanding the system possibilities (e.g. integrating with Satel, Philips Hue, IKEA lights)&lt;br /&gt;
*Safety against unauthorized intrusion ensured with RSA/AES256 encryption&lt;br /&gt;
*Push notifications from the system on your phone (also possible to receive through Telegram and Viber messengers)&lt;br /&gt;
*History (meter data for 1 year is stored)&lt;br /&gt;
*Plug and play (possibility for fast and user-friendly extension of the system)&lt;br /&gt;
*Regular system updates&lt;br /&gt;
*Large constantly updated database of scripts to meet all your needs&lt;br /&gt;
*Automatic daily backups via cloud with the possibility to restore the initial configuration&lt;br /&gt;
*Open API (which allows integrating Larnitech into other systems)&lt;br /&gt;
*Interactive and user-friendly LT SETUP Web interface available for advanced configuration&lt;br /&gt;
*Plug and play&lt;br /&gt;
*It is a completely ready-to-install Smart Home system kit&lt;br /&gt;
&lt;br /&gt;
==Safety requirements== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;'''CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and / or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*all connection works must be carried out without power;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding of cables and wires;&lt;br /&gt;
*do not pinch or kink the cables and wires by applying excessive force. Otherwise, inner conductors of the cable and wires may be stripped or broken;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load parameters limit specified in this manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When working with the system after voltage supply '''NEVER''':&lt;br /&gt;
*make connection/disconnection of connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&lt;br /&gt;
==System configuration and purpose== &lt;br /&gt;
&lt;br /&gt;
===Purpose of the system=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE is a ready-made solution for automation of residential and commercial premises, hotel complexes which includes the most highly desired features of Smart House.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The device has 10 control channels, 16 incoming sensor channels, and a digital sensors’ connection port.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Universal outputs can be used to control: !!  Universal inputs allow you to connect:&lt;br /&gt;
|-&lt;br /&gt;
|  Lighting ||  Buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|  Socket connectors ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Underfloor heating ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Curtain/gate actuators ||  Leakage sensors&lt;br /&gt;
|-&lt;br /&gt;
|  Water supply/heating valves || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Digital sensors connection port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The digital sensors connection port allows you to connect a variety of digital sensors, such as temperature sensors, ambient light, humidity and other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expansion port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The expansion port allows you to upgrade the system by connecting auxiliary equipment, such as the control module for LED lighting, dimming, metering devices and other elements.&lt;br /&gt;
The package, which is completely ready-to-install, includes the basic hardware and software.&lt;br /&gt;
&lt;br /&gt;
===Package contents=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The package comes standard with:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Mainframe METAFORSA MF-10.А || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply unit MEANWELL DR-15-12 || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Motion sensor Satel amber || 3 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Leakage sensor FW-WL.A || 2 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Temperature-sensitive element FW-TS.A || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic reed switch (window/door position sensor) || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Ethernet-cable noise filter || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply cord || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Manual || 1 pc&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Basic technical specifications of the System=== &lt;br /&gt;
&lt;br /&gt;
The basic specifications and characteristics of the module METAFORSA MF-14.A are shown in table 1&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;text-align:left;&amp;quot; | Table1&lt;br /&gt;
|-&lt;br /&gt;
!Specification !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Output ports'''&lt;br /&gt;
|-&lt;br /&gt;
| Number of switched channels || 10 &lt;br /&gt;
|-&lt;br /&gt;
| Number of switched groups|| 3 &lt;br /&gt;
|-&lt;br /&gt;
| Commutation voltage || 0-250 V AC/DC &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one channel) || 8A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one group) || 20A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (device) || 45A &lt;br /&gt;
|-&lt;br /&gt;
| Power supply cable connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Permissible section of power supply cable to connect in socket:&amp;lt;br&amp;gt;single-conductor cable&amp;lt;br&amp;gt;multiple-conductor cable&amp;lt;br&amp;gt;tipped multiple-conductor cable||&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 2.5mm2&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Input ports'''&lt;br /&gt;
|-&lt;br /&gt;
|Number of discrete inputs || 16&lt;br /&gt;
|- &lt;br /&gt;
|Number of digital inputs || 4 &lt;br /&gt;
|-&lt;br /&gt;
|Current maximum rating on the direct-current voltage connectors || 50mA &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Other'''&lt;br /&gt;
|-&lt;br /&gt;
|Operating ambient temperature || 0 … +45°С &lt;br /&gt;
|-&lt;br /&gt;
|Storage/transportation temperature || -20 … +60°С &lt;br /&gt;
|-&lt;br /&gt;
|Permissible humidity || 0 … 95% (non-condensing) &lt;br /&gt;
|-&lt;br /&gt;
|Supply voltage || 11.5 … 15.5 V DC&lt;br /&gt;
|-&lt;br /&gt;
|Maximum demand || 1А &lt;br /&gt;
|-&lt;br /&gt;
|Available interfaces ||  Ethernet, CAN, OneWire&lt;br /&gt;
|-&lt;br /&gt;
|Bus type ||  CAN (4-wire)&lt;br /&gt;
|-&lt;br /&gt;
|CAN (4-wire) || 800 m* (twisted pair 5 cat) &lt;br /&gt;
|-&lt;br /&gt;
|CAN wire type || FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|CAN connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Digital line maximum length || 30 m &lt;br /&gt;
|-&lt;br /&gt;
|Digital line wirde type || UTP/FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|Digital line connection type || Connector RJ-12&lt;br /&gt;
|-&lt;br /&gt;
|LAN maximum length || 100 m &lt;br /&gt;
|-&lt;br /&gt;
|LAN wire type || UTP/FTP Cat 5E&lt;br /&gt;
|-&lt;br /&gt;
|LAN connection type || Connector RJ-45 &lt;br /&gt;
|-&lt;br /&gt;
|Dimensional specifications || 9U, 156x110x58 mm &lt;br /&gt;
|-&lt;br /&gt;
|Shell material || ABS plastic &lt;br /&gt;
|-&lt;br /&gt;
|Casing || IP40&lt;br /&gt;
|-&lt;br /&gt;
|Equipment installation type || DIN-rail (EN 60715) &lt;br /&gt;
|-&lt;br /&gt;
|Weight || 400 g &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – installing additional power supply units is required for long lines; the maximum length of the line may be reduced by various interference factors&lt;br /&gt;
&lt;br /&gt;
===General structure of the System=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Module general view is shown in '''fig. 1'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10.ch.jpg|700px|frameless|left|Fig. 1 Module general view]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;clear:left;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1-5 || — connectors for load application and power supply&lt;br /&gt;
|-&lt;br /&gt;
|6 || — device status indication&lt;br /&gt;
|-&lt;br /&gt;
|7 || — power connector&lt;br /&gt;
|-&lt;br /&gt;
|8 || — Ethernet network connector&lt;br /&gt;
|-&lt;br /&gt;
|9-12 || — connectors for digital sensors and buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|13 || — OneWire interface connector (for digital sensors)&lt;br /&gt;
|-&lt;br /&gt;
|14 || — connector for expansion module.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Overview of the METAFORSA device external connectors:''' In the upper part of the casing (fig. 1) there are 5 connectors with screw clamps. Connectors: (1) – contact points (L1, L2), (3) – contact points (L3, L4) and (5) – contact point (L5) – phase conductor connection for load switching of the channels C1-C4, C5-C8, and C9-C10 respectively. The parallel connection of two contact points is used in connectors (1) and (3) in order to increase the capacity. Connectors: (2) – C1-C4 contact points, (4) – contact points C5-C8 and (5) – C9-C10 – are used for load connection (of actuators – lights, valves, curtain drives, etc.). Internal circuit for output switching is shown in '''fig. 2.'''&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10il.jpg|700px|frameless|left|Fig. 2]]&lt;br /&gt;
&lt;br /&gt;
*connector (7) — module power supply connection;&lt;br /&gt;
*connector (8) — Ethernet network connection;&lt;br /&gt;
*connectors (9-12) — four six-point connectors for digital sensors connection – motion, leakage, reed switch sensors, and button/switching unit sensors;&lt;br /&gt;
*connector (13) — OneWire digital sensors bus connection;&lt;br /&gt;
*connector (14) — expansion module connection.&lt;br /&gt;
&lt;br /&gt;
The physical configuration and contact point assignment of each connector are shown in '''table 2.'''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ text-align=&amp;quot;left&amp;quot;|'''Table2'''&lt;br /&gt;
|-&lt;br /&gt;
!Connector!!Contact!! style=&amp;quot;width:300px&amp;quot; |Assignment&lt;br /&gt;
|-&lt;br /&gt;
|1, 3&amp;lt;br&amp;gt;[[File:mf10l.jpg|80px|frameless]] ||L1-2 L3-4|| Phase conductor connection for C1-C8 channels load switching&lt;br /&gt;
|-&lt;br /&gt;
|2, 4&amp;lt;br&amp;gt;[[File:mf10out.jpg|80px|frameless]] ||C1-4 C5-8|| Load application (light lamps, thermal actuators, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|5&amp;lt;br&amp;gt;[[File:mf10out2.jpg|80px|frameless]] || С9 L5 С10|| Connection of curtain/jalousie/shutter actuators, valve, lamps, gate controllers, etc.: С9, С10 — outputs for load application L5 — connection of group phase supply wire&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot;| 6&amp;lt;br&amp;gt;Device status indicators || The module status indicators are described in '''table 3'''&lt;br /&gt;
|-&lt;br /&gt;
|7&amp;lt;br&amp;gt;[[File:mf10power.jpg|80px|frameless]] ||+12V GND|| +12V — module power supply by an external 12 V power supply GND — common&lt;br /&gt;
|-&lt;br /&gt;
|8&amp;lt;br&amp;gt;[[File:Rj45.jpg|80px|frameless]] ||RJ45|| Connector for LAN connectivity&lt;br /&gt;
|-&lt;br /&gt;
|9-12&amp;lt;br&amp;gt;[[File:mf10in.jpg|80px|frameless]] ||+12V In1 … In16 GND||Controlling devices connection (buttons, magnetic reed switches, motion or leakage sensors): +12V — sensor power output +12 V In1 … In16 — logic inputs (0-12 V) GND — common&lt;br /&gt;
|-&lt;br /&gt;
|13&amp;lt;br&amp;gt;[[File:mf10ow.jpg|80px|frameless]] ||OneWire|| Digital sensors connection (temperature) VCC — sensors power supply output +5V OW1-OW4 — OneWire data buses GND — common&lt;br /&gt;
|-&lt;br /&gt;
|14&amp;lt;br&amp;gt;[[File:Can.jpg|80px|frameless]] ||VCC&amp;lt;br&amp;gt;GND&amp;lt;br&amp;gt;L&amp;lt;br&amp;gt;H|| External modules connection for CAN-bus VСС — 12V output for external devices power supply GND — common L — CAN-L data bus H — CAN-H data bus&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{indicationmf10}}&lt;br /&gt;
&lt;br /&gt;
===System installation and assembly=== &lt;br /&gt;
Before connecting the system, you must:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*site the sensor and actuators (if not pre-installed), set the sensors and actuators;&lt;br /&gt;
*site the module and power supply.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note: The module must be installed near the power supply voltage source.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;CAUTION!&lt;br /&gt;
#'''AC power voltage must be provided to the system input through the circuit breaker assembly. It should be installed close to the power supply.'''&lt;br /&gt;
#'''The load is applied through the circuit breaker assembly. It can be both common – for all groups, and individual – for each  group (fig. 3,4).'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa1.jpg|700px|Fig. 3]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 3.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa2.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 4.'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
#'''The power of circuit breaker assembly must comply with the load capacity;'''&lt;br /&gt;
#'''Nothing else than the phase conductors can be connected to the module, the neutral wire is connected separately.'''&lt;br /&gt;
&lt;br /&gt;
Typical diagram of METAFORSA MF-10.A module connection is shown in '''fig. 5.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa3.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig. 5''' Typical connection diagram&lt;br /&gt;
&lt;br /&gt;
===Connection of the actuators===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of the lights/electric contactor/heating thermal actuator====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa4.jpg|350px|lamp]]&amp;lt;br&amp;gt;'''Fig. 6'''|| style=&amp;quot;margin:20px&amp;quot;|Such actuators as light, electric contactor, heating thermal actuator should be switched on any of the outputs 1 – 10, the neutral wire and the ground wire should be connected directly to the switchboard. The example of connection is shown in '''Fig.6'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of high load device====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa5.png|350px|Contactor]]|| style=&amp;quot;margin:20px&amp;quot;|Recomended contactors:&lt;br /&gt;
*ABB ESB series&lt;br /&gt;
*Schneider Acti 9 iCT series&lt;br /&gt;
*Hager ESC series.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the load, make sure that the output configuration of METAFORSA module is correct. The incorrect configuration or incorrect connection can cause the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa6.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 7'''|| style=&amp;quot;margin:20px&amp;quot;|The single pole water/gas supply valve is connected to any of the outputs of 1 – 10, the (neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.7'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the valve, it is necessary to ensure the output configuration of METAFORSA module is correct. The incorrect configuration can cause the voltage application simultaneously to both channels of the valve, which may result in the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa7.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 8'''|| style=&amp;quot;margin:20px&amp;quot;|Two adjacent contact points (for example, 3, 4) are used to connect the double-pole water/gas supply valve; in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.8'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you should properly configure access to the application. The contacts incorrectly configured can result in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa8|Fig. 9|Any contact point (for example, 3) is used to connect the single-pole gate drive controllers. The example of connection is shown in '''Fig.9'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa9|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the double-pole gate drive controller. The example of connection is shown in '''Fig.10'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with 220V force control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa10|Fig. 11|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator, in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.11.'''|.jpg}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with low-voltage control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa11|Fig. 12|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator with low-voltage control. The example of connection is shown in '''Fig.12'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
===Connection of sensing elements/switches/buttons===&lt;br /&gt;
&lt;br /&gt;
====Connection of motion sensors====&lt;br /&gt;
&lt;br /&gt;
The motion sensors should be connected to any free input in1-in16; in these conditions their power is connected to the contact points of +12V and GND of the relevant group. The example of connection is shown in '''fig.13.'''&lt;br /&gt;
&lt;br /&gt;
[[File:mf10exa12.jpg|300px|ms]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''Fig. 13'''&lt;br /&gt;
&lt;br /&gt;
====Connection of FW-WL.A leakage sensors====&lt;br /&gt;
&lt;br /&gt;
FW-WL.A leakage sensors are connected to any free input in1 – in24, in these conditions the power should be connected to +12V and GND points of the relevant group. The example of connection is shown in '''fig. 12'''.&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Leak1.png|300px|center]]&amp;lt;br&amp;gt;'''Fig12'''||[[File:Leak2.png|300px|center]]&amp;lt;br&amp;gt;'''Fig13'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Configuration and connection of the FW-WL.A sensor&lt;br /&gt;
1. Terminals:&lt;br /&gt;
:'''+12V''' — sensor power is connected to the contact point of METAFORSA “+12V”;&lt;br /&gt;
:'''OW''' — sensor pickup signal;&lt;br /&gt;
:'''GND''' — common, connected to GND contact of METAFORSA.&lt;br /&gt;
2. Sensor preset switch (optionally):&lt;br /&gt;
:1 — sensor sensitivity (ON – high, OFF – low);&lt;br /&gt;
:2 — indicator colour setting (ON – blue, OFF – green).&lt;br /&gt;
3. LED status indicator.&lt;br /&gt;
&lt;br /&gt;
====Connection of buttons/switches/magnetic reed switches====&lt;br /&gt;
&lt;br /&gt;
Buttons and reed switches are connected to any free input in1-in16, while their second contact point is connected to GND point of the relevant METAFORSA module group, + 12V power outputs – not in use. The example of connection is shown in '''Fig. 14-16'''.&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Buttons.png|300px|center]]&amp;lt;br&amp;gt;'''Fig14''' connection of buttons/switching units || [[File:Reed-sv.png|300px|center]]&amp;lt;br&amp;gt;'''Fig15''' connection of the magnetic reed switches (window/door position sensors)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of digital sensors====&lt;br /&gt;
&lt;br /&gt;
The OW adapter ('''Fig. 16a''') is supplied along with METAFORSA module with the possibility to connect up to 8 digital sensors to it. In these conditions, several devices can be connected to one channel ('''Fig. 16b'''). The connected sensors are detected automatically and do not require any original setting.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Ow1Conn.png|300px|center]]&amp;lt;br&amp;gt;'''Fig16 a'''||[[File:Ow2Conn.png|300px|center]]&amp;lt;br&amp;gt;'''Fig16 b'''&lt;br /&gt;
|}&lt;br /&gt;
'''Configuration and connection of the OW adapter'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:700px; background-rgb:#dededf&amp;quot;&amp;gt;'''Caution: Ensure the connection is correct. The incorrect connection may cause sensor and/or module malfunction. '''&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=516</id>
		<title>Metaforsa MF-10</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=516"/>
		<updated>2021-07-21T14:54:57Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = MF-10&lt;br /&gt;
| image      = Metaforsa.jpg&lt;br /&gt;
| outCount   = 10&lt;br /&gt;
| dimmOut    = &lt;br /&gt;
| peakl      = 8A&lt;br /&gt;
| peakdl     = &lt;br /&gt;
| dt         = &lt;br /&gt;
| inDisc     = 16&lt;br /&gt;
| inDigit    = 4&lt;br /&gt;
| voltage    = 11.5...15.5 V DC&lt;br /&gt;
| dim        = 9U, 156x110x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE Installation Manual describes the procedure for its installation, assembly, operation and setting.&lt;br /&gt;
While working with the system, you must strictly comply with all the requirements set out in this manual. Failure to comply may result in damage to the device, its failure, electric shock, fire and other fallout.&lt;br /&gt;
The manufacturer reserves the right to make changes to this manual without prior notice. This manual is an integral part of the system and shall remain with the end-use customer.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*10 universal outputs support:&lt;br /&gt;
**Lights&lt;br /&gt;
**NC/NO heating valves&lt;br /&gt;
**Blinds&lt;br /&gt;
**1 or 2-pole gates&lt;br /&gt;
**1 or 2-pole valves&lt;br /&gt;
**NC/NO locks&lt;br /&gt;
**Fan coil units&lt;br /&gt;
*16 Discreet inputs that support:&lt;br /&gt;
**Buttons&lt;br /&gt;
**Switches&lt;br /&gt;
**reed switches&lt;br /&gt;
**leak sensors&lt;br /&gt;
**motion detectors&lt;br /&gt;
*4 digital inputs for up to 8 temperature sensors&lt;br /&gt;
*Extension port&lt;br /&gt;
*Relays with AgSnO2 contacts rated for 16A and 120A 20ms inrush current&lt;br /&gt;
*Cloud connection and control of all house systems&lt;br /&gt;
*Voice control (Siri, Alexa, Google Home)&lt;br /&gt;
*Plugins engine allows expanding the system possibilities (e.g. integrating with Satel, Philips Hue, IKEA lights)&lt;br /&gt;
*Safety against unauthorized intrusion ensured with RSA/AES256 encryption&lt;br /&gt;
*Push notifications from the system on your phone (also possible to receive through Telegram and Viber messengers)&lt;br /&gt;
*History (meter data for 1 year is stored)&lt;br /&gt;
*Plug and play (possibility for fast and user-friendly extension of the system)&lt;br /&gt;
*Regular system updates&lt;br /&gt;
*Large constantly updated database of scripts to meet all your needs&lt;br /&gt;
*Automatic daily backups via cloud with the possibility to restore the initial configuration&lt;br /&gt;
*Open API (which allows integrating Larnitech into other systems)&lt;br /&gt;
*Interactive and user-friendly LT SETUP Web interface available for advanced configuration&lt;br /&gt;
*Plug and play&lt;br /&gt;
*It is a completely ready-to-install Smart Home system kit&lt;br /&gt;
&lt;br /&gt;
==Safety requirements== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;'''CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and / or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*all connection works must be carried out without power;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding of cables and wires;&lt;br /&gt;
*do not pinch or kink the cables and wires by applying excessive force. Otherwise, inner conductors of the cable and wires may be stripped or broken;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load parameters limit specified in this manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When working with the system after voltage supply '''NEVER''':&lt;br /&gt;
*make connection/disconnection of connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&lt;br /&gt;
==System configuration and purpose== &lt;br /&gt;
&lt;br /&gt;
===Purpose of the system=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE is a ready-made solution for automation of residential and commercial premises, hotel complexes which includes the most highly desired features of Smart House.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The device has 10 control channels, 16 incoming sensor channels, and a digital sensors’ connection port.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Universal outputs can be used to control: !!  Universal inputs allow you to connect:&lt;br /&gt;
|-&lt;br /&gt;
|  Lighting ||  Buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|  Socket connectors ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Underfloor heating ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Curtain/gate actuators ||  Leakage sensors&lt;br /&gt;
|-&lt;br /&gt;
|  Water supply/heating valves || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Digital sensors connection port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The digital sensors connection port allows you to connect a variety of digital sensors, such as temperature sensors, ambient light, humidity and other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expansion port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The expansion port allows you to upgrade the system by connecting auxiliary equipment, such as the control module for LED lighting, dimming, metering devices and other elements.&lt;br /&gt;
The package, which is completely ready-to-install, includes the basic hardware and software.&lt;br /&gt;
&lt;br /&gt;
===Package contents=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The package comes standard with:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Mainframe METAFORSA MF-10.А || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply unit MEANWELL DR-15-12 || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Motion sensor Satel amber || 3 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Leakage sensor FW-WL.A || 2 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Temperature-sensitive element FW-TS.A || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic reed switch (window/door position sensor) || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Ethernet-cable noise filter || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply cord || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Manual || 1 pc&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Basic technical specifications of the System=== &lt;br /&gt;
&lt;br /&gt;
The basic specifications and characteristics of the module METAFORSA MF-14.A are shown in table 1&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;text-align:left;&amp;quot; | Table1&lt;br /&gt;
|-&lt;br /&gt;
!Specification !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Output ports'''&lt;br /&gt;
|-&lt;br /&gt;
| Number of switched channels || 10 &lt;br /&gt;
|-&lt;br /&gt;
| Number of switched groups|| 3 &lt;br /&gt;
|-&lt;br /&gt;
| Commutation voltage || 0-250 V AC/DC &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one channel) || 8A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one group) || 20A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (device) || 45A &lt;br /&gt;
|-&lt;br /&gt;
| Power supply cable connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Permissible section of power supply cable to connect in socket:&amp;lt;br&amp;gt;single-conductor cable&amp;lt;br&amp;gt;multiple-conductor cable&amp;lt;br&amp;gt;tipped multiple-conductor cable||&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 2.5mm2&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Input ports'''&lt;br /&gt;
|-&lt;br /&gt;
|Number of discrete inputs || 16&lt;br /&gt;
|- &lt;br /&gt;
|Number of digital inputs || 4 &lt;br /&gt;
|-&lt;br /&gt;
|Current maximum rating on the direct-current voltage connectors || 50mA &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Other'''&lt;br /&gt;
|-&lt;br /&gt;
|Operating ambient temperature || 0 … +45°С &lt;br /&gt;
|-&lt;br /&gt;
|Storage/transportation temperature || -20 … +60°С &lt;br /&gt;
|-&lt;br /&gt;
|Permissible humidity || 0 … 95% (non-condensing) &lt;br /&gt;
|-&lt;br /&gt;
|Supply voltage || 11.5 … 15.5 V DC&lt;br /&gt;
|-&lt;br /&gt;
|Maximum demand || 1А &lt;br /&gt;
|-&lt;br /&gt;
|Available interfaces ||  Ethernet, CAN, OneWire&lt;br /&gt;
|-&lt;br /&gt;
|Bus type ||  CAN (4-wire)&lt;br /&gt;
|-&lt;br /&gt;
|CAN (4-wire) || 800 m* (twisted pair 5 cat) &lt;br /&gt;
|-&lt;br /&gt;
|CAN wire type || FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|CAN connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Digital line maximum length || 30 m &lt;br /&gt;
|-&lt;br /&gt;
|Digital line wirde type || UTP/FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|Digital line connection type || Connector RJ-12&lt;br /&gt;
|-&lt;br /&gt;
|LAN maximum length || 100 m &lt;br /&gt;
|-&lt;br /&gt;
|LAN wire type || UTP/FTP Cat 5E&lt;br /&gt;
|-&lt;br /&gt;
|LAN connection type || Connector RJ-45 &lt;br /&gt;
|-&lt;br /&gt;
|Dimensional specifications || 9U, 156x110x58 mm &lt;br /&gt;
|-&lt;br /&gt;
|Shell material || ABS plastic &lt;br /&gt;
|-&lt;br /&gt;
|Casing || IP40&lt;br /&gt;
|-&lt;br /&gt;
|Equipment installation type || DIN-rail (EN 60715) &lt;br /&gt;
|-&lt;br /&gt;
|Weight || 400 g &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – installing additional power supply units is required for long lines; the maximum length of the line may be reduced by various interference factors&lt;br /&gt;
&lt;br /&gt;
===General structure of the System=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Module general view is shown in '''fig. 1'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10.ch.jpg|700px|frameless|left|Fig. 1 Module general view]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;clear:left;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1-5 || — connectors for load application and power supply&lt;br /&gt;
|-&lt;br /&gt;
|6 || — device status indication&lt;br /&gt;
|-&lt;br /&gt;
|7 || — power connector&lt;br /&gt;
|-&lt;br /&gt;
|8 || — Ethernet network connector&lt;br /&gt;
|-&lt;br /&gt;
|9-12 || — connectors for digital sensors and buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|13 || — OneWire interface connector (for digital sensors)&lt;br /&gt;
|-&lt;br /&gt;
|14 || — connector for expansion module.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Overview of the METAFORSA device external connectors:''' In the upper part of the casing (fig. 1) there are 5 connectors with screw clamps. Connectors: (1) – contact points (L1, L2), (3) – contact points (L3, L4) and (5) – contact point (L5) – phase conductor connection for load switching of the channels C1-C4, C5-C8, and C9-C10 respectively. The parallel connection of two contact points is used in connectors (1) and (3) in order to increase the capacity. Connectors: (2) – C1-C4 contact points, (4) – contact points C5-C8 and (5) – C9-C10 – are used for load connection (of actuators – lights, valves, curtain drives, etc.). Internal circuit for output switching is shown in '''fig. 2.'''&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10il.jpg|700px|frameless|left|Fig. 2]]&lt;br /&gt;
&lt;br /&gt;
*connector (7) — module power supply connection;&lt;br /&gt;
*connector (8) — Ethernet network connection;&lt;br /&gt;
*connectors (9-12) — four six-point connectors for digital sensors connection – motion, leakage, reed switch sensors, and button/switching unit sensors;&lt;br /&gt;
*connector (13) — OneWire digital sensors bus connection;&lt;br /&gt;
*connector (14) — expansion module connection.&lt;br /&gt;
&lt;br /&gt;
The physical configuration and contact point assignment of each connector are shown in '''table 2.'''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ text-align=&amp;quot;left&amp;quot;|'''Table2'''&lt;br /&gt;
|-&lt;br /&gt;
!Connector!!Contact!! style=&amp;quot;width:300px&amp;quot; |Assignment&lt;br /&gt;
|-&lt;br /&gt;
|1, 3&amp;lt;br&amp;gt;[[File:mf10l.jpg|80px|frameless]] ||L1-2 L3-4|| Phase conductor connection for C1-C8 channels load switching&lt;br /&gt;
|-&lt;br /&gt;
|2, 4&amp;lt;br&amp;gt;[[File:mf10out.jpg|80px|frameless]] ||C1-4 C5-8|| Load application (light lamps, thermal actuators, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|5&amp;lt;br&amp;gt;[[File:mf10out2.jpg|80px|frameless]] || С9 L5 С10|| Connection of curtain/jalousie/shutter actuators, valve, lamps, gate controllers, etc.: С9, С10 — outputs for load application L5 — connection of group phase supply wire&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot;| 6&amp;lt;br&amp;gt;Device status indicators || The module status indicators are described in '''table 3'''&lt;br /&gt;
|-&lt;br /&gt;
|7&amp;lt;br&amp;gt;[[File:mf10power.jpg|80px|frameless]] ||+12V GND|| +12V — module power supply by an external 12 V power supply GND — common&lt;br /&gt;
|-&lt;br /&gt;
|8&amp;lt;br&amp;gt;[[File:Rj45.jpg|80px|frameless]] ||RJ45|| Connector for LAN connectivity&lt;br /&gt;
|-&lt;br /&gt;
|9-12&amp;lt;br&amp;gt;[[File:mf10in.jpg|80px|frameless]] ||+12V In1 … In16 GND||Controlling devices connection (buttons, magnetic reed switches, motion or leakage sensors): +12V — sensor power output +12 V In1 … In16 — logic inputs (0-12 V) GND — common&lt;br /&gt;
|-&lt;br /&gt;
|13&amp;lt;br&amp;gt;[[File:mf10ow.jpg|80px|frameless]] ||OneWire|| Digital sensors connection (temperature) VCC — sensors power supply output +5V OW1-OW4 — OneWire data buses GND — common&lt;br /&gt;
|-&lt;br /&gt;
|14&amp;lt;br&amp;gt;[[File:Can.jpg|80px|frameless]] ||VCC&amp;lt;br&amp;gt;GND&amp;lt;br&amp;gt;L&amp;lt;br&amp;gt;H|| External modules connection for CAN-bus VСС — 12V output for external devices power supply GND — common L — CAN-L data bus H — CAN-H data bus&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{indicationmf10}}&lt;br /&gt;
&lt;br /&gt;
===System installation and assembly=== &lt;br /&gt;
Before connecting the system, you must:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*site the sensor and actuators (if not pre-installed), set the sensors and actuators;&lt;br /&gt;
*site the module and power supply.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note: The module must be installed near the power supply voltage source.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;CAUTION!&lt;br /&gt;
#'''AC power voltage must be provided to the system input through the circuit breaker assembly. It should be installed close to the power supply.'''&lt;br /&gt;
#'''The load is applied through the circuit breaker assembly. It can be both common – for all groups, and individual – for each  group (fig. 3,4).'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa1.jpg|700px|Fig. 3]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 3.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa2.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 4.'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
#'''The power of circuit breaker assembly must comply with the load capacity;'''&lt;br /&gt;
#'''Nothing else than the phase conductors can be connected to the module, the neutral wire is connected separately.'''&lt;br /&gt;
&lt;br /&gt;
Typical diagram of METAFORSA MF-10.A module connection is shown in '''fig. 5.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa3.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig. 5''' Typical connection diagram&lt;br /&gt;
&lt;br /&gt;
===Connection of the actuators===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of the lights/electric contactor/heating thermal actuator====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa4.jpg|350px|lamp]]&amp;lt;br&amp;gt;'''Fig. 6'''|| style=&amp;quot;margin:20px&amp;quot;|Such actuators as light, electric contactor, heating thermal actuator should be switched on any of the outputs 1 – 10, the neutral wire and the ground wire should be connected directly to the switchboard. The example of connection is shown in '''Fig.6'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of high load device====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa5.png|350px|Contactor]]|| style=&amp;quot;margin:20px&amp;quot;|Recomended contactors:&lt;br /&gt;
*ABB ESB series&lt;br /&gt;
*Schneider Acti 9 iCT series&lt;br /&gt;
*Hager ESC series.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the load, make sure that the output configuration of METAFORSA module is correct. The incorrect configuration or incorrect connection can cause the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa6.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 7'''|| style=&amp;quot;margin:20px&amp;quot;|The single pole water/gas supply valve is connected to any of the outputs of 1 – 10, the (neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.7'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the valve, it is necessary to ensure the output configuration of METAFORSA module is correct. The incorrect configuration can cause the voltage application simultaneously to both channels of the valve, which may result in the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa7.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 8'''|| style=&amp;quot;margin:20px&amp;quot;|Two adjacent contact points (for example, 3, 4) are used to connect the double-pole water/gas supply valve; in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.8'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you should properly configure access to the application. The contacts incorrectly configured can result in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa8|Fig. 9|Any contact point (for example, 3) is used to connect the single-pole gate drive controllers. The example of connection is shown in '''Fig.9'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa9|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the double-pole gate drive controller. The example of connection is shown in '''Fig.10'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with 220V force control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa10|Fig. 11|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator, in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.11.'''|.jpg}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with low-voltage control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa11|Fig. 12|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator with low-voltage control. The example of connection is shown in '''Fig.12'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
===Connection of sensing elements/switches/buttons===&lt;br /&gt;
&lt;br /&gt;
====Connection of motion sensors====&lt;br /&gt;
&lt;br /&gt;
The motion sensors should be connected to any free input in1-in24; in these conditions their power is connected to the contact points of +12V and GND of the relevant group. The example of connection is shown in '''Fig.11'''.&lt;br /&gt;
&lt;br /&gt;
[[File:msConn.png|300px|ms]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''Fig. 11'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of FW-WL.A leakage sensors====&lt;br /&gt;
&lt;br /&gt;
FW-WL.A leakage sensors are connected to any free input in1 – in24, in these conditions the power should be connected to +12V and GND points of the relevant group. The example of connection is shown in '''fig. 12'''.&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Leak1.png|300px|center]]&amp;lt;br&amp;gt;'''Fig12'''||[[File:Leak2.png|300px|center]]&amp;lt;br&amp;gt;'''Fig13'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Configuration and connection of the FW-WL.A sensor&lt;br /&gt;
1. Terminals:&lt;br /&gt;
:'''+12V''' — sensor power is connected to the contact point of METAFORSA “+12V”;&lt;br /&gt;
:'''OW''' — sensor pickup signal;&lt;br /&gt;
:'''GND''' — common, connected to GND contact of METAFORSA.&lt;br /&gt;
2. Sensor preset switch (optionally):&lt;br /&gt;
:1 — sensor sensitivity (ON – high, OFF – low);&lt;br /&gt;
:2 — indicator colour setting (ON – blue, OFF – green).&lt;br /&gt;
3. LED status indicator.&lt;br /&gt;
&lt;br /&gt;
====Connection of buttons/switches/magnetic reed switches====&lt;br /&gt;
&lt;br /&gt;
Buttons and reed switches are connected to any free input in1-in16, while their second contact point is connected to GND point of the relevant METAFORSA module group, + 12V power outputs – not in use. The example of connection is shown in '''Fig. 14-16'''.&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Buttons.png|300px|center]]&amp;lt;br&amp;gt;'''Fig14''' connection of buttons/switching units || [[File:Reed-sv.png|300px|center]]&amp;lt;br&amp;gt;'''Fig15''' connection of the magnetic reed switches (window/door position sensors)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of digital sensors====&lt;br /&gt;
&lt;br /&gt;
The OW adapter ('''Fig. 16a''') is supplied along with METAFORSA module with the possibility to connect up to 8 digital sensors to it. In these conditions, several devices can be connected to one channel ('''Fig. 16b'''). The connected sensors are detected automatically and do not require any original setting.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width&amp;quot;700px&amp;quot;&lt;br /&gt;
|- style=&amp;quot;tezt-align:center;&amp;quot;&lt;br /&gt;
|[[File:Ow1Conn.png|300px|center]]&amp;lt;br&amp;gt;'''Fig16 a'''||[[File:Ow2Conn.png|300px|center]]&amp;lt;br&amp;gt;'''Fig16 b'''&lt;br /&gt;
|}&lt;br /&gt;
'''Configuration and connection of the OW adapter'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:700px; background-rgb:#dededf&amp;quot;&amp;gt;'''Caution: Ensure the connection is correct. The incorrect connection may cause sensor and/or module malfunction. '''&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=515</id>
		<title>Metaforsa MF-10</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=515"/>
		<updated>2021-07-21T14:53:46Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Connection of curtain/jalousie/shutter actuator with low-voltage control */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = MF-10&lt;br /&gt;
| image      = Metaforsa.jpg&lt;br /&gt;
| outCount   = 10&lt;br /&gt;
| dimmOut    = &lt;br /&gt;
| peakl      = 8A&lt;br /&gt;
| peakdl     = &lt;br /&gt;
| dt         = &lt;br /&gt;
| inDisc     = 16&lt;br /&gt;
| inDigit    = 4&lt;br /&gt;
| voltage    = 11.5...15.5 V DC&lt;br /&gt;
| dim        = 9U, 156x110x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE Installation Manual describes the procedure for its installation, assembly, operation and setting.&lt;br /&gt;
While working with the system, you must strictly comply with all the requirements set out in this manual. Failure to comply may result in damage to the device, its failure, electric shock, fire and other fallout.&lt;br /&gt;
The manufacturer reserves the right to make changes to this manual without prior notice. This manual is an integral part of the system and shall remain with the end-use customer.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*10 universal outputs support:&lt;br /&gt;
**Lights&lt;br /&gt;
**NC/NO heating valves&lt;br /&gt;
**Blinds&lt;br /&gt;
**1 or 2-pole gates&lt;br /&gt;
**1 or 2-pole valves&lt;br /&gt;
**NC/NO locks&lt;br /&gt;
**Fan coil units&lt;br /&gt;
*16 Discreet inputs that support:&lt;br /&gt;
**Buttons&lt;br /&gt;
**Switches&lt;br /&gt;
**reed switches&lt;br /&gt;
**leak sensors&lt;br /&gt;
**motion detectors&lt;br /&gt;
*4 digital inputs for up to 8 temperature sensors&lt;br /&gt;
*Extension port&lt;br /&gt;
*Relays with AgSnO2 contacts rated for 16A and 120A 20ms inrush current&lt;br /&gt;
*Cloud connection and control of all house systems&lt;br /&gt;
*Voice control (Siri, Alexa, Google Home)&lt;br /&gt;
*Plugins engine allows expanding the system possibilities (e.g. integrating with Satel, Philips Hue, IKEA lights)&lt;br /&gt;
*Safety against unauthorized intrusion ensured with RSA/AES256 encryption&lt;br /&gt;
*Push notifications from the system on your phone (also possible to receive through Telegram and Viber messengers)&lt;br /&gt;
*History (meter data for 1 year is stored)&lt;br /&gt;
*Plug and play (possibility for fast and user-friendly extension of the system)&lt;br /&gt;
*Regular system updates&lt;br /&gt;
*Large constantly updated database of scripts to meet all your needs&lt;br /&gt;
*Automatic daily backups via cloud with the possibility to restore the initial configuration&lt;br /&gt;
*Open API (which allows integrating Larnitech into other systems)&lt;br /&gt;
*Interactive and user-friendly LT SETUP Web interface available for advanced configuration&lt;br /&gt;
*Plug and play&lt;br /&gt;
*It is a completely ready-to-install Smart Home system kit&lt;br /&gt;
&lt;br /&gt;
==Safety requirements== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;'''CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and / or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*all connection works must be carried out without power;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding of cables and wires;&lt;br /&gt;
*do not pinch or kink the cables and wires by applying excessive force. Otherwise, inner conductors of the cable and wires may be stripped or broken;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load parameters limit specified in this manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When working with the system after voltage supply '''NEVER''':&lt;br /&gt;
*make connection/disconnection of connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&lt;br /&gt;
==System configuration and purpose== &lt;br /&gt;
&lt;br /&gt;
===Purpose of the system=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE is a ready-made solution for automation of residential and commercial premises, hotel complexes which includes the most highly desired features of Smart House.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The device has 10 control channels, 16 incoming sensor channels, and a digital sensors’ connection port.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Universal outputs can be used to control: !!  Universal inputs allow you to connect:&lt;br /&gt;
|-&lt;br /&gt;
|  Lighting ||  Buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|  Socket connectors ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Underfloor heating ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Curtain/gate actuators ||  Leakage sensors&lt;br /&gt;
|-&lt;br /&gt;
|  Water supply/heating valves || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Digital sensors connection port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The digital sensors connection port allows you to connect a variety of digital sensors, such as temperature sensors, ambient light, humidity and other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expansion port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The expansion port allows you to upgrade the system by connecting auxiliary equipment, such as the control module for LED lighting, dimming, metering devices and other elements.&lt;br /&gt;
The package, which is completely ready-to-install, includes the basic hardware and software.&lt;br /&gt;
&lt;br /&gt;
===Package contents=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The package comes standard with:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Mainframe METAFORSA MF-10.А || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply unit MEANWELL DR-15-12 || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Motion sensor Satel amber || 3 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Leakage sensor FW-WL.A || 2 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Temperature-sensitive element FW-TS.A || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic reed switch (window/door position sensor) || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Ethernet-cable noise filter || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply cord || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Manual || 1 pc&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Basic technical specifications of the System=== &lt;br /&gt;
&lt;br /&gt;
The basic specifications and characteristics of the module METAFORSA MF-14.A are shown in table 1&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;text-align:left;&amp;quot; | Table1&lt;br /&gt;
|-&lt;br /&gt;
!Specification !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Output ports'''&lt;br /&gt;
|-&lt;br /&gt;
| Number of switched channels || 10 &lt;br /&gt;
|-&lt;br /&gt;
| Number of switched groups|| 3 &lt;br /&gt;
|-&lt;br /&gt;
| Commutation voltage || 0-250 V AC/DC &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one channel) || 8A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one group) || 20A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (device) || 45A &lt;br /&gt;
|-&lt;br /&gt;
| Power supply cable connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Permissible section of power supply cable to connect in socket:&amp;lt;br&amp;gt;single-conductor cable&amp;lt;br&amp;gt;multiple-conductor cable&amp;lt;br&amp;gt;tipped multiple-conductor cable||&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 2.5mm2&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Input ports'''&lt;br /&gt;
|-&lt;br /&gt;
|Number of discrete inputs || 16&lt;br /&gt;
|- &lt;br /&gt;
|Number of digital inputs || 4 &lt;br /&gt;
|-&lt;br /&gt;
|Current maximum rating on the direct-current voltage connectors || 50mA &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Other'''&lt;br /&gt;
|-&lt;br /&gt;
|Operating ambient temperature || 0 … +45°С &lt;br /&gt;
|-&lt;br /&gt;
|Storage/transportation temperature || -20 … +60°С &lt;br /&gt;
|-&lt;br /&gt;
|Permissible humidity || 0 … 95% (non-condensing) &lt;br /&gt;
|-&lt;br /&gt;
|Supply voltage || 11.5 … 15.5 V DC&lt;br /&gt;
|-&lt;br /&gt;
|Maximum demand || 1А &lt;br /&gt;
|-&lt;br /&gt;
|Available interfaces ||  Ethernet, CAN, OneWire&lt;br /&gt;
|-&lt;br /&gt;
|Bus type ||  CAN (4-wire)&lt;br /&gt;
|-&lt;br /&gt;
|CAN (4-wire) || 800 m* (twisted pair 5 cat) &lt;br /&gt;
|-&lt;br /&gt;
|CAN wire type || FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|CAN connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Digital line maximum length || 30 m &lt;br /&gt;
|-&lt;br /&gt;
|Digital line wirde type || UTP/FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|Digital line connection type || Connector RJ-12&lt;br /&gt;
|-&lt;br /&gt;
|LAN maximum length || 100 m &lt;br /&gt;
|-&lt;br /&gt;
|LAN wire type || UTP/FTP Cat 5E&lt;br /&gt;
|-&lt;br /&gt;
|LAN connection type || Connector RJ-45 &lt;br /&gt;
|-&lt;br /&gt;
|Dimensional specifications || 9U, 156x110x58 mm &lt;br /&gt;
|-&lt;br /&gt;
|Shell material || ABS plastic &lt;br /&gt;
|-&lt;br /&gt;
|Casing || IP40&lt;br /&gt;
|-&lt;br /&gt;
|Equipment installation type || DIN-rail (EN 60715) &lt;br /&gt;
|-&lt;br /&gt;
|Weight || 400 g &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – installing additional power supply units is required for long lines; the maximum length of the line may be reduced by various interference factors&lt;br /&gt;
&lt;br /&gt;
===General structure of the System=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Module general view is shown in '''fig. 1'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10.ch.jpg|700px|frameless|left|Fig. 1 Module general view]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;clear:left;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1-5 || — connectors for load application and power supply&lt;br /&gt;
|-&lt;br /&gt;
|6 || — device status indication&lt;br /&gt;
|-&lt;br /&gt;
|7 || — power connector&lt;br /&gt;
|-&lt;br /&gt;
|8 || — Ethernet network connector&lt;br /&gt;
|-&lt;br /&gt;
|9-12 || — connectors for digital sensors and buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|13 || — OneWire interface connector (for digital sensors)&lt;br /&gt;
|-&lt;br /&gt;
|14 || — connector for expansion module.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Overview of the METAFORSA device external connectors:''' In the upper part of the casing (fig. 1) there are 5 connectors with screw clamps. Connectors: (1) – contact points (L1, L2), (3) – contact points (L3, L4) and (5) – contact point (L5) – phase conductor connection for load switching of the channels C1-C4, C5-C8, and C9-C10 respectively. The parallel connection of two contact points is used in connectors (1) and (3) in order to increase the capacity. Connectors: (2) – C1-C4 contact points, (4) – contact points C5-C8 and (5) – C9-C10 – are used for load connection (of actuators – lights, valves, curtain drives, etc.). Internal circuit for output switching is shown in '''fig. 2.'''&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10il.jpg|700px|frameless|left|Fig. 2]]&lt;br /&gt;
&lt;br /&gt;
*connector (7) — module power supply connection;&lt;br /&gt;
*connector (8) — Ethernet network connection;&lt;br /&gt;
*connectors (9-12) — four six-point connectors for digital sensors connection – motion, leakage, reed switch sensors, and button/switching unit sensors;&lt;br /&gt;
*connector (13) — OneWire digital sensors bus connection;&lt;br /&gt;
*connector (14) — expansion module connection.&lt;br /&gt;
&lt;br /&gt;
The physical configuration and contact point assignment of each connector are shown in '''table 2.'''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ text-align=&amp;quot;left&amp;quot;|'''Table2'''&lt;br /&gt;
|-&lt;br /&gt;
!Connector!!Contact!! style=&amp;quot;width:300px&amp;quot; |Assignment&lt;br /&gt;
|-&lt;br /&gt;
|1, 3&amp;lt;br&amp;gt;[[File:mf10l.jpg|80px|frameless]] ||L1-2 L3-4|| Phase conductor connection for C1-C8 channels load switching&lt;br /&gt;
|-&lt;br /&gt;
|2, 4&amp;lt;br&amp;gt;[[File:mf10out.jpg|80px|frameless]] ||C1-4 C5-8|| Load application (light lamps, thermal actuators, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|5&amp;lt;br&amp;gt;[[File:mf10out2.jpg|80px|frameless]] || С9 L5 С10|| Connection of curtain/jalousie/shutter actuators, valve, lamps, gate controllers, etc.: С9, С10 — outputs for load application L5 — connection of group phase supply wire&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot;| 6&amp;lt;br&amp;gt;Device status indicators || The module status indicators are described in '''table 3'''&lt;br /&gt;
|-&lt;br /&gt;
|7&amp;lt;br&amp;gt;[[File:mf10power.jpg|80px|frameless]] ||+12V GND|| +12V — module power supply by an external 12 V power supply GND — common&lt;br /&gt;
|-&lt;br /&gt;
|8&amp;lt;br&amp;gt;[[File:Rj45.jpg|80px|frameless]] ||RJ45|| Connector for LAN connectivity&lt;br /&gt;
|-&lt;br /&gt;
|9-12&amp;lt;br&amp;gt;[[File:mf10in.jpg|80px|frameless]] ||+12V In1 … In16 GND||Controlling devices connection (buttons, magnetic reed switches, motion or leakage sensors): +12V — sensor power output +12 V In1 … In16 — logic inputs (0-12 V) GND — common&lt;br /&gt;
|-&lt;br /&gt;
|13&amp;lt;br&amp;gt;[[File:mf10ow.jpg|80px|frameless]] ||OneWire|| Digital sensors connection (temperature) VCC — sensors power supply output +5V OW1-OW4 — OneWire data buses GND — common&lt;br /&gt;
|-&lt;br /&gt;
|14&amp;lt;br&amp;gt;[[File:Can.jpg|80px|frameless]] ||VCC&amp;lt;br&amp;gt;GND&amp;lt;br&amp;gt;L&amp;lt;br&amp;gt;H|| External modules connection for CAN-bus VСС — 12V output for external devices power supply GND — common L — CAN-L data bus H — CAN-H data bus&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{indicationmf10}}&lt;br /&gt;
&lt;br /&gt;
===System installation and assembly=== &lt;br /&gt;
Before connecting the system, you must:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*site the sensor and actuators (if not pre-installed), set the sensors and actuators;&lt;br /&gt;
*site the module and power supply.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note: The module must be installed near the power supply voltage source.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;CAUTION!&lt;br /&gt;
#'''AC power voltage must be provided to the system input through the circuit breaker assembly. It should be installed close to the power supply.'''&lt;br /&gt;
#'''The load is applied through the circuit breaker assembly. It can be both common – for all groups, and individual – for each  group (fig. 3,4).'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa1.jpg|700px|Fig. 3]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 3.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa2.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 4.'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
#'''The power of circuit breaker assembly must comply with the load capacity;'''&lt;br /&gt;
#'''Nothing else than the phase conductors can be connected to the module, the neutral wire is connected separately.'''&lt;br /&gt;
&lt;br /&gt;
Typical diagram of METAFORSA MF-10.A module connection is shown in '''fig. 5.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa3.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig. 5''' Typical connection diagram&lt;br /&gt;
&lt;br /&gt;
===Connection of the actuators===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of the lights/electric contactor/heating thermal actuator====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa4.jpg|350px|lamp]]&amp;lt;br&amp;gt;'''Fig. 6'''|| style=&amp;quot;margin:20px&amp;quot;|Such actuators as light, electric contactor, heating thermal actuator should be switched on any of the outputs 1 – 10, the neutral wire and the ground wire should be connected directly to the switchboard. The example of connection is shown in '''Fig.6'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of high load device====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa5.png|350px|Contactor]]|| style=&amp;quot;margin:20px&amp;quot;|Recomended contactors:&lt;br /&gt;
*ABB ESB series&lt;br /&gt;
*Schneider Acti 9 iCT series&lt;br /&gt;
*Hager ESC series.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the load, make sure that the output configuration of METAFORSA module is correct. The incorrect configuration or incorrect connection can cause the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa6.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 7'''|| style=&amp;quot;margin:20px&amp;quot;|The single pole water/gas supply valve is connected to any of the outputs of 1 – 10, the (neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.7'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the valve, it is necessary to ensure the output configuration of METAFORSA module is correct. The incorrect configuration can cause the voltage application simultaneously to both channels of the valve, which may result in the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa7.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 8'''|| style=&amp;quot;margin:20px&amp;quot;|Two adjacent contact points (for example, 3, 4) are used to connect the double-pole water/gas supply valve; in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.8'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you should properly configure access to the application. The contacts incorrectly configured can result in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa8|Fig. 9|Any contact point (for example, 3) is used to connect the single-pole gate drive controllers. The example of connection is shown in '''Fig.9'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa9|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the double-pole gate drive controller. The example of connection is shown in '''Fig.10'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with 220V force control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa10|Fig. 11|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator, in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.11.'''|.jpg}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with low-voltage control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa11|Fig. 12|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator with low-voltage control. The example of connection is shown in '''Fig.12'''.|.png|150}}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=514</id>
		<title>Metaforsa MF-10</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=514"/>
		<updated>2021-07-21T14:52:56Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Connection of curtain/jalousie/shutter actuator with 220V force control */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = MF-10&lt;br /&gt;
| image      = Metaforsa.jpg&lt;br /&gt;
| outCount   = 10&lt;br /&gt;
| dimmOut    = &lt;br /&gt;
| peakl      = 8A&lt;br /&gt;
| peakdl     = &lt;br /&gt;
| dt         = &lt;br /&gt;
| inDisc     = 16&lt;br /&gt;
| inDigit    = 4&lt;br /&gt;
| voltage    = 11.5...15.5 V DC&lt;br /&gt;
| dim        = 9U, 156x110x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE Installation Manual describes the procedure for its installation, assembly, operation and setting.&lt;br /&gt;
While working with the system, you must strictly comply with all the requirements set out in this manual. Failure to comply may result in damage to the device, its failure, electric shock, fire and other fallout.&lt;br /&gt;
The manufacturer reserves the right to make changes to this manual without prior notice. This manual is an integral part of the system and shall remain with the end-use customer.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*10 universal outputs support:&lt;br /&gt;
**Lights&lt;br /&gt;
**NC/NO heating valves&lt;br /&gt;
**Blinds&lt;br /&gt;
**1 or 2-pole gates&lt;br /&gt;
**1 or 2-pole valves&lt;br /&gt;
**NC/NO locks&lt;br /&gt;
**Fan coil units&lt;br /&gt;
*16 Discreet inputs that support:&lt;br /&gt;
**Buttons&lt;br /&gt;
**Switches&lt;br /&gt;
**reed switches&lt;br /&gt;
**leak sensors&lt;br /&gt;
**motion detectors&lt;br /&gt;
*4 digital inputs for up to 8 temperature sensors&lt;br /&gt;
*Extension port&lt;br /&gt;
*Relays with AgSnO2 contacts rated for 16A and 120A 20ms inrush current&lt;br /&gt;
*Cloud connection and control of all house systems&lt;br /&gt;
*Voice control (Siri, Alexa, Google Home)&lt;br /&gt;
*Plugins engine allows expanding the system possibilities (e.g. integrating with Satel, Philips Hue, IKEA lights)&lt;br /&gt;
*Safety against unauthorized intrusion ensured with RSA/AES256 encryption&lt;br /&gt;
*Push notifications from the system on your phone (also possible to receive through Telegram and Viber messengers)&lt;br /&gt;
*History (meter data for 1 year is stored)&lt;br /&gt;
*Plug and play (possibility for fast and user-friendly extension of the system)&lt;br /&gt;
*Regular system updates&lt;br /&gt;
*Large constantly updated database of scripts to meet all your needs&lt;br /&gt;
*Automatic daily backups via cloud with the possibility to restore the initial configuration&lt;br /&gt;
*Open API (which allows integrating Larnitech into other systems)&lt;br /&gt;
*Interactive and user-friendly LT SETUP Web interface available for advanced configuration&lt;br /&gt;
*Plug and play&lt;br /&gt;
*It is a completely ready-to-install Smart Home system kit&lt;br /&gt;
&lt;br /&gt;
==Safety requirements== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;'''CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and / or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*all connection works must be carried out without power;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding of cables and wires;&lt;br /&gt;
*do not pinch or kink the cables and wires by applying excessive force. Otherwise, inner conductors of the cable and wires may be stripped or broken;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load parameters limit specified in this manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When working with the system after voltage supply '''NEVER''':&lt;br /&gt;
*make connection/disconnection of connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&lt;br /&gt;
==System configuration and purpose== &lt;br /&gt;
&lt;br /&gt;
===Purpose of the system=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE is a ready-made solution for automation of residential and commercial premises, hotel complexes which includes the most highly desired features of Smart House.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The device has 10 control channels, 16 incoming sensor channels, and a digital sensors’ connection port.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Universal outputs can be used to control: !!  Universal inputs allow you to connect:&lt;br /&gt;
|-&lt;br /&gt;
|  Lighting ||  Buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|  Socket connectors ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Underfloor heating ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Curtain/gate actuators ||  Leakage sensors&lt;br /&gt;
|-&lt;br /&gt;
|  Water supply/heating valves || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Digital sensors connection port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The digital sensors connection port allows you to connect a variety of digital sensors, such as temperature sensors, ambient light, humidity and other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expansion port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The expansion port allows you to upgrade the system by connecting auxiliary equipment, such as the control module for LED lighting, dimming, metering devices and other elements.&lt;br /&gt;
The package, which is completely ready-to-install, includes the basic hardware and software.&lt;br /&gt;
&lt;br /&gt;
===Package contents=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The package comes standard with:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Mainframe METAFORSA MF-10.А || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply unit MEANWELL DR-15-12 || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Motion sensor Satel amber || 3 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Leakage sensor FW-WL.A || 2 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Temperature-sensitive element FW-TS.A || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic reed switch (window/door position sensor) || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Ethernet-cable noise filter || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply cord || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Manual || 1 pc&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Basic technical specifications of the System=== &lt;br /&gt;
&lt;br /&gt;
The basic specifications and characteristics of the module METAFORSA MF-14.A are shown in table 1&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;text-align:left;&amp;quot; | Table1&lt;br /&gt;
|-&lt;br /&gt;
!Specification !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Output ports'''&lt;br /&gt;
|-&lt;br /&gt;
| Number of switched channels || 10 &lt;br /&gt;
|-&lt;br /&gt;
| Number of switched groups|| 3 &lt;br /&gt;
|-&lt;br /&gt;
| Commutation voltage || 0-250 V AC/DC &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one channel) || 8A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one group) || 20A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (device) || 45A &lt;br /&gt;
|-&lt;br /&gt;
| Power supply cable connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Permissible section of power supply cable to connect in socket:&amp;lt;br&amp;gt;single-conductor cable&amp;lt;br&amp;gt;multiple-conductor cable&amp;lt;br&amp;gt;tipped multiple-conductor cable||&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 2.5mm2&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Input ports'''&lt;br /&gt;
|-&lt;br /&gt;
|Number of discrete inputs || 16&lt;br /&gt;
|- &lt;br /&gt;
|Number of digital inputs || 4 &lt;br /&gt;
|-&lt;br /&gt;
|Current maximum rating on the direct-current voltage connectors || 50mA &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Other'''&lt;br /&gt;
|-&lt;br /&gt;
|Operating ambient temperature || 0 … +45°С &lt;br /&gt;
|-&lt;br /&gt;
|Storage/transportation temperature || -20 … +60°С &lt;br /&gt;
|-&lt;br /&gt;
|Permissible humidity || 0 … 95% (non-condensing) &lt;br /&gt;
|-&lt;br /&gt;
|Supply voltage || 11.5 … 15.5 V DC&lt;br /&gt;
|-&lt;br /&gt;
|Maximum demand || 1А &lt;br /&gt;
|-&lt;br /&gt;
|Available interfaces ||  Ethernet, CAN, OneWire&lt;br /&gt;
|-&lt;br /&gt;
|Bus type ||  CAN (4-wire)&lt;br /&gt;
|-&lt;br /&gt;
|CAN (4-wire) || 800 m* (twisted pair 5 cat) &lt;br /&gt;
|-&lt;br /&gt;
|CAN wire type || FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|CAN connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Digital line maximum length || 30 m &lt;br /&gt;
|-&lt;br /&gt;
|Digital line wirde type || UTP/FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|Digital line connection type || Connector RJ-12&lt;br /&gt;
|-&lt;br /&gt;
|LAN maximum length || 100 m &lt;br /&gt;
|-&lt;br /&gt;
|LAN wire type || UTP/FTP Cat 5E&lt;br /&gt;
|-&lt;br /&gt;
|LAN connection type || Connector RJ-45 &lt;br /&gt;
|-&lt;br /&gt;
|Dimensional specifications || 9U, 156x110x58 mm &lt;br /&gt;
|-&lt;br /&gt;
|Shell material || ABS plastic &lt;br /&gt;
|-&lt;br /&gt;
|Casing || IP40&lt;br /&gt;
|-&lt;br /&gt;
|Equipment installation type || DIN-rail (EN 60715) &lt;br /&gt;
|-&lt;br /&gt;
|Weight || 400 g &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – installing additional power supply units is required for long lines; the maximum length of the line may be reduced by various interference factors&lt;br /&gt;
&lt;br /&gt;
===General structure of the System=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Module general view is shown in '''fig. 1'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10.ch.jpg|700px|frameless|left|Fig. 1 Module general view]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;clear:left;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1-5 || — connectors for load application and power supply&lt;br /&gt;
|-&lt;br /&gt;
|6 || — device status indication&lt;br /&gt;
|-&lt;br /&gt;
|7 || — power connector&lt;br /&gt;
|-&lt;br /&gt;
|8 || — Ethernet network connector&lt;br /&gt;
|-&lt;br /&gt;
|9-12 || — connectors for digital sensors and buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|13 || — OneWire interface connector (for digital sensors)&lt;br /&gt;
|-&lt;br /&gt;
|14 || — connector for expansion module.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Overview of the METAFORSA device external connectors:''' In the upper part of the casing (fig. 1) there are 5 connectors with screw clamps. Connectors: (1) – contact points (L1, L2), (3) – contact points (L3, L4) and (5) – contact point (L5) – phase conductor connection for load switching of the channels C1-C4, C5-C8, and C9-C10 respectively. The parallel connection of two contact points is used in connectors (1) and (3) in order to increase the capacity. Connectors: (2) – C1-C4 contact points, (4) – contact points C5-C8 and (5) – C9-C10 – are used for load connection (of actuators – lights, valves, curtain drives, etc.). Internal circuit for output switching is shown in '''fig. 2.'''&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10il.jpg|700px|frameless|left|Fig. 2]]&lt;br /&gt;
&lt;br /&gt;
*connector (7) — module power supply connection;&lt;br /&gt;
*connector (8) — Ethernet network connection;&lt;br /&gt;
*connectors (9-12) — four six-point connectors for digital sensors connection – motion, leakage, reed switch sensors, and button/switching unit sensors;&lt;br /&gt;
*connector (13) — OneWire digital sensors bus connection;&lt;br /&gt;
*connector (14) — expansion module connection.&lt;br /&gt;
&lt;br /&gt;
The physical configuration and contact point assignment of each connector are shown in '''table 2.'''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ text-align=&amp;quot;left&amp;quot;|'''Table2'''&lt;br /&gt;
|-&lt;br /&gt;
!Connector!!Contact!! style=&amp;quot;width:300px&amp;quot; |Assignment&lt;br /&gt;
|-&lt;br /&gt;
|1, 3&amp;lt;br&amp;gt;[[File:mf10l.jpg|80px|frameless]] ||L1-2 L3-4|| Phase conductor connection for C1-C8 channels load switching&lt;br /&gt;
|-&lt;br /&gt;
|2, 4&amp;lt;br&amp;gt;[[File:mf10out.jpg|80px|frameless]] ||C1-4 C5-8|| Load application (light lamps, thermal actuators, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|5&amp;lt;br&amp;gt;[[File:mf10out2.jpg|80px|frameless]] || С9 L5 С10|| Connection of curtain/jalousie/shutter actuators, valve, lamps, gate controllers, etc.: С9, С10 — outputs for load application L5 — connection of group phase supply wire&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot;| 6&amp;lt;br&amp;gt;Device status indicators || The module status indicators are described in '''table 3'''&lt;br /&gt;
|-&lt;br /&gt;
|7&amp;lt;br&amp;gt;[[File:mf10power.jpg|80px|frameless]] ||+12V GND|| +12V — module power supply by an external 12 V power supply GND — common&lt;br /&gt;
|-&lt;br /&gt;
|8&amp;lt;br&amp;gt;[[File:Rj45.jpg|80px|frameless]] ||RJ45|| Connector for LAN connectivity&lt;br /&gt;
|-&lt;br /&gt;
|9-12&amp;lt;br&amp;gt;[[File:mf10in.jpg|80px|frameless]] ||+12V In1 … In16 GND||Controlling devices connection (buttons, magnetic reed switches, motion or leakage sensors): +12V — sensor power output +12 V In1 … In16 — logic inputs (0-12 V) GND — common&lt;br /&gt;
|-&lt;br /&gt;
|13&amp;lt;br&amp;gt;[[File:mf10ow.jpg|80px|frameless]] ||OneWire|| Digital sensors connection (temperature) VCC — sensors power supply output +5V OW1-OW4 — OneWire data buses GND — common&lt;br /&gt;
|-&lt;br /&gt;
|14&amp;lt;br&amp;gt;[[File:Can.jpg|80px|frameless]] ||VCC&amp;lt;br&amp;gt;GND&amp;lt;br&amp;gt;L&amp;lt;br&amp;gt;H|| External modules connection for CAN-bus VСС — 12V output for external devices power supply GND — common L — CAN-L data bus H — CAN-H data bus&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{indicationmf10}}&lt;br /&gt;
&lt;br /&gt;
===System installation and assembly=== &lt;br /&gt;
Before connecting the system, you must:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*site the sensor and actuators (if not pre-installed), set the sensors and actuators;&lt;br /&gt;
*site the module and power supply.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note: The module must be installed near the power supply voltage source.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;CAUTION!&lt;br /&gt;
#'''AC power voltage must be provided to the system input through the circuit breaker assembly. It should be installed close to the power supply.'''&lt;br /&gt;
#'''The load is applied through the circuit breaker assembly. It can be both common – for all groups, and individual – for each  group (fig. 3,4).'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa1.jpg|700px|Fig. 3]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 3.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa2.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 4.'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
#'''The power of circuit breaker assembly must comply with the load capacity;'''&lt;br /&gt;
#'''Nothing else than the phase conductors can be connected to the module, the neutral wire is connected separately.'''&lt;br /&gt;
&lt;br /&gt;
Typical diagram of METAFORSA MF-10.A module connection is shown in '''fig. 5.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa3.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig. 5''' Typical connection diagram&lt;br /&gt;
&lt;br /&gt;
===Connection of the actuators===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of the lights/electric contactor/heating thermal actuator====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa4.jpg|350px|lamp]]&amp;lt;br&amp;gt;'''Fig. 6'''|| style=&amp;quot;margin:20px&amp;quot;|Such actuators as light, electric contactor, heating thermal actuator should be switched on any of the outputs 1 – 10, the neutral wire and the ground wire should be connected directly to the switchboard. The example of connection is shown in '''Fig.6'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of high load device====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa5.png|350px|Contactor]]|| style=&amp;quot;margin:20px&amp;quot;|Recomended contactors:&lt;br /&gt;
*ABB ESB series&lt;br /&gt;
*Schneider Acti 9 iCT series&lt;br /&gt;
*Hager ESC series.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the load, make sure that the output configuration of METAFORSA module is correct. The incorrect configuration or incorrect connection can cause the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa6.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 7'''|| style=&amp;quot;margin:20px&amp;quot;|The single pole water/gas supply valve is connected to any of the outputs of 1 – 10, the (neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.7'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the valve, it is necessary to ensure the output configuration of METAFORSA module is correct. The incorrect configuration can cause the voltage application simultaneously to both channels of the valve, which may result in the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa7.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 8'''|| style=&amp;quot;margin:20px&amp;quot;|Two adjacent contact points (for example, 3, 4) are used to connect the double-pole water/gas supply valve; in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.8'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you should properly configure access to the application. The contacts incorrectly configured can result in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa8|Fig. 9|Any contact point (for example, 3) is used to connect the single-pole gate drive controllers. The example of connection is shown in '''Fig.9'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa9|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the double-pole gate drive controller. The example of connection is shown in '''Fig.10'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with 220V force control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa10|Fig. 11|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator, in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.11.'''|.jpg}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with low-voltage control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa11|Fig. 12|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator with low-voltage control. The example of connection is shown in '''Fig.12'''.|.jpg&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=513</id>
		<title>Metaforsa MF-10</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=513"/>
		<updated>2021-07-21T14:52:35Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Connection of single-pole gate actuator */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = MF-10&lt;br /&gt;
| image      = Metaforsa.jpg&lt;br /&gt;
| outCount   = 10&lt;br /&gt;
| dimmOut    = &lt;br /&gt;
| peakl      = 8A&lt;br /&gt;
| peakdl     = &lt;br /&gt;
| dt         = &lt;br /&gt;
| inDisc     = 16&lt;br /&gt;
| inDigit    = 4&lt;br /&gt;
| voltage    = 11.5...15.5 V DC&lt;br /&gt;
| dim        = 9U, 156x110x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE Installation Manual describes the procedure for its installation, assembly, operation and setting.&lt;br /&gt;
While working with the system, you must strictly comply with all the requirements set out in this manual. Failure to comply may result in damage to the device, its failure, electric shock, fire and other fallout.&lt;br /&gt;
The manufacturer reserves the right to make changes to this manual without prior notice. This manual is an integral part of the system and shall remain with the end-use customer.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*10 universal outputs support:&lt;br /&gt;
**Lights&lt;br /&gt;
**NC/NO heating valves&lt;br /&gt;
**Blinds&lt;br /&gt;
**1 or 2-pole gates&lt;br /&gt;
**1 or 2-pole valves&lt;br /&gt;
**NC/NO locks&lt;br /&gt;
**Fan coil units&lt;br /&gt;
*16 Discreet inputs that support:&lt;br /&gt;
**Buttons&lt;br /&gt;
**Switches&lt;br /&gt;
**reed switches&lt;br /&gt;
**leak sensors&lt;br /&gt;
**motion detectors&lt;br /&gt;
*4 digital inputs for up to 8 temperature sensors&lt;br /&gt;
*Extension port&lt;br /&gt;
*Relays with AgSnO2 contacts rated for 16A and 120A 20ms inrush current&lt;br /&gt;
*Cloud connection and control of all house systems&lt;br /&gt;
*Voice control (Siri, Alexa, Google Home)&lt;br /&gt;
*Plugins engine allows expanding the system possibilities (e.g. integrating with Satel, Philips Hue, IKEA lights)&lt;br /&gt;
*Safety against unauthorized intrusion ensured with RSA/AES256 encryption&lt;br /&gt;
*Push notifications from the system on your phone (also possible to receive through Telegram and Viber messengers)&lt;br /&gt;
*History (meter data for 1 year is stored)&lt;br /&gt;
*Plug and play (possibility for fast and user-friendly extension of the system)&lt;br /&gt;
*Regular system updates&lt;br /&gt;
*Large constantly updated database of scripts to meet all your needs&lt;br /&gt;
*Automatic daily backups via cloud with the possibility to restore the initial configuration&lt;br /&gt;
*Open API (which allows integrating Larnitech into other systems)&lt;br /&gt;
*Interactive and user-friendly LT SETUP Web interface available for advanced configuration&lt;br /&gt;
*Plug and play&lt;br /&gt;
*It is a completely ready-to-install Smart Home system kit&lt;br /&gt;
&lt;br /&gt;
==Safety requirements== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;'''CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and / or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*all connection works must be carried out without power;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding of cables and wires;&lt;br /&gt;
*do not pinch or kink the cables and wires by applying excessive force. Otherwise, inner conductors of the cable and wires may be stripped or broken;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load parameters limit specified in this manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When working with the system after voltage supply '''NEVER''':&lt;br /&gt;
*make connection/disconnection of connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&lt;br /&gt;
==System configuration and purpose== &lt;br /&gt;
&lt;br /&gt;
===Purpose of the system=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE is a ready-made solution for automation of residential and commercial premises, hotel complexes which includes the most highly desired features of Smart House.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The device has 10 control channels, 16 incoming sensor channels, and a digital sensors’ connection port.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Universal outputs can be used to control: !!  Universal inputs allow you to connect:&lt;br /&gt;
|-&lt;br /&gt;
|  Lighting ||  Buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|  Socket connectors ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Underfloor heating ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Curtain/gate actuators ||  Leakage sensors&lt;br /&gt;
|-&lt;br /&gt;
|  Water supply/heating valves || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Digital sensors connection port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The digital sensors connection port allows you to connect a variety of digital sensors, such as temperature sensors, ambient light, humidity and other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expansion port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The expansion port allows you to upgrade the system by connecting auxiliary equipment, such as the control module for LED lighting, dimming, metering devices and other elements.&lt;br /&gt;
The package, which is completely ready-to-install, includes the basic hardware and software.&lt;br /&gt;
&lt;br /&gt;
===Package contents=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The package comes standard with:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Mainframe METAFORSA MF-10.А || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply unit MEANWELL DR-15-12 || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Motion sensor Satel amber || 3 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Leakage sensor FW-WL.A || 2 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Temperature-sensitive element FW-TS.A || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic reed switch (window/door position sensor) || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Ethernet-cable noise filter || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply cord || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Manual || 1 pc&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Basic technical specifications of the System=== &lt;br /&gt;
&lt;br /&gt;
The basic specifications and characteristics of the module METAFORSA MF-14.A are shown in table 1&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;text-align:left;&amp;quot; | Table1&lt;br /&gt;
|-&lt;br /&gt;
!Specification !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Output ports'''&lt;br /&gt;
|-&lt;br /&gt;
| Number of switched channels || 10 &lt;br /&gt;
|-&lt;br /&gt;
| Number of switched groups|| 3 &lt;br /&gt;
|-&lt;br /&gt;
| Commutation voltage || 0-250 V AC/DC &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one channel) || 8A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one group) || 20A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (device) || 45A &lt;br /&gt;
|-&lt;br /&gt;
| Power supply cable connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Permissible section of power supply cable to connect in socket:&amp;lt;br&amp;gt;single-conductor cable&amp;lt;br&amp;gt;multiple-conductor cable&amp;lt;br&amp;gt;tipped multiple-conductor cable||&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 2.5mm2&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Input ports'''&lt;br /&gt;
|-&lt;br /&gt;
|Number of discrete inputs || 16&lt;br /&gt;
|- &lt;br /&gt;
|Number of digital inputs || 4 &lt;br /&gt;
|-&lt;br /&gt;
|Current maximum rating on the direct-current voltage connectors || 50mA &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Other'''&lt;br /&gt;
|-&lt;br /&gt;
|Operating ambient temperature || 0 … +45°С &lt;br /&gt;
|-&lt;br /&gt;
|Storage/transportation temperature || -20 … +60°С &lt;br /&gt;
|-&lt;br /&gt;
|Permissible humidity || 0 … 95% (non-condensing) &lt;br /&gt;
|-&lt;br /&gt;
|Supply voltage || 11.5 … 15.5 V DC&lt;br /&gt;
|-&lt;br /&gt;
|Maximum demand || 1А &lt;br /&gt;
|-&lt;br /&gt;
|Available interfaces ||  Ethernet, CAN, OneWire&lt;br /&gt;
|-&lt;br /&gt;
|Bus type ||  CAN (4-wire)&lt;br /&gt;
|-&lt;br /&gt;
|CAN (4-wire) || 800 m* (twisted pair 5 cat) &lt;br /&gt;
|-&lt;br /&gt;
|CAN wire type || FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|CAN connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Digital line maximum length || 30 m &lt;br /&gt;
|-&lt;br /&gt;
|Digital line wirde type || UTP/FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|Digital line connection type || Connector RJ-12&lt;br /&gt;
|-&lt;br /&gt;
|LAN maximum length || 100 m &lt;br /&gt;
|-&lt;br /&gt;
|LAN wire type || UTP/FTP Cat 5E&lt;br /&gt;
|-&lt;br /&gt;
|LAN connection type || Connector RJ-45 &lt;br /&gt;
|-&lt;br /&gt;
|Dimensional specifications || 9U, 156x110x58 mm &lt;br /&gt;
|-&lt;br /&gt;
|Shell material || ABS plastic &lt;br /&gt;
|-&lt;br /&gt;
|Casing || IP40&lt;br /&gt;
|-&lt;br /&gt;
|Equipment installation type || DIN-rail (EN 60715) &lt;br /&gt;
|-&lt;br /&gt;
|Weight || 400 g &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – installing additional power supply units is required for long lines; the maximum length of the line may be reduced by various interference factors&lt;br /&gt;
&lt;br /&gt;
===General structure of the System=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Module general view is shown in '''fig. 1'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10.ch.jpg|700px|frameless|left|Fig. 1 Module general view]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;clear:left;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1-5 || — connectors for load application and power supply&lt;br /&gt;
|-&lt;br /&gt;
|6 || — device status indication&lt;br /&gt;
|-&lt;br /&gt;
|7 || — power connector&lt;br /&gt;
|-&lt;br /&gt;
|8 || — Ethernet network connector&lt;br /&gt;
|-&lt;br /&gt;
|9-12 || — connectors for digital sensors and buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|13 || — OneWire interface connector (for digital sensors)&lt;br /&gt;
|-&lt;br /&gt;
|14 || — connector for expansion module.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Overview of the METAFORSA device external connectors:''' In the upper part of the casing (fig. 1) there are 5 connectors with screw clamps. Connectors: (1) – contact points (L1, L2), (3) – contact points (L3, L4) and (5) – contact point (L5) – phase conductor connection for load switching of the channels C1-C4, C5-C8, and C9-C10 respectively. The parallel connection of two contact points is used in connectors (1) and (3) in order to increase the capacity. Connectors: (2) – C1-C4 contact points, (4) – contact points C5-C8 and (5) – C9-C10 – are used for load connection (of actuators – lights, valves, curtain drives, etc.). Internal circuit for output switching is shown in '''fig. 2.'''&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10il.jpg|700px|frameless|left|Fig. 2]]&lt;br /&gt;
&lt;br /&gt;
*connector (7) — module power supply connection;&lt;br /&gt;
*connector (8) — Ethernet network connection;&lt;br /&gt;
*connectors (9-12) — four six-point connectors for digital sensors connection – motion, leakage, reed switch sensors, and button/switching unit sensors;&lt;br /&gt;
*connector (13) — OneWire digital sensors bus connection;&lt;br /&gt;
*connector (14) — expansion module connection.&lt;br /&gt;
&lt;br /&gt;
The physical configuration and contact point assignment of each connector are shown in '''table 2.'''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ text-align=&amp;quot;left&amp;quot;|'''Table2'''&lt;br /&gt;
|-&lt;br /&gt;
!Connector!!Contact!! style=&amp;quot;width:300px&amp;quot; |Assignment&lt;br /&gt;
|-&lt;br /&gt;
|1, 3&amp;lt;br&amp;gt;[[File:mf10l.jpg|80px|frameless]] ||L1-2 L3-4|| Phase conductor connection for C1-C8 channels load switching&lt;br /&gt;
|-&lt;br /&gt;
|2, 4&amp;lt;br&amp;gt;[[File:mf10out.jpg|80px|frameless]] ||C1-4 C5-8|| Load application (light lamps, thermal actuators, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|5&amp;lt;br&amp;gt;[[File:mf10out2.jpg|80px|frameless]] || С9 L5 С10|| Connection of curtain/jalousie/shutter actuators, valve, lamps, gate controllers, etc.: С9, С10 — outputs for load application L5 — connection of group phase supply wire&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot;| 6&amp;lt;br&amp;gt;Device status indicators || The module status indicators are described in '''table 3'''&lt;br /&gt;
|-&lt;br /&gt;
|7&amp;lt;br&amp;gt;[[File:mf10power.jpg|80px|frameless]] ||+12V GND|| +12V — module power supply by an external 12 V power supply GND — common&lt;br /&gt;
|-&lt;br /&gt;
|8&amp;lt;br&amp;gt;[[File:Rj45.jpg|80px|frameless]] ||RJ45|| Connector for LAN connectivity&lt;br /&gt;
|-&lt;br /&gt;
|9-12&amp;lt;br&amp;gt;[[File:mf10in.jpg|80px|frameless]] ||+12V In1 … In16 GND||Controlling devices connection (buttons, magnetic reed switches, motion or leakage sensors): +12V — sensor power output +12 V In1 … In16 — logic inputs (0-12 V) GND — common&lt;br /&gt;
|-&lt;br /&gt;
|13&amp;lt;br&amp;gt;[[File:mf10ow.jpg|80px|frameless]] ||OneWire|| Digital sensors connection (temperature) VCC — sensors power supply output +5V OW1-OW4 — OneWire data buses GND — common&lt;br /&gt;
|-&lt;br /&gt;
|14&amp;lt;br&amp;gt;[[File:Can.jpg|80px|frameless]] ||VCC&amp;lt;br&amp;gt;GND&amp;lt;br&amp;gt;L&amp;lt;br&amp;gt;H|| External modules connection for CAN-bus VСС — 12V output for external devices power supply GND — common L — CAN-L data bus H — CAN-H data bus&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{indicationmf10}}&lt;br /&gt;
&lt;br /&gt;
===System installation and assembly=== &lt;br /&gt;
Before connecting the system, you must:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*site the sensor and actuators (if not pre-installed), set the sensors and actuators;&lt;br /&gt;
*site the module and power supply.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note: The module must be installed near the power supply voltage source.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;CAUTION!&lt;br /&gt;
#'''AC power voltage must be provided to the system input through the circuit breaker assembly. It should be installed close to the power supply.'''&lt;br /&gt;
#'''The load is applied through the circuit breaker assembly. It can be both common – for all groups, and individual – for each  group (fig. 3,4).'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa1.jpg|700px|Fig. 3]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 3.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa2.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 4.'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
#'''The power of circuit breaker assembly must comply with the load capacity;'''&lt;br /&gt;
#'''Nothing else than the phase conductors can be connected to the module, the neutral wire is connected separately.'''&lt;br /&gt;
&lt;br /&gt;
Typical diagram of METAFORSA MF-10.A module connection is shown in '''fig. 5.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa3.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig. 5''' Typical connection diagram&lt;br /&gt;
&lt;br /&gt;
===Connection of the actuators===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of the lights/electric contactor/heating thermal actuator====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa4.jpg|350px|lamp]]&amp;lt;br&amp;gt;'''Fig. 6'''|| style=&amp;quot;margin:20px&amp;quot;|Such actuators as light, electric contactor, heating thermal actuator should be switched on any of the outputs 1 – 10, the neutral wire and the ground wire should be connected directly to the switchboard. The example of connection is shown in '''Fig.6'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of high load device====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa5.png|350px|Contactor]]|| style=&amp;quot;margin:20px&amp;quot;|Recomended contactors:&lt;br /&gt;
*ABB ESB series&lt;br /&gt;
*Schneider Acti 9 iCT series&lt;br /&gt;
*Hager ESC series.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the load, make sure that the output configuration of METAFORSA module is correct. The incorrect configuration or incorrect connection can cause the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa6.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 7'''|| style=&amp;quot;margin:20px&amp;quot;|The single pole water/gas supply valve is connected to any of the outputs of 1 – 10, the (neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.7'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the valve, it is necessary to ensure the output configuration of METAFORSA module is correct. The incorrect configuration can cause the voltage application simultaneously to both channels of the valve, which may result in the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa7.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 8'''|| style=&amp;quot;margin:20px&amp;quot;|Two adjacent contact points (for example, 3, 4) are used to connect the double-pole water/gas supply valve; in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.8'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you should properly configure access to the application. The contacts incorrectly configured can result in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa8|Fig. 9|Any contact point (for example, 3) is used to connect the single-pole gate drive controllers. The example of connection is shown in '''Fig.9'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa9|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the double-pole gate drive controller. The example of connection is shown in '''Fig.10'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with 220V force control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa10|Fig. 11|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator, in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.11.'''|.jpg&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with low-voltage control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa11|Fig. 12|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator with low-voltage control. The example of connection is shown in '''Fig.12'''.|.jpg&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=512</id>
		<title>Metaforsa MF-10</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=512"/>
		<updated>2021-07-21T14:52:10Z</updated>

		<summary type="html">&lt;p&gt;Mark: /* Connection of double-pole gate actuator */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = MF-10&lt;br /&gt;
| image      = Metaforsa.jpg&lt;br /&gt;
| outCount   = 10&lt;br /&gt;
| dimmOut    = &lt;br /&gt;
| peakl      = 8A&lt;br /&gt;
| peakdl     = &lt;br /&gt;
| dt         = &lt;br /&gt;
| inDisc     = 16&lt;br /&gt;
| inDigit    = 4&lt;br /&gt;
| voltage    = 11.5...15.5 V DC&lt;br /&gt;
| dim        = 9U, 156x110x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE Installation Manual describes the procedure for its installation, assembly, operation and setting.&lt;br /&gt;
While working with the system, you must strictly comply with all the requirements set out in this manual. Failure to comply may result in damage to the device, its failure, electric shock, fire and other fallout.&lt;br /&gt;
The manufacturer reserves the right to make changes to this manual without prior notice. This manual is an integral part of the system and shall remain with the end-use customer.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*10 universal outputs support:&lt;br /&gt;
**Lights&lt;br /&gt;
**NC/NO heating valves&lt;br /&gt;
**Blinds&lt;br /&gt;
**1 or 2-pole gates&lt;br /&gt;
**1 or 2-pole valves&lt;br /&gt;
**NC/NO locks&lt;br /&gt;
**Fan coil units&lt;br /&gt;
*16 Discreet inputs that support:&lt;br /&gt;
**Buttons&lt;br /&gt;
**Switches&lt;br /&gt;
**reed switches&lt;br /&gt;
**leak sensors&lt;br /&gt;
**motion detectors&lt;br /&gt;
*4 digital inputs for up to 8 temperature sensors&lt;br /&gt;
*Extension port&lt;br /&gt;
*Relays with AgSnO2 contacts rated for 16A and 120A 20ms inrush current&lt;br /&gt;
*Cloud connection and control of all house systems&lt;br /&gt;
*Voice control (Siri, Alexa, Google Home)&lt;br /&gt;
*Plugins engine allows expanding the system possibilities (e.g. integrating with Satel, Philips Hue, IKEA lights)&lt;br /&gt;
*Safety against unauthorized intrusion ensured with RSA/AES256 encryption&lt;br /&gt;
*Push notifications from the system on your phone (also possible to receive through Telegram and Viber messengers)&lt;br /&gt;
*History (meter data for 1 year is stored)&lt;br /&gt;
*Plug and play (possibility for fast and user-friendly extension of the system)&lt;br /&gt;
*Regular system updates&lt;br /&gt;
*Large constantly updated database of scripts to meet all your needs&lt;br /&gt;
*Automatic daily backups via cloud with the possibility to restore the initial configuration&lt;br /&gt;
*Open API (which allows integrating Larnitech into other systems)&lt;br /&gt;
*Interactive and user-friendly LT SETUP Web interface available for advanced configuration&lt;br /&gt;
*Plug and play&lt;br /&gt;
*It is a completely ready-to-install Smart Home system kit&lt;br /&gt;
&lt;br /&gt;
==Safety requirements== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;'''CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and / or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*all connection works must be carried out without power;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding of cables and wires;&lt;br /&gt;
*do not pinch or kink the cables and wires by applying excessive force. Otherwise, inner conductors of the cable and wires may be stripped or broken;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load parameters limit specified in this manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When working with the system after voltage supply '''NEVER''':&lt;br /&gt;
*make connection/disconnection of connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&lt;br /&gt;
==System configuration and purpose== &lt;br /&gt;
&lt;br /&gt;
===Purpose of the system=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE is a ready-made solution for automation of residential and commercial premises, hotel complexes which includes the most highly desired features of Smart House.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The device has 10 control channels, 16 incoming sensor channels, and a digital sensors’ connection port.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Universal outputs can be used to control: !!  Universal inputs allow you to connect:&lt;br /&gt;
|-&lt;br /&gt;
|  Lighting ||  Buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|  Socket connectors ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Underfloor heating ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Curtain/gate actuators ||  Leakage sensors&lt;br /&gt;
|-&lt;br /&gt;
|  Water supply/heating valves || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Digital sensors connection port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The digital sensors connection port allows you to connect a variety of digital sensors, such as temperature sensors, ambient light, humidity and other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expansion port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The expansion port allows you to upgrade the system by connecting auxiliary equipment, such as the control module for LED lighting, dimming, metering devices and other elements.&lt;br /&gt;
The package, which is completely ready-to-install, includes the basic hardware and software.&lt;br /&gt;
&lt;br /&gt;
===Package contents=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The package comes standard with:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Mainframe METAFORSA MF-10.А || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply unit MEANWELL DR-15-12 || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Motion sensor Satel amber || 3 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Leakage sensor FW-WL.A || 2 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Temperature-sensitive element FW-TS.A || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic reed switch (window/door position sensor) || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Ethernet-cable noise filter || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply cord || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Manual || 1 pc&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Basic technical specifications of the System=== &lt;br /&gt;
&lt;br /&gt;
The basic specifications and characteristics of the module METAFORSA MF-14.A are shown in table 1&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;text-align:left;&amp;quot; | Table1&lt;br /&gt;
|-&lt;br /&gt;
!Specification !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Output ports'''&lt;br /&gt;
|-&lt;br /&gt;
| Number of switched channels || 10 &lt;br /&gt;
|-&lt;br /&gt;
| Number of switched groups|| 3 &lt;br /&gt;
|-&lt;br /&gt;
| Commutation voltage || 0-250 V AC/DC &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one channel) || 8A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one group) || 20A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (device) || 45A &lt;br /&gt;
|-&lt;br /&gt;
| Power supply cable connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Permissible section of power supply cable to connect in socket:&amp;lt;br&amp;gt;single-conductor cable&amp;lt;br&amp;gt;multiple-conductor cable&amp;lt;br&amp;gt;tipped multiple-conductor cable||&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 2.5mm2&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Input ports'''&lt;br /&gt;
|-&lt;br /&gt;
|Number of discrete inputs || 16&lt;br /&gt;
|- &lt;br /&gt;
|Number of digital inputs || 4 &lt;br /&gt;
|-&lt;br /&gt;
|Current maximum rating on the direct-current voltage connectors || 50mA &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Other'''&lt;br /&gt;
|-&lt;br /&gt;
|Operating ambient temperature || 0 … +45°С &lt;br /&gt;
|-&lt;br /&gt;
|Storage/transportation temperature || -20 … +60°С &lt;br /&gt;
|-&lt;br /&gt;
|Permissible humidity || 0 … 95% (non-condensing) &lt;br /&gt;
|-&lt;br /&gt;
|Supply voltage || 11.5 … 15.5 V DC&lt;br /&gt;
|-&lt;br /&gt;
|Maximum demand || 1А &lt;br /&gt;
|-&lt;br /&gt;
|Available interfaces ||  Ethernet, CAN, OneWire&lt;br /&gt;
|-&lt;br /&gt;
|Bus type ||  CAN (4-wire)&lt;br /&gt;
|-&lt;br /&gt;
|CAN (4-wire) || 800 m* (twisted pair 5 cat) &lt;br /&gt;
|-&lt;br /&gt;
|CAN wire type || FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|CAN connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Digital line maximum length || 30 m &lt;br /&gt;
|-&lt;br /&gt;
|Digital line wirde type || UTP/FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|Digital line connection type || Connector RJ-12&lt;br /&gt;
|-&lt;br /&gt;
|LAN maximum length || 100 m &lt;br /&gt;
|-&lt;br /&gt;
|LAN wire type || UTP/FTP Cat 5E&lt;br /&gt;
|-&lt;br /&gt;
|LAN connection type || Connector RJ-45 &lt;br /&gt;
|-&lt;br /&gt;
|Dimensional specifications || 9U, 156x110x58 mm &lt;br /&gt;
|-&lt;br /&gt;
|Shell material || ABS plastic &lt;br /&gt;
|-&lt;br /&gt;
|Casing || IP40&lt;br /&gt;
|-&lt;br /&gt;
|Equipment installation type || DIN-rail (EN 60715) &lt;br /&gt;
|-&lt;br /&gt;
|Weight || 400 g &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – installing additional power supply units is required for long lines; the maximum length of the line may be reduced by various interference factors&lt;br /&gt;
&lt;br /&gt;
===General structure of the System=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Module general view is shown in '''fig. 1'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10.ch.jpg|700px|frameless|left|Fig. 1 Module general view]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;clear:left;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1-5 || — connectors for load application and power supply&lt;br /&gt;
|-&lt;br /&gt;
|6 || — device status indication&lt;br /&gt;
|-&lt;br /&gt;
|7 || — power connector&lt;br /&gt;
|-&lt;br /&gt;
|8 || — Ethernet network connector&lt;br /&gt;
|-&lt;br /&gt;
|9-12 || — connectors for digital sensors and buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|13 || — OneWire interface connector (for digital sensors)&lt;br /&gt;
|-&lt;br /&gt;
|14 || — connector for expansion module.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Overview of the METAFORSA device external connectors:''' In the upper part of the casing (fig. 1) there are 5 connectors with screw clamps. Connectors: (1) – contact points (L1, L2), (3) – contact points (L3, L4) and (5) – contact point (L5) – phase conductor connection for load switching of the channels C1-C4, C5-C8, and C9-C10 respectively. The parallel connection of two contact points is used in connectors (1) and (3) in order to increase the capacity. Connectors: (2) – C1-C4 contact points, (4) – contact points C5-C8 and (5) – C9-C10 – are used for load connection (of actuators – lights, valves, curtain drives, etc.). Internal circuit for output switching is shown in '''fig. 2.'''&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10il.jpg|700px|frameless|left|Fig. 2]]&lt;br /&gt;
&lt;br /&gt;
*connector (7) — module power supply connection;&lt;br /&gt;
*connector (8) — Ethernet network connection;&lt;br /&gt;
*connectors (9-12) — four six-point connectors for digital sensors connection – motion, leakage, reed switch sensors, and button/switching unit sensors;&lt;br /&gt;
*connector (13) — OneWire digital sensors bus connection;&lt;br /&gt;
*connector (14) — expansion module connection.&lt;br /&gt;
&lt;br /&gt;
The physical configuration and contact point assignment of each connector are shown in '''table 2.'''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ text-align=&amp;quot;left&amp;quot;|'''Table2'''&lt;br /&gt;
|-&lt;br /&gt;
!Connector!!Contact!! style=&amp;quot;width:300px&amp;quot; |Assignment&lt;br /&gt;
|-&lt;br /&gt;
|1, 3&amp;lt;br&amp;gt;[[File:mf10l.jpg|80px|frameless]] ||L1-2 L3-4|| Phase conductor connection for C1-C8 channels load switching&lt;br /&gt;
|-&lt;br /&gt;
|2, 4&amp;lt;br&amp;gt;[[File:mf10out.jpg|80px|frameless]] ||C1-4 C5-8|| Load application (light lamps, thermal actuators, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|5&amp;lt;br&amp;gt;[[File:mf10out2.jpg|80px|frameless]] || С9 L5 С10|| Connection of curtain/jalousie/shutter actuators, valve, lamps, gate controllers, etc.: С9, С10 — outputs for load application L5 — connection of group phase supply wire&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot;| 6&amp;lt;br&amp;gt;Device status indicators || The module status indicators are described in '''table 3'''&lt;br /&gt;
|-&lt;br /&gt;
|7&amp;lt;br&amp;gt;[[File:mf10power.jpg|80px|frameless]] ||+12V GND|| +12V — module power supply by an external 12 V power supply GND — common&lt;br /&gt;
|-&lt;br /&gt;
|8&amp;lt;br&amp;gt;[[File:Rj45.jpg|80px|frameless]] ||RJ45|| Connector for LAN connectivity&lt;br /&gt;
|-&lt;br /&gt;
|9-12&amp;lt;br&amp;gt;[[File:mf10in.jpg|80px|frameless]] ||+12V In1 … In16 GND||Controlling devices connection (buttons, magnetic reed switches, motion or leakage sensors): +12V — sensor power output +12 V In1 … In16 — logic inputs (0-12 V) GND — common&lt;br /&gt;
|-&lt;br /&gt;
|13&amp;lt;br&amp;gt;[[File:mf10ow.jpg|80px|frameless]] ||OneWire|| Digital sensors connection (temperature) VCC — sensors power supply output +5V OW1-OW4 — OneWire data buses GND — common&lt;br /&gt;
|-&lt;br /&gt;
|14&amp;lt;br&amp;gt;[[File:Can.jpg|80px|frameless]] ||VCC&amp;lt;br&amp;gt;GND&amp;lt;br&amp;gt;L&amp;lt;br&amp;gt;H|| External modules connection for CAN-bus VСС — 12V output for external devices power supply GND — common L — CAN-L data bus H — CAN-H data bus&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{indicationmf10}}&lt;br /&gt;
&lt;br /&gt;
===System installation and assembly=== &lt;br /&gt;
Before connecting the system, you must:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*site the sensor and actuators (if not pre-installed), set the sensors and actuators;&lt;br /&gt;
*site the module and power supply.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note: The module must be installed near the power supply voltage source.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;CAUTION!&lt;br /&gt;
#'''AC power voltage must be provided to the system input through the circuit breaker assembly. It should be installed close to the power supply.'''&lt;br /&gt;
#'''The load is applied through the circuit breaker assembly. It can be both common – for all groups, and individual – for each  group (fig. 3,4).'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa1.jpg|700px|Fig. 3]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 3.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa2.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 4.'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
#'''The power of circuit breaker assembly must comply with the load capacity;'''&lt;br /&gt;
#'''Nothing else than the phase conductors can be connected to the module, the neutral wire is connected separately.'''&lt;br /&gt;
&lt;br /&gt;
Typical diagram of METAFORSA MF-10.A module connection is shown in '''fig. 5.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa3.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig. 5''' Typical connection diagram&lt;br /&gt;
&lt;br /&gt;
===Connection of the actuators===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of the lights/electric contactor/heating thermal actuator====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa4.jpg|350px|lamp]]&amp;lt;br&amp;gt;'''Fig. 6'''|| style=&amp;quot;margin:20px&amp;quot;|Such actuators as light, electric contactor, heating thermal actuator should be switched on any of the outputs 1 – 10, the neutral wire and the ground wire should be connected directly to the switchboard. The example of connection is shown in '''Fig.6'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of high load device====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa5.png|350px|Contactor]]|| style=&amp;quot;margin:20px&amp;quot;|Recomended contactors:&lt;br /&gt;
*ABB ESB series&lt;br /&gt;
*Schneider Acti 9 iCT series&lt;br /&gt;
*Hager ESC series.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the load, make sure that the output configuration of METAFORSA module is correct. The incorrect configuration or incorrect connection can cause the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa6.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 7'''|| style=&amp;quot;margin:20px&amp;quot;|The single pole water/gas supply valve is connected to any of the outputs of 1 – 10, the (neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.7'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the valve, it is necessary to ensure the output configuration of METAFORSA module is correct. The incorrect configuration can cause the voltage application simultaneously to both channels of the valve, which may result in the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa7.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 8'''|| style=&amp;quot;margin:20px&amp;quot;|Two adjacent contact points (for example, 3, 4) are used to connect the double-pole water/gas supply valve; in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.8'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you should properly configure access to the application. The contacts incorrectly configured can result in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa8|Fig. 9|Any contact point (for example, 3) is used to connect the single-pole gate drive controllers. The example of connection is shown in '''Fig.9'''.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa9|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the double-pole gate drive controller. The example of connection is shown in '''Fig.10'''.|.png|150}}&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with 220V force control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa10|Fig. 11|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator, in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.11.'''|.jpg&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with low-voltage control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa11|Fig. 12|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator with low-voltage control. The example of connection is shown in '''Fig.12'''.|.jpg&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=511</id>
		<title>Metaforsa MF-10</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=511"/>
		<updated>2021-07-21T14:48:25Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = MF-10&lt;br /&gt;
| image      = Metaforsa.jpg&lt;br /&gt;
| outCount   = 10&lt;br /&gt;
| dimmOut    = &lt;br /&gt;
| peakl      = 8A&lt;br /&gt;
| peakdl     = &lt;br /&gt;
| dt         = &lt;br /&gt;
| inDisc     = 16&lt;br /&gt;
| inDigit    = 4&lt;br /&gt;
| voltage    = 11.5...15.5 V DC&lt;br /&gt;
| dim        = 9U, 156x110x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE Installation Manual describes the procedure for its installation, assembly, operation and setting.&lt;br /&gt;
While working with the system, you must strictly comply with all the requirements set out in this manual. Failure to comply may result in damage to the device, its failure, electric shock, fire and other fallout.&lt;br /&gt;
The manufacturer reserves the right to make changes to this manual without prior notice. This manual is an integral part of the system and shall remain with the end-use customer.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*10 universal outputs support:&lt;br /&gt;
**Lights&lt;br /&gt;
**NC/NO heating valves&lt;br /&gt;
**Blinds&lt;br /&gt;
**1 or 2-pole gates&lt;br /&gt;
**1 or 2-pole valves&lt;br /&gt;
**NC/NO locks&lt;br /&gt;
**Fan coil units&lt;br /&gt;
*16 Discreet inputs that support:&lt;br /&gt;
**Buttons&lt;br /&gt;
**Switches&lt;br /&gt;
**reed switches&lt;br /&gt;
**leak sensors&lt;br /&gt;
**motion detectors&lt;br /&gt;
*4 digital inputs for up to 8 temperature sensors&lt;br /&gt;
*Extension port&lt;br /&gt;
*Relays with AgSnO2 contacts rated for 16A and 120A 20ms inrush current&lt;br /&gt;
*Cloud connection and control of all house systems&lt;br /&gt;
*Voice control (Siri, Alexa, Google Home)&lt;br /&gt;
*Plugins engine allows expanding the system possibilities (e.g. integrating with Satel, Philips Hue, IKEA lights)&lt;br /&gt;
*Safety against unauthorized intrusion ensured with RSA/AES256 encryption&lt;br /&gt;
*Push notifications from the system on your phone (also possible to receive through Telegram and Viber messengers)&lt;br /&gt;
*History (meter data for 1 year is stored)&lt;br /&gt;
*Plug and play (possibility for fast and user-friendly extension of the system)&lt;br /&gt;
*Regular system updates&lt;br /&gt;
*Large constantly updated database of scripts to meet all your needs&lt;br /&gt;
*Automatic daily backups via cloud with the possibility to restore the initial configuration&lt;br /&gt;
*Open API (which allows integrating Larnitech into other systems)&lt;br /&gt;
*Interactive and user-friendly LT SETUP Web interface available for advanced configuration&lt;br /&gt;
*Plug and play&lt;br /&gt;
*It is a completely ready-to-install Smart Home system kit&lt;br /&gt;
&lt;br /&gt;
==Safety requirements== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;'''CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and / or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*all connection works must be carried out without power;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding of cables and wires;&lt;br /&gt;
*do not pinch or kink the cables and wires by applying excessive force. Otherwise, inner conductors of the cable and wires may be stripped or broken;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load parameters limit specified in this manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When working with the system after voltage supply '''NEVER''':&lt;br /&gt;
*make connection/disconnection of connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&lt;br /&gt;
==System configuration and purpose== &lt;br /&gt;
&lt;br /&gt;
===Purpose of the system=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE is a ready-made solution for automation of residential and commercial premises, hotel complexes which includes the most highly desired features of Smart House.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The device has 10 control channels, 16 incoming sensor channels, and a digital sensors’ connection port.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Universal outputs can be used to control: !!  Universal inputs allow you to connect:&lt;br /&gt;
|-&lt;br /&gt;
|  Lighting ||  Buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|  Socket connectors ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Underfloor heating ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Curtain/gate actuators ||  Leakage sensors&lt;br /&gt;
|-&lt;br /&gt;
|  Water supply/heating valves || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Digital sensors connection port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The digital sensors connection port allows you to connect a variety of digital sensors, such as temperature sensors, ambient light, humidity and other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expansion port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The expansion port allows you to upgrade the system by connecting auxiliary equipment, such as the control module for LED lighting, dimming, metering devices and other elements.&lt;br /&gt;
The package, which is completely ready-to-install, includes the basic hardware and software.&lt;br /&gt;
&lt;br /&gt;
===Package contents=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The package comes standard with:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Mainframe METAFORSA MF-10.А || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply unit MEANWELL DR-15-12 || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Motion sensor Satel amber || 3 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Leakage sensor FW-WL.A || 2 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Temperature-sensitive element FW-TS.A || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic reed switch (window/door position sensor) || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Ethernet-cable noise filter || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply cord || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Manual || 1 pc&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Basic technical specifications of the System=== &lt;br /&gt;
&lt;br /&gt;
The basic specifications and characteristics of the module METAFORSA MF-14.A are shown in table 1&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;text-align:left;&amp;quot; | Table1&lt;br /&gt;
|-&lt;br /&gt;
!Specification !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Output ports'''&lt;br /&gt;
|-&lt;br /&gt;
| Number of switched channels || 10 &lt;br /&gt;
|-&lt;br /&gt;
| Number of switched groups|| 3 &lt;br /&gt;
|-&lt;br /&gt;
| Commutation voltage || 0-250 V AC/DC &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one channel) || 8A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one group) || 20A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (device) || 45A &lt;br /&gt;
|-&lt;br /&gt;
| Power supply cable connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Permissible section of power supply cable to connect in socket:&amp;lt;br&amp;gt;single-conductor cable&amp;lt;br&amp;gt;multiple-conductor cable&amp;lt;br&amp;gt;tipped multiple-conductor cable||&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 2.5mm2&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Input ports'''&lt;br /&gt;
|-&lt;br /&gt;
|Number of discrete inputs || 16&lt;br /&gt;
|- &lt;br /&gt;
|Number of digital inputs || 4 &lt;br /&gt;
|-&lt;br /&gt;
|Current maximum rating on the direct-current voltage connectors || 50mA &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Other'''&lt;br /&gt;
|-&lt;br /&gt;
|Operating ambient temperature || 0 … +45°С &lt;br /&gt;
|-&lt;br /&gt;
|Storage/transportation temperature || -20 … +60°С &lt;br /&gt;
|-&lt;br /&gt;
|Permissible humidity || 0 … 95% (non-condensing) &lt;br /&gt;
|-&lt;br /&gt;
|Supply voltage || 11.5 … 15.5 V DC&lt;br /&gt;
|-&lt;br /&gt;
|Maximum demand || 1А &lt;br /&gt;
|-&lt;br /&gt;
|Available interfaces ||  Ethernet, CAN, OneWire&lt;br /&gt;
|-&lt;br /&gt;
|Bus type ||  CAN (4-wire)&lt;br /&gt;
|-&lt;br /&gt;
|CAN (4-wire) || 800 m* (twisted pair 5 cat) &lt;br /&gt;
|-&lt;br /&gt;
|CAN wire type || FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|CAN connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Digital line maximum length || 30 m &lt;br /&gt;
|-&lt;br /&gt;
|Digital line wirde type || UTP/FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|Digital line connection type || Connector RJ-12&lt;br /&gt;
|-&lt;br /&gt;
|LAN maximum length || 100 m &lt;br /&gt;
|-&lt;br /&gt;
|LAN wire type || UTP/FTP Cat 5E&lt;br /&gt;
|-&lt;br /&gt;
|LAN connection type || Connector RJ-45 &lt;br /&gt;
|-&lt;br /&gt;
|Dimensional specifications || 9U, 156x110x58 mm &lt;br /&gt;
|-&lt;br /&gt;
|Shell material || ABS plastic &lt;br /&gt;
|-&lt;br /&gt;
|Casing || IP40&lt;br /&gt;
|-&lt;br /&gt;
|Equipment installation type || DIN-rail (EN 60715) &lt;br /&gt;
|-&lt;br /&gt;
|Weight || 400 g &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – installing additional power supply units is required for long lines; the maximum length of the line may be reduced by various interference factors&lt;br /&gt;
&lt;br /&gt;
===General structure of the System=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Module general view is shown in '''fig. 1'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10.ch.jpg|700px|frameless|left|Fig. 1 Module general view]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;clear:left;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1-5 || — connectors for load application and power supply&lt;br /&gt;
|-&lt;br /&gt;
|6 || — device status indication&lt;br /&gt;
|-&lt;br /&gt;
|7 || — power connector&lt;br /&gt;
|-&lt;br /&gt;
|8 || — Ethernet network connector&lt;br /&gt;
|-&lt;br /&gt;
|9-12 || — connectors for digital sensors and buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|13 || — OneWire interface connector (for digital sensors)&lt;br /&gt;
|-&lt;br /&gt;
|14 || — connector for expansion module.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Overview of the METAFORSA device external connectors:''' In the upper part of the casing (fig. 1) there are 5 connectors with screw clamps. Connectors: (1) – contact points (L1, L2), (3) – contact points (L3, L4) and (5) – contact point (L5) – phase conductor connection for load switching of the channels C1-C4, C5-C8, and C9-C10 respectively. The parallel connection of two contact points is used in connectors (1) and (3) in order to increase the capacity. Connectors: (2) – C1-C4 contact points, (4) – contact points C5-C8 and (5) – C9-C10 – are used for load connection (of actuators – lights, valves, curtain drives, etc.). Internal circuit for output switching is shown in '''fig. 2.'''&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10il.jpg|700px|frameless|left|Fig. 2]]&lt;br /&gt;
&lt;br /&gt;
*connector (7) — module power supply connection;&lt;br /&gt;
*connector (8) — Ethernet network connection;&lt;br /&gt;
*connectors (9-12) — four six-point connectors for digital sensors connection – motion, leakage, reed switch sensors, and button/switching unit sensors;&lt;br /&gt;
*connector (13) — OneWire digital sensors bus connection;&lt;br /&gt;
*connector (14) — expansion module connection.&lt;br /&gt;
&lt;br /&gt;
The physical configuration and contact point assignment of each connector are shown in '''table 2.'''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ text-align=&amp;quot;left&amp;quot;|'''Table2'''&lt;br /&gt;
|-&lt;br /&gt;
!Connector!!Contact!! style=&amp;quot;width:300px&amp;quot; |Assignment&lt;br /&gt;
|-&lt;br /&gt;
|1, 3&amp;lt;br&amp;gt;[[File:mf10l.jpg|80px|frameless]] ||L1-2 L3-4|| Phase conductor connection for C1-C8 channels load switching&lt;br /&gt;
|-&lt;br /&gt;
|2, 4&amp;lt;br&amp;gt;[[File:mf10out.jpg|80px|frameless]] ||C1-4 C5-8|| Load application (light lamps, thermal actuators, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|5&amp;lt;br&amp;gt;[[File:mf10out2.jpg|80px|frameless]] || С9 L5 С10|| Connection of curtain/jalousie/shutter actuators, valve, lamps, gate controllers, etc.: С9, С10 — outputs for load application L5 — connection of group phase supply wire&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot;| 6&amp;lt;br&amp;gt;Device status indicators || The module status indicators are described in '''table 3'''&lt;br /&gt;
|-&lt;br /&gt;
|7&amp;lt;br&amp;gt;[[File:mf10power.jpg|80px|frameless]] ||+12V GND|| +12V — module power supply by an external 12 V power supply GND — common&lt;br /&gt;
|-&lt;br /&gt;
|8&amp;lt;br&amp;gt;[[File:Rj45.jpg|80px|frameless]] ||RJ45|| Connector for LAN connectivity&lt;br /&gt;
|-&lt;br /&gt;
|9-12&amp;lt;br&amp;gt;[[File:mf10in.jpg|80px|frameless]] ||+12V In1 … In16 GND||Controlling devices connection (buttons, magnetic reed switches, motion or leakage sensors): +12V — sensor power output +12 V In1 … In16 — logic inputs (0-12 V) GND — common&lt;br /&gt;
|-&lt;br /&gt;
|13&amp;lt;br&amp;gt;[[File:mf10ow.jpg|80px|frameless]] ||OneWire|| Digital sensors connection (temperature) VCC — sensors power supply output +5V OW1-OW4 — OneWire data buses GND — common&lt;br /&gt;
|-&lt;br /&gt;
|14&amp;lt;br&amp;gt;[[File:Can.jpg|80px|frameless]] ||VCC&amp;lt;br&amp;gt;GND&amp;lt;br&amp;gt;L&amp;lt;br&amp;gt;H|| External modules connection for CAN-bus VСС — 12V output for external devices power supply GND — common L — CAN-L data bus H — CAN-H data bus&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{indicationmf10}}&lt;br /&gt;
&lt;br /&gt;
===System installation and assembly=== &lt;br /&gt;
Before connecting the system, you must:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*site the sensor and actuators (if not pre-installed), set the sensors and actuators;&lt;br /&gt;
*site the module and power supply.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note: The module must be installed near the power supply voltage source.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;CAUTION!&lt;br /&gt;
#'''AC power voltage must be provided to the system input through the circuit breaker assembly. It should be installed close to the power supply.'''&lt;br /&gt;
#'''The load is applied through the circuit breaker assembly. It can be both common – for all groups, and individual – for each  group (fig. 3,4).'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa1.jpg|700px|Fig. 3]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 3.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa2.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 4.'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
#'''The power of circuit breaker assembly must comply with the load capacity;'''&lt;br /&gt;
#'''Nothing else than the phase conductors can be connected to the module, the neutral wire is connected separately.'''&lt;br /&gt;
&lt;br /&gt;
Typical diagram of METAFORSA MF-10.A module connection is shown in '''fig. 5.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa3.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig. 5''' Typical connection diagram&lt;br /&gt;
&lt;br /&gt;
===Connection of the actuators===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of the lights/electric contactor/heating thermal actuator====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa4.jpg|350px|lamp]]&amp;lt;br&amp;gt;'''Fig. 6'''|| style=&amp;quot;margin:20px&amp;quot;|Such actuators as light, electric contactor, heating thermal actuator should be switched on any of the outputs 1 – 10, the neutral wire and the ground wire should be connected directly to the switchboard. The example of connection is shown in '''Fig.6'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of high load device====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa5.png|350px|Contactor]]|| style=&amp;quot;margin:20px&amp;quot;|Recomended contactors:&lt;br /&gt;
*ABB ESB series&lt;br /&gt;
*Schneider Acti 9 iCT series&lt;br /&gt;
*Hager ESC series.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the load, make sure that the output configuration of METAFORSA module is correct. The incorrect configuration or incorrect connection can cause the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa6.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 7'''|| style=&amp;quot;margin:20px&amp;quot;|The single pole water/gas supply valve is connected to any of the outputs of 1 – 10, the (neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.7'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the valve, it is necessary to ensure the output configuration of METAFORSA module is correct. The incorrect configuration can cause the voltage application simultaneously to both channels of the valve, which may result in the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa7.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 8'''|| style=&amp;quot;margin:20px&amp;quot;|Two adjacent contact points (for example, 3, 4) are used to connect the double-pole water/gas supply valve; in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.8'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you should properly configure access to the application. The contacts incorrectly configured can result in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa8|Fig. 9|Any contact point (for example, 3) is used to connect the single-pole gate drive controllers. The example of connection is shown in '''Fig.9'''.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa9|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the double-pole gate drive controller. The example of connection is shown in '''Fig.10'''.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with 220V force control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa10|Fig. 11|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator, in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.11.'''|.jpg&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with low-voltage control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa11|Fig. 12|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator with low-voltage control. The example of connection is shown in '''Fig.12'''.|.jpg&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Template:ConExC&amp;diff=510</id>
		<title>Template:ConExC</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Template:ConExC&amp;diff=510"/>
		<updated>2021-07-21T14:48:21Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''{{{1}}}'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:{{{2}}}{{{5|.png}}}|{{{6|350}}}px|{{{2}}}]]&amp;lt;br&amp;gt;'''{{{3}}}''' || style=&amp;quot;margin:20px&amp;quot;|{{{4}}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=509</id>
		<title>Metaforsa MF-10</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Metaforsa_MF-10&amp;diff=509"/>
		<updated>2021-07-21T14:44:12Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox module&lt;br /&gt;
| name       = MF-10&lt;br /&gt;
| image      = Metaforsa.jpg&lt;br /&gt;
| outCount   = 10&lt;br /&gt;
| dimmOut    = &lt;br /&gt;
| peakl      = 8A&lt;br /&gt;
| peakdl     = &lt;br /&gt;
| dt         = &lt;br /&gt;
| inDisc     = 16&lt;br /&gt;
| inDigit    = 4&lt;br /&gt;
| voltage    = 11.5...15.5 V DC&lt;br /&gt;
| dim        = 9U, 156x110x58 mm&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE Installation Manual describes the procedure for its installation, assembly, operation and setting.&lt;br /&gt;
While working with the system, you must strictly comply with all the requirements set out in this manual. Failure to comply may result in damage to the device, its failure, electric shock, fire and other fallout.&lt;br /&gt;
The manufacturer reserves the right to make changes to this manual without prior notice. This manual is an integral part of the system and shall remain with the end-use customer.&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
*10 universal outputs support:&lt;br /&gt;
**Lights&lt;br /&gt;
**NC/NO heating valves&lt;br /&gt;
**Blinds&lt;br /&gt;
**1 or 2-pole gates&lt;br /&gt;
**1 or 2-pole valves&lt;br /&gt;
**NC/NO locks&lt;br /&gt;
**Fan coil units&lt;br /&gt;
*16 Discreet inputs that support:&lt;br /&gt;
**Buttons&lt;br /&gt;
**Switches&lt;br /&gt;
**reed switches&lt;br /&gt;
**leak sensors&lt;br /&gt;
**motion detectors&lt;br /&gt;
*4 digital inputs for up to 8 temperature sensors&lt;br /&gt;
*Extension port&lt;br /&gt;
*Relays with AgSnO2 contacts rated for 16A and 120A 20ms inrush current&lt;br /&gt;
*Cloud connection and control of all house systems&lt;br /&gt;
*Voice control (Siri, Alexa, Google Home)&lt;br /&gt;
*Plugins engine allows expanding the system possibilities (e.g. integrating with Satel, Philips Hue, IKEA lights)&lt;br /&gt;
*Safety against unauthorized intrusion ensured with RSA/AES256 encryption&lt;br /&gt;
*Push notifications from the system on your phone (also possible to receive through Telegram and Viber messengers)&lt;br /&gt;
*History (meter data for 1 year is stored)&lt;br /&gt;
*Plug and play (possibility for fast and user-friendly extension of the system)&lt;br /&gt;
*Regular system updates&lt;br /&gt;
*Large constantly updated database of scripts to meet all your needs&lt;br /&gt;
*Automatic daily backups via cloud with the possibility to restore the initial configuration&lt;br /&gt;
*Open API (which allows integrating Larnitech into other systems)&lt;br /&gt;
*Interactive and user-friendly LT SETUP Web interface available for advanced configuration&lt;br /&gt;
*Plug and play&lt;br /&gt;
*It is a completely ready-to-install Smart Home system kit&lt;br /&gt;
&lt;br /&gt;
==Safety requirements== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;'''CAUTION! All work related to the installation, connection, setting up, service and support must be carried out by qualified personnel with sufficient skills and experience in working with electrical equipment.'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
To avoid the risk of fire, electric shock, damage to the system and / or personal injury, the system installation and assembly must be performed in accordance with the instructions listed below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*all connection works must be carried out without power;&lt;br /&gt;
*use appropriate tools and personal protection against electric shock;&lt;br /&gt;
*do not use damaged cables, wires and connectors;&lt;br /&gt;
*avoid folding of cables and wires;&lt;br /&gt;
*do not pinch or kink the cables and wires by applying excessive force. Otherwise, inner conductors of the cable and wires may be stripped or broken;&lt;br /&gt;
*do not use the power socket with poor contacts to connect;&lt;br /&gt;
*do not exceed the load parameters limit specified in this manual;&lt;br /&gt;
*the supply conductors wire section is subject to the specifications for current density limit, insulation type and wire material. Light section can result in cable overheating and fire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When working with the system after voltage supply '''NEVER''':&lt;br /&gt;
*make connection/disconnection of connectors;&lt;br /&gt;
*open modules and sensors.&lt;br /&gt;
&lt;br /&gt;
==System configuration and purpose== &lt;br /&gt;
&lt;br /&gt;
===Purpose of the system=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
METAFORSA SMART HOUSE is a ready-made solution for automation of residential and commercial premises, hotel complexes which includes the most highly desired features of Smart House.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The device has 10 control channels, 16 incoming sensor channels, and a digital sensors’ connection port.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Universal outputs can be used to control: !!  Universal inputs allow you to connect:&lt;br /&gt;
|-&lt;br /&gt;
|  Lighting ||  Buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|  Socket connectors ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Underfloor heating ||  Magnetic reed switches&lt;br /&gt;
|-&lt;br /&gt;
|  Curtain/gate actuators ||  Leakage sensors&lt;br /&gt;
|-&lt;br /&gt;
|  Water supply/heating valves || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Digital sensors connection port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The digital sensors connection port allows you to connect a variety of digital sensors, such as temperature sensors, ambient light, humidity and other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expansion port'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The expansion port allows you to upgrade the system by connecting auxiliary equipment, such as the control module for LED lighting, dimming, metering devices and other elements.&lt;br /&gt;
The package, which is completely ready-to-install, includes the basic hardware and software.&lt;br /&gt;
&lt;br /&gt;
===Package contents=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The package comes standard with:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Mainframe METAFORSA MF-10.А || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply unit MEANWELL DR-15-12 || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Motion sensor Satel amber || 3 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Leakage sensor FW-WL.A || 2 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Temperature-sensitive element FW-TS.A || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Magnetic reed switch (window/door position sensor) || 4 pcs&lt;br /&gt;
|-&lt;br /&gt;
| Ethernet-cable noise filter || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Power supply cord || 1 pc&lt;br /&gt;
|-&lt;br /&gt;
| Manual || 1 pc&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Basic technical specifications of the System=== &lt;br /&gt;
&lt;br /&gt;
The basic specifications and characteristics of the module METAFORSA MF-14.A are shown in table 1&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;text-align:left;&amp;quot; | Table1&lt;br /&gt;
|-&lt;br /&gt;
!Specification !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Output ports'''&lt;br /&gt;
|-&lt;br /&gt;
| Number of switched channels || 10 &lt;br /&gt;
|-&lt;br /&gt;
| Number of switched groups|| 3 &lt;br /&gt;
|-&lt;br /&gt;
| Commutation voltage || 0-250 V AC/DC &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one channel) || 8A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (one group) || 20A &lt;br /&gt;
|-&lt;br /&gt;
| Peak load (device) || 45A &lt;br /&gt;
|-&lt;br /&gt;
| Power supply cable connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Permissible section of power supply cable to connect in socket:&amp;lt;br&amp;gt;single-conductor cable&amp;lt;br&amp;gt;multiple-conductor cable&amp;lt;br&amp;gt;tipped multiple-conductor cable||&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 4mm2&amp;lt;br&amp;gt;0.5 … 2.5mm2&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Input ports'''&lt;br /&gt;
|-&lt;br /&gt;
|Number of discrete inputs || 16&lt;br /&gt;
|- &lt;br /&gt;
|Number of digital inputs || 4 &lt;br /&gt;
|-&lt;br /&gt;
|Current maximum rating on the direct-current voltage connectors || 50mA &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|'''Other'''&lt;br /&gt;
|-&lt;br /&gt;
|Operating ambient temperature || 0 … +45°С &lt;br /&gt;
|-&lt;br /&gt;
|Storage/transportation temperature || -20 … +60°С &lt;br /&gt;
|-&lt;br /&gt;
|Permissible humidity || 0 … 95% (non-condensing) &lt;br /&gt;
|-&lt;br /&gt;
|Supply voltage || 11.5 … 15.5 V DC&lt;br /&gt;
|-&lt;br /&gt;
|Maximum demand || 1А &lt;br /&gt;
|-&lt;br /&gt;
|Available interfaces ||  Ethernet, CAN, OneWire&lt;br /&gt;
|-&lt;br /&gt;
|Bus type ||  CAN (4-wire)&lt;br /&gt;
|-&lt;br /&gt;
|CAN (4-wire) || 800 m* (twisted pair 5 cat) &lt;br /&gt;
|-&lt;br /&gt;
|CAN wire type || FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|CAN connection type || connector &lt;br /&gt;
|-&lt;br /&gt;
|Digital line maximum length || 30 m &lt;br /&gt;
|-&lt;br /&gt;
|Digital line wirde type || UTP/FTP Cat 5E &lt;br /&gt;
|-&lt;br /&gt;
|Digital line connection type || Connector RJ-12&lt;br /&gt;
|-&lt;br /&gt;
|LAN maximum length || 100 m &lt;br /&gt;
|-&lt;br /&gt;
|LAN wire type || UTP/FTP Cat 5E&lt;br /&gt;
|-&lt;br /&gt;
|LAN connection type || Connector RJ-45 &lt;br /&gt;
|-&lt;br /&gt;
|Dimensional specifications || 9U, 156x110x58 mm &lt;br /&gt;
|-&lt;br /&gt;
|Shell material || ABS plastic &lt;br /&gt;
|-&lt;br /&gt;
|Casing || IP40&lt;br /&gt;
|-&lt;br /&gt;
|Equipment installation type || DIN-rail (EN 60715) &lt;br /&gt;
|-&lt;br /&gt;
|Weight || 400 g &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; – installing additional power supply units is required for long lines; the maximum length of the line may be reduced by various interference factors&lt;br /&gt;
&lt;br /&gt;
===General structure of the System=== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Module general view is shown in '''fig. 1'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10.ch.jpg|700px|frameless|left|Fig. 1 Module general view]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;clear:left;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1-5 || — connectors for load application and power supply&lt;br /&gt;
|-&lt;br /&gt;
|6 || — device status indication&lt;br /&gt;
|-&lt;br /&gt;
|7 || — power connector&lt;br /&gt;
|-&lt;br /&gt;
|8 || — Ethernet network connector&lt;br /&gt;
|-&lt;br /&gt;
|9-12 || — connectors for digital sensors and buttons/switching units&lt;br /&gt;
|-&lt;br /&gt;
|13 || — OneWire interface connector (for digital sensors)&lt;br /&gt;
|-&lt;br /&gt;
|14 || — connector for expansion module.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Overview of the METAFORSA device external connectors:''' In the upper part of the casing (fig. 1) there are 5 connectors with screw clamps. Connectors: (1) – contact points (L1, L2), (3) – contact points (L3, L4) and (5) – contact point (L5) – phase conductor connection for load switching of the channels C1-C4, C5-C8, and C9-C10 respectively. The parallel connection of two contact points is used in connectors (1) and (3) in order to increase the capacity. Connectors: (2) – C1-C4 contact points, (4) – contact points C5-C8 and (5) – C9-C10 – are used for load connection (of actuators – lights, valves, curtain drives, etc.). Internal circuit for output switching is shown in '''fig. 2.'''&lt;br /&gt;
&lt;br /&gt;
[[File:Mf10il.jpg|700px|frameless|left|Fig. 2]]&lt;br /&gt;
&lt;br /&gt;
*connector (7) — module power supply connection;&lt;br /&gt;
*connector (8) — Ethernet network connection;&lt;br /&gt;
*connectors (9-12) — four six-point connectors for digital sensors connection – motion, leakage, reed switch sensors, and button/switching unit sensors;&lt;br /&gt;
*connector (13) — OneWire digital sensors bus connection;&lt;br /&gt;
*connector (14) — expansion module connection.&lt;br /&gt;
&lt;br /&gt;
The physical configuration and contact point assignment of each connector are shown in '''table 2.'''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ text-align=&amp;quot;left&amp;quot;|'''Table2'''&lt;br /&gt;
|-&lt;br /&gt;
!Connector!!Contact!! style=&amp;quot;width:300px&amp;quot; |Assignment&lt;br /&gt;
|-&lt;br /&gt;
|1, 3&amp;lt;br&amp;gt;[[File:mf10l.jpg|80px|frameless]] ||L1-2 L3-4|| Phase conductor connection for C1-C8 channels load switching&lt;br /&gt;
|-&lt;br /&gt;
|2, 4&amp;lt;br&amp;gt;[[File:mf10out.jpg|80px|frameless]] ||C1-4 C5-8|| Load application (light lamps, thermal actuators, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|5&amp;lt;br&amp;gt;[[File:mf10out2.jpg|80px|frameless]] || С9 L5 С10|| Connection of curtain/jalousie/shutter actuators, valve, lamps, gate controllers, etc.: С9, С10 — outputs for load application L5 — connection of group phase supply wire&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot;| 6&amp;lt;br&amp;gt;Device status indicators || The module status indicators are described in '''table 3'''&lt;br /&gt;
|-&lt;br /&gt;
|7&amp;lt;br&amp;gt;[[File:mf10power.jpg|80px|frameless]] ||+12V GND|| +12V — module power supply by an external 12 V power supply GND — common&lt;br /&gt;
|-&lt;br /&gt;
|8&amp;lt;br&amp;gt;[[File:Rj45.jpg|80px|frameless]] ||RJ45|| Connector for LAN connectivity&lt;br /&gt;
|-&lt;br /&gt;
|9-12&amp;lt;br&amp;gt;[[File:mf10in.jpg|80px|frameless]] ||+12V In1 … In16 GND||Controlling devices connection (buttons, magnetic reed switches, motion or leakage sensors): +12V — sensor power output +12 V In1 … In16 — logic inputs (0-12 V) GND — common&lt;br /&gt;
|-&lt;br /&gt;
|13&amp;lt;br&amp;gt;[[File:mf10ow.jpg|80px|frameless]] ||OneWire|| Digital sensors connection (temperature) VCC — sensors power supply output +5V OW1-OW4 — OneWire data buses GND — common&lt;br /&gt;
|-&lt;br /&gt;
|14&amp;lt;br&amp;gt;[[File:Can.jpg|80px|frameless]] ||VCC&amp;lt;br&amp;gt;GND&amp;lt;br&amp;gt;L&amp;lt;br&amp;gt;H|| External modules connection for CAN-bus VСС — 12V output for external devices power supply GND — common L — CAN-L data bus H — CAN-H data bus&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{indicationmf10}}&lt;br /&gt;
&lt;br /&gt;
===System installation and assembly=== &lt;br /&gt;
Before connecting the system, you must:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*site the sensor and actuators (if not pre-installed), set the sensors and actuators;&lt;br /&gt;
*site the module and power supply.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note: The module must be installed near the power supply voltage source.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;caution&amp;quot;&amp;gt;CAUTION!&lt;br /&gt;
#'''AC power voltage must be provided to the system input through the circuit breaker assembly. It should be installed close to the power supply.'''&lt;br /&gt;
#'''The load is applied through the circuit breaker assembly. It can be both common – for all groups, and individual – for each  group (fig. 3,4).'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa1.jpg|700px|Fig. 3]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 3.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa2.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig 4.'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
#'''The power of circuit breaker assembly must comply with the load capacity;'''&lt;br /&gt;
#'''Nothing else than the phase conductors can be connected to the module, the neutral wire is connected separately.'''&lt;br /&gt;
&lt;br /&gt;
Typical diagram of METAFORSA MF-10.A module connection is shown in '''fig. 5.'''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;[[File:mf10exa3.jpg|700px|Fig. 4]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;'''Fig. 5''' Typical connection diagram&lt;br /&gt;
&lt;br /&gt;
===Connection of the actuators===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of the lights/electric contactor/heating thermal actuator====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa4.jpg|350px|lamp]]&amp;lt;br&amp;gt;'''Fig. 6'''|| style=&amp;quot;margin:20px&amp;quot;|Such actuators as light, electric contactor, heating thermal actuator should be switched on any of the outputs 1 – 10, the neutral wire and the ground wire should be connected directly to the switchboard. The example of connection is shown in '''Fig.6'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of high load device====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa5.png|350px|Contactor]]|| style=&amp;quot;margin:20px&amp;quot;|Recomended contactors:&lt;br /&gt;
*ABB ESB series&lt;br /&gt;
*Schneider Acti 9 iCT series&lt;br /&gt;
*Hager ESC series.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the load, make sure that the output configuration of METAFORSA module is correct. The incorrect configuration or incorrect connection can cause the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa6.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 7'''|| style=&amp;quot;margin:20px&amp;quot;|The single pole water/gas supply valve is connected to any of the outputs of 1 – 10, the (neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.7'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole water/gas supply valve====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''Caution: Before applying power to the valve, it is necessary to ensure the output configuration of METAFORSA module is correct. The incorrect configuration can cause the voltage application simultaneously to both channels of the valve, which may result in the module failure and/or failure of the equipment connected to it, and even a fire.'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:mf10exa7.jpg|350px|valve]]&amp;lt;br&amp;gt;'''Fig. 8'''|| style=&amp;quot;margin:20px&amp;quot;|Two adjacent contact points (for example, 3, 4) are used to connect the double-pole water/gas supply valve; in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.8'''.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of single-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you should properly configure access to the application. The contacts incorrectly configured can result in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa8|Fig. 9|Any contact point (for example, 3) is used to connect the single-pole gate drive controllers. The example of connection is shown in '''Fig.9'''.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of double-pole gate actuator====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|mf10exa9|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the double-pole gate drive controller. The example of connection is shown in '''Fig.10'''.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with 220V force control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|Pjalousie|Fig. 9|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator, in these conditions the neutral wire and the ground wire are connected directly to the switchboard. The example of connection is shown in '''Fig.9.'''&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Connection of curtain/jalousie/shutter actuator with low-voltage control====&lt;br /&gt;
&lt;br /&gt;
{{ConExC&lt;br /&gt;
|Caution: Before applying power to the module, you must properly configure the outputs in the application. The contacts configured incorrectly can lead to simultaneous power supply to both channels, resulting in the module failure and/or failure of the equipment connected to it, and even a fire.&lt;br /&gt;
|ljalousie|Fig. 10|Two adjacent contact points (for example, 3, 4) should be used to connect the curtain/jalousie/rolladens actuator with low-voltage control. The example of connection is shown in '''Fig.10'''.&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=Template:ConExC&amp;diff=508</id>
		<title>Template:ConExC</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=Template:ConExC&amp;diff=508"/>
		<updated>2021-07-21T14:44:05Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:800px&amp;quot;;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color:#dededf&amp;quot; |'''{{{1}}}'''&lt;br /&gt;
|-&lt;br /&gt;
|[[File:{{{2}}}{{{5|.png}}}|350px|{{{2}}}]]&amp;lt;br&amp;gt;'''{{{3}}}''' || style=&amp;quot;margin:20px&amp;quot;|{{{4}}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=File:Mf10exa21.jpg&amp;diff=507</id>
		<title>File:Mf10exa21.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=File:Mf10exa21.jpg&amp;diff=507"/>
		<updated>2021-07-21T14:25:39Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mf10exa21&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
	<entry>
		<id>https://wiki.larnitech.com/index.php?title=File:Mf10exa20.png&amp;diff=506</id>
		<title>File:Mf10exa20.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.larnitech.com/index.php?title=File:Mf10exa20.png&amp;diff=506"/>
		<updated>2021-07-21T14:25:28Z</updated>

		<summary type="html">&lt;p&gt;Mark: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mf10exa20&lt;/div&gt;</summary>
		<author><name>Mark</name></author>
	</entry>
</feed>