<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Object_Definition_Syntax</title><link>https://sourceforge.net/p/linknx/wiki/Object_Definition_Syntax/</link><description>Recent changes to Object_Definition_Syntax</description><atom:link href="https://sourceforge.net/p/linknx/wiki/Object_Definition_Syntax/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 20 Jun 2014 06:26:40 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/linknx/wiki/Object_Definition_Syntax/feed" rel="self" type="application/rss+xml"/><item><title>Object_Definition_Syntax modified by Stef</title><link>https://sourceforge.net/p/linknx/wiki/Object_Definition_Syntax/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -30,7 +30,7 @@
 The old syntax is described in [Object_Definition_Syntax_before_0.0.1.25] section.

 Datapoint type definition can be found on Konnex website:  
-[http://www.knx.org/fileadmin/downloads/03 - KNX Standard/KNX Standard Public Documents/03_07_02 Datapoint Types v13 AS.zip](http://www.knx.org/fileadmin/downloads/03%20-%20KNX%20Standard/KNX%20Standard%20Public%20Documents/03_07_02%20Datapoint%20Types%20v13%20AS.zip)
+[http://www.knx.org/fileadmin/downloads/03 - KNX Standard/KNX Standard Public Documents/03_07_02 Datapoint Types v1.5.00 AS.zip](http://www.knx.org/fileadmin/downloads/03%20-%20KNX%20Standard/KNX%20Standard%20Public%20Documents/03_07_02%20Datapoint%20Types%20v1.5.00%20AS.zip)

 The "type" parameter can be one of 

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Stef</dc:creator><pubDate>Fri, 20 Jun 2014 06:26:40 -0000</pubDate><guid>https://sourceforge.net13254202f5bdce009c46adf7517708b42f272110</guid></item><item><title>Object_Definition_Syntax modified by Damago</title><link>https://sourceforge.net/p/linknx/wiki/Object_Definition_Syntax/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -82,7 +82,7 @@
     &amp;lt;object id="gate1_open" gad="0/1/8" flags="cwtuf" init="persist" log="true"&amp;gt;Left hand side entry gate&amp;lt;/object&amp;gt;

 The above definition will cause that the persintent storage file will always contain current value of an object gate1_open and also a logfile /var/linknx/log/gate1_open.log will contain a log of the changes of the "0/1/8" messages with timestamps.  
-
+Before using this parameter you should check this to see, whether linknx has write-permissions in the respective folder. 

 ## Listener (child xml element)

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Damago</dc:creator><pubDate>Fri, 20 Jun 2014 06:26:40 -0000</pubDate><guid>https://sourceforge.netfb5eb362e5de70b2513aea02dd5f3a68667a5456</guid></item><item><title>Object_Definition_Syntax modified by Damago</title><link>https://sourceforge.net/p/linknx/wiki/Object_Definition_Syntax/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -75,7 +75,16 @@
 The "init" parameter configures the initial object value at application startup. It can be any valid value for the object or one of the special keywords "request" and "persist". "Request" will perform a read operation on the KNX bus when the value is needed for the first time. "persist" will try to load a value from persistant storage (see persistence element in services section). If no "init" parameter is given, the default behavior is "request".

-## Additional tags and parameters
+## Log
+
+The _**log**_ parameter will cause LinKnx to log the changes of the object's value to a file. 
+    
+    &amp;lt;object id="gate1_open" gad="0/1/8" flags="cwtuf" init="persist" log="true"&amp;gt;Left hand side entry gate&amp;lt;/object&amp;gt;
+
+The above definition will cause that the persintent storage file will always contain current value of an object gate1_open and also a logfile /var/linknx/log/gate1_open.log will contain a log of the changes of the "0/1/8" messages with timestamps.  
+
+
+## Listener (child xml element)

 There is another optional xml tag "listener" which can be used inside object definition. This parameter is binding two or more different objects so that changes in one object are reflecting state of the other object. This can be used for instance when there are two different group addresses, one for setting object value (set object), and another address for reading the current value of the object (status object). 

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Damago</dc:creator><pubDate>Fri, 20 Jun 2014 06:26:40 -0000</pubDate><guid>https://sourceforge.net4caaabcdfb64a9354c202fa4b90bbe4ff7652375</guid></item><item><title>Object_Definition_Syntax modified by Damago</title><link>https://sourceforge.net/p/linknx/wiki/Object_Definition_Syntax/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -77,11 +77,25 @@

 ## Additional tags and parameters

-There is another optional xml tag "listener" which can be used inside object definition. This parameter is binding two different objects so that changes in one object are reflecting state of the other object. This can be used for instance when there are two different group addresses, one for setting object value (set object), and another address for reading the current value of the object (status object). 
+There is another optional xml tag "listener" which can be used inside object definition. This parameter is binding two or more different objects so that changes in one object are reflecting state of the other object. This can be used for instance when there are two different group addresses, one for setting object value (set object), and another address for reading the current value of the object (status object). 

     &amp;lt;object id="gate_open" gad="0/1/0" init="request"&amp;gt;&amp;lt;listener gad="4/1/0"/&amp;gt;Main gate&amp;lt;/object&amp;gt;
     &amp;lt;object id="gate_status" gad="4/1/0" init="request"&amp;gt;Main gate open/close status&amp;lt;/object&amp;gt;

-Please note that listener object is added as a separate xml tag inside object definition 
+Please note that listener object is added as a separate xml tag inside object definition. This allows adding more than one listener for an object. A scenario for such situation is when some object would change it's value responding to more than one knx message. In the following example:  
+
+    
+    
+    &amp;lt;object id="lamp17" gad="0/1/0" init="request"&amp;gt;
+       &amp;lt;listener gad="4/1/0"/&amp;gt;
+       &amp;lt;listener gad="4/1/99"&amp;gt;
+       Lamp number 17
+    &amp;lt;/object&amp;gt;
+    &amp;lt;object id="lamp17_status" gad="4/1/0" init="request"&amp;gt;Lamp17 status&amp;lt;/object&amp;gt;
+    &amp;lt;object id="all_lamps" gad="4/1/99" init="request"&amp;gt;All Lamps on_off&amp;lt;/object&amp;gt;
+    
+
+The object will change it's state in response to a message for lamp17 and also for all_lamps  
+
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Damago</dc:creator><pubDate>Fri, 20 Jun 2014 06:26:40 -0000</pubDate><guid>https://sourceforge.netad2286d7dc05ea0dbbfe2d7b6ab49aece90a65cf</guid></item><item><title>Object_Definition_Syntax modified by Damago</title><link>https://sourceforge.net/p/linknx/wiki/Object_Definition_Syntax/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -63,12 +63,12 @@
 w&amp;nbsp;: Write (update the object's internal value with the one received in write telegram if they are different)  
 t&amp;nbsp;: Transmit (allow the object to transmit it's value on the bus if it's modified internally by a rule or via XML protocol)  
 u&amp;nbsp;: Update (update the object's internal value with the one received in "read response" telegram if they are different)  
-f&amp;nbsp;: Force (force the object value to be transmitted on the bus, even if it didn't change)  
+f&amp;nbsp;: Force (force the object value to be transmitted on the bus, even if it didn't change).In the recent versions you can use s&amp;nbsp;: Stateless flag alternatively which means exactly the same (object does not update it's state so linknx should always send it's value to the bus  
 i&amp;nbsp;: Init (useless for the moment. Will perhaps replace the parameter init="request" in the future)  
 Each letter appearing inside the value of this parameter means the corresponding flag is set.  
 If "flags" is not specified, the default value is "cwtu" (Communication, Write, Transmit and Update).

-The default set of flags is good for most normal objects like switches where the value kept internally by linknx is corresponding to real object state. Another set of flags can be for example "crwtf" for objects that should send it's value to the KNX bus even if linknx maintains the same value. This is usefull for scenes. Setting scene value to 'on' should send this value to KNX every time action is triggered. 
+The default set of flags is good for most normal objects like switches where the value kept internally by linknx is corresponding to real object state. Another set of flags can be for example "crwtf" (or "crwts") for objects that should send it's value to the KNX bus even if linknx maintains the same value. This is usefull for scenes. Setting scene value to 'on' should send this value to KNX every time action is triggered to make the scene happen. 

 ## Init

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Damago</dc:creator><pubDate>Fri, 20 Jun 2014 06:26:40 -0000</pubDate><guid>https://sourceforge.netf4b030d9fa724d8246161bbf6254c244c337dcca</guid></item><item><title>Object_Definition_Syntax modified by Damago</title><link>https://sourceforge.net/p/linknx/wiki/Object_Definition_Syntax/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,8 +1,13 @@
-Since version 0.0.1.25, the object definition uses Datapoint Types defined in KNX standard instead of EIS datatypes.  
-The old syntax is described in [Object_Definition_Syntax_before_0.0.1.25] section. 
+Each object element describes a communication object.

-Datapoint type definition can be found on Konnex website:  
-[http://www.knx.org/fileadmin/downloads/03 - KNX Standard/KNX Standard Public Documents/03_07_02 Datapoint Types v13 AS.zip](http://www.knx.org/fileadmin/downloads/03%20-%20KNX%20Standard/KNX%20Standard%20Public%20Documents/03_07_02%20Datapoint%20Types%20v13%20AS.zip)
+
+[TOC]
+
+## Object definition main parameters
+
+The parameter "id" is mandatory and will be used to identify the object in rules and by the XML based protocol.  
+Parameter "gad" is optional. If specified, the object will be linked to that group address on KNX bus. If not, the object will only be accessible in rules and in XML based protocol.  
+

 Here's an example configuration: 

@@ -19,9 +24,14 @@
             &amp;lt;object type="9.xxx" id="temp_living" gad="1/1/72"&amp;gt;Actual temperature of living room&amp;lt;/object&amp;gt;
         &amp;lt;/objects&amp;gt;

-Each object element describes a communication object.  
-The parameter "id" is mandatory and will be used to identify the object in rules and by the XML based protocol.  
-Parameter "gad" is optional. If specified, the object will be linked to that group address on KNX bus. If not, the object will only be accessible in rules and in XML based protocol.  
+## Object type
+
+Since version 0.0.1.25, the object definition uses Datapoint Types defined in KNX standard instead of EIS datatypes.  
+The old syntax is described in [Object_Definition_Syntax_before_0.0.1.25] section. 
+
+Datapoint type definition can be found on Konnex website:  
+[http://www.knx.org/fileadmin/downloads/03 - KNX Standard/KNX Standard Public Documents/03_07_02 Datapoint Types v13 AS.zip](http://www.knx.org/fileadmin/downloads/03%20-%20KNX%20Standard/KNX%20Standard%20Public%20Documents/03_07_02%20Datapoint%20Types%20v13%20AS.zip)
+
 The "type" parameter can be one of 

   * 1.001: switching (on/off) (EIS1) 
@@ -43,6 +53,10 @@
   * 20.102: heating mode (comfort/standby/night/frost) 

 It's optional and the default value is 1.001.  
+
+
+## Flags
+
 The "flags" parameter is similar to the ETS flags. The value of each flag is represented by a letter:  
 c&amp;nbsp;: Communication (allow the object to interact with the KNX bus)  
 r&amp;nbsp;: Read (allow the object to answer to a read request from another participant)  
@@ -56,8 +70,12 @@

 The default set of flags is good for most normal objects like switches where the value kept internally by linknx is corresponding to real object state. Another set of flags can be for example "crwtf" for objects that should send it's value to the KNX bus even if linknx maintains the same value. This is usefull for scenes. Setting scene value to 'on' should send this value to KNX every time action is triggered. 

+## Init
+
 The "init" parameter configures the initial object value at application startup. It can be any valid value for the object or one of the special keywords "request" and "persist". "Request" will perform a read operation on the KNX bus when the value is needed for the first time. "persist" will try to load a value from persistant storage (see persistence element in services section). If no "init" parameter is given, the default behavior is "request".  

+
+## Additional tags and parameters

 There is another optional xml tag "listener" which can be used inside object definition. This parameter is binding two different objects so that changes in one object are reflecting state of the other object. This can be used for instance when there are two different group addresses, one for setting object value (set object), and another address for reading the current value of the object (status object). 

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Damago</dc:creator><pubDate>Fri, 20 Jun 2014 06:26:40 -0000</pubDate><guid>https://sourceforge.net5133b149372d9eaf79a65d4093e777c43f056913</guid></item><item><title>Object_Definition_Syntax modified by Damago</title><link>https://sourceforge.net/p/linknx/wiki/Object_Definition_Syntax/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -52,6 +52,18 @@
 f&amp;nbsp;: Force (force the object value to be transmitted on the bus, even if it didn't change)  
 i&amp;nbsp;: Init (useless for the moment. Will perhaps replace the parameter init="request" in the future)  
 Each letter appearing inside the value of this parameter means the corresponding flag is set.  
-If "flags" is not specified, the default value is "cwtu" (Communication, Write, Transmit and Update) 
+If "flags" is not specified, the default value is "cwtu" (Communication, Write, Transmit and Update).

-The "init" parameter configures the initial object value at application startup. It can be any valid value for the object or one of the special keywords "request" and "persist". "Request" will perform a read operation on the KNX bus when the value is needed for the first time. "persist" will try to load a value from persistant storage (see persistence element in services section). If no "init" parameter is given, the default behavior is "request". 
+The default set of flags is good for most normal objects like switches where the value kept internally by linknx is corresponding to real object state. Another set of flags can be for example "crwtf" for objects that should send it's value to the KNX bus even if linknx maintains the same value. This is usefull for scenes. Setting scene value to 'on' should send this value to KNX every time action is triggered. 
+
+The "init" parameter configures the initial object value at application startup. It can be any valid value for the object or one of the special keywords "request" and "persist". "Request" will perform a read operation on the KNX bus when the value is needed for the first time. "persist" will try to load a value from persistant storage (see persistence element in services section). If no "init" parameter is given, the default behavior is "request".  
+
+
+There is another optional xml tag "listener" which can be used inside object definition. This parameter is binding two different objects so that changes in one object are reflecting state of the other object. This can be used for instance when there are two different group addresses, one for setting object value (set object), and another address for reading the current value of the object (status object). 
+    
+    
+    &amp;lt;object id="gate_open" gad="0/1/0" init="request"&amp;gt;&amp;lt;listener gad="4/1/0"/&amp;gt;Main gate&amp;lt;/object&amp;gt;
+    &amp;lt;object id="gate_status" gad="4/1/0" init="request"&amp;gt;Main gate open/close status&amp;lt;/object&amp;gt;
+    
+
+Please note that listener object is added as a separate xml tag inside object definition 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Damago</dc:creator><pubDate>Fri, 20 Jun 2014 06:26:40 -0000</pubDate><guid>https://sourceforge.net5040adac0c3998ba8aeb94a1762149ed73939879</guid></item><item><title>Object_Definition_Syntax modified by jef2000</title><link>https://sourceforge.net/p/linknx/wiki/Object_Definition_Syntax/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Since version 0.0.1.25, the object definition uses Datapoint Types defined in KNX standard instead of EIS datatypes.&lt;br /&gt;
The old syntax is described in &lt;a class="alink" href="/p/linknx/wiki/Object_Definition_Syntax_before_0.0.1.25/"&gt;[Object_Definition_Syntax_before_0.0.1.25]&lt;/a&gt; section. &lt;/p&gt;
&lt;p&gt;Datapoint type definition can be found on Konnex website:&lt;br /&gt;
&lt;a class="" href="http://www.knx.org/fileadmin/downloads/03%20-%20KNX%20Standard/KNX%20Standard%20Public%20Documents/03_07_02%20Datapoint%20Types%20v13%20AS.zip" rel="nofollow"&gt;http://www.knx.org/fileadmin/downloads/03 - KNX Standard/KNX Standard Public Documents/03_07_02 Datapoint Types v13 AS.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here's an example configuration: &lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;    &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;objects&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt; &lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1.001&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;alarm_active&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;init&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;persist&amp;quot;&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;Alarm&lt;/span&gt; &lt;span class="n"&gt;activated&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt; &lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;11.001&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;cur_date&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;gad&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1/1/151&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;flags&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;cwtuf&amp;quot;&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;Current&lt;/span&gt; &lt;span class="n"&gt;Date&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt; &lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;10.001&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;cur_time&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;gad&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1/1/150&amp;quot;&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;Current&lt;/span&gt; &lt;span class="n"&gt;Time&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt; &lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;3.007&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;dim_living&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;gad&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1/1/41&amp;quot;&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;Living&lt;/span&gt; &lt;span class="n"&gt;room&lt;/span&gt; &lt;span class="n"&gt;dimmer&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt; &lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;5.xxx&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;dim_value_living&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;gad&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1/1/42&amp;quot;&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;Living&lt;/span&gt; &lt;span class="n"&gt;room&lt;/span&gt; &lt;span class="n"&gt;dimmer&lt;/span&gt; &lt;span class="n"&gt;value&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt; &lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;20.102&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;heating_living&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;gad&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1/1/70&amp;quot;&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;Temperature&lt;/span&gt; &lt;span class="n"&gt;controller&lt;/span&gt; &lt;span class="n"&gt;mode&lt;/span&gt; &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;living&lt;/span&gt; &lt;span class="n"&gt;room&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt; &lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1.001&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;light_office&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;gad&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1/1/7&amp;quot;&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;Office&lt;/span&gt; &lt;span class="n"&gt;light&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt; &lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1.001&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;light_room1&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;gad&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1/1/8&amp;quot;&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;Bedroom&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="n"&gt;light&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt; &lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;9.xxx&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;setpoint_living&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;gad&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1/1/71&amp;quot;&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;Setpoint&lt;/span&gt; &lt;span class="n"&gt;temperature&lt;/span&gt; &lt;span class="n"&gt;of&lt;/span&gt; &lt;span class="n"&gt;living&lt;/span&gt; &lt;span class="n"&gt;room&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt; &lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;9.xxx&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;temp_living&amp;quot;&lt;/span&gt; &lt;span class="n"&gt;gad&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;1/1/72&amp;quot;&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="n"&gt;Actual&lt;/span&gt; &lt;span class="n"&gt;temperature&lt;/span&gt; &lt;span class="n"&gt;of&lt;/span&gt; &lt;span class="n"&gt;living&lt;/span&gt; &lt;span class="n"&gt;room&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;object&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;lt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;objects&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="n"&gt;gt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Each object element describes a communication object.&lt;br /&gt;
The parameter "id" is mandatory and will be used to identify the object in rules and by the XML based protocol.&lt;br /&gt;
Parameter "gad" is optional. If specified, the object will be linked to that group address on KNX bus. If not, the object will only be accessible in rules and in XML based protocol.&lt;br /&gt;
The "type" parameter can be one of &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;1.001: switching (on/off) (EIS1) &lt;/li&gt;
&lt;li&gt;3.007: dimming (control of dimmer using up/down/stop) (EIS2) &lt;/li&gt;
&lt;li&gt;3.008: blinds (control of blinds using close/open/stop) &lt;/li&gt;
&lt;li&gt;5.xxx: 8bit unsigned integer (from 0 to 255) (EIS6) &lt;/li&gt;
&lt;li&gt;5.001: scaling (from 0 to 100%) &lt;/li&gt;
&lt;li&gt;5.003: angle (from 0 to 360°) &lt;/li&gt;
&lt;li&gt;6.xxx: 8bit signed integer (EIS14) &lt;/li&gt;
&lt;li&gt;7.xxx: 16bit unsigned integer (EIS10) &lt;/li&gt;
&lt;li&gt;8.xxx: 16bit signed integer &lt;/li&gt;
&lt;li&gt;9.xxx: 16 bit floating point number (EIS5) &lt;/li&gt;
&lt;li&gt;10.001: time (EIS3) &lt;/li&gt;
&lt;li&gt;11.001: date (EIS4) &lt;/li&gt;
&lt;li&gt;12.xxx: 32bit unsigned integer (EIS11) &lt;/li&gt;
&lt;li&gt;13.xxx: 32bit signed integer &lt;/li&gt;
&lt;li&gt;14.xxx: 32 bit IEEE 754 floating point number &lt;/li&gt;
&lt;li&gt;16.000: string (max 14 ASCII char) (EIS15) &lt;/li&gt;
&lt;li&gt;20.102: heating mode (comfort/standby/night/frost) &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It's optional and the default value is 1.001.&lt;br /&gt;
The "flags" parameter is similar to the ETS flags. The value of each flag is represented by a letter:&lt;br /&gt;
c&amp;nbsp;: Communication (allow the object to interact with the KNX bus)&lt;br /&gt;
r&amp;nbsp;: Read (allow the object to answer to a read request from another participant)&lt;br /&gt;
w&amp;nbsp;: Write (update the object's internal value with the one received in write telegram if they are different)&lt;br /&gt;
t&amp;nbsp;: Transmit (allow the object to transmit it's value on the bus if it's modified internally by a rule or via XML protocol)&lt;br /&gt;
u&amp;nbsp;: Update (update the object's internal value with the one received in "read response" telegram if they are different)&lt;br /&gt;
f&amp;nbsp;: Force (force the object value to be transmitted on the bus, even if it didn't change)&lt;br /&gt;
i&amp;nbsp;: Init (useless for the moment. Will perhaps replace the parameter init="request" in the future)&lt;br /&gt;
Each letter appearing inside the value of this parameter means the corresponding flag is set.&lt;br /&gt;
If "flags" is not specified, the default value is "cwtu" (Communication, Write, Transmit and Update) &lt;/p&gt;
&lt;p&gt;The "init" parameter configures the initial object value at application startup. It can be any valid value for the object or one of the special keywords "request" and "persist". "Request" will perform a read operation on the KNX bus when the value is needed for the first time. "persist" will try to load a value from persistant storage (see persistence element in services section). If no "init" parameter is given, the default behavior is "request". &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jef2000</dc:creator><pubDate>Fri, 20 Jun 2014 06:26:39 -0000</pubDate><guid>https://sourceforge.netf11b27a4d4ff6c2909756dc71edb9baa93c4fb91</guid></item></channel></rss>