<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.pimyhome.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sxpert</id>
	<title>piMyHome Project - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.pimyhome.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sxpert"/>
	<link rel="alternate" type="text/html" href="http://www.pimyhome.org/wiki/index.php?title=Special:Contributions/Sxpert"/>
	<updated>2026-09-11T19:29:28Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.33.0</generator>
	<entry>
		<id>http://www.pimyhome.org/wiki/index.php?title=OWN_OpenWebNet_Language_Reference&amp;diff=498</id>
		<title>OWN OpenWebNet Language Reference</title>
		<link rel="alternate" type="text/html" href="http://www.pimyhome.org/wiki/index.php?title=OWN_OpenWebNet_Language_Reference&amp;diff=498"/>
		<updated>2018-05-14T14:08:11Z</updated>

		<summary type="html">&lt;p&gt;Sxpert: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [http://en.wikipedia.org/wiki/OpenWebNet OpenWebNet protocol] was defined in 2000 by [http://www.myopen-legrandgroup.com Bticino/Legrand] to specify the communication with a Bticino home automation gateway, connected via LAN, RS-232 (serial) or USB. Here you'll get a brief overview of the OWN language syntax. To watch the OWN messages of your Bticino gateway, you should try the [[Code_Snippets#A_Python_Monitor_Session_with_Bticino_Gateway|Python Monitor]] in our [[Code Snippets]] section.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Basic Syntax Rules ==&lt;br /&gt;
A Bticino gateway sends and receives '''''messages'''''. &lt;br /&gt;
* a message begins with an asterisk ('''*''') and is terminated with a double hash ('''##'''). &lt;br /&gt;
* each message contains fields separated by an asterisk ('''*'''). &lt;br /&gt;
* a field can contain dimensions and values separated by an asterisk ('''*''') and/or a hash ('''#''')&lt;br /&gt;
&lt;br /&gt;
Example: &amp;lt;code&amp;gt;'''*field1*field2#dim1#value1*field3...fieldN##'''&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====The OWN message syntax====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Message Type&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Message&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Note&lt;br /&gt;
|-&lt;br /&gt;
|ACK&lt;br /&gt;
|&amp;lt;tt&amp;gt;*#*1##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Message accepted/understood&lt;br /&gt;
|-&lt;br /&gt;
|NACK&lt;br /&gt;
|&amp;lt;tt&amp;gt;*#*0##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Message not accepted/understood&lt;br /&gt;
|-&lt;br /&gt;
|Standard&lt;br /&gt;
|&amp;lt;tt&amp;gt;*WHO*WHAT*WHERE##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Standard message&lt;br /&gt;
|-&lt;br /&gt;
|Status Request&lt;br /&gt;
|&amp;lt;tt&amp;gt;*#WHO*WHERE##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Request a state (e.g. if a light is ON or OFF)&lt;br /&gt;
|-&lt;br /&gt;
|Dimension Request&lt;br /&gt;
|&amp;lt;tt&amp;gt;*#WHO*WHERE*DIMENSION##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Request dimension value&lt;br /&gt;
|-&lt;br /&gt;
|Dimension Write&lt;br /&gt;
|&amp;lt;tt&amp;gt;*#WHO*WHERE*#DIMENSION*VAL1*VAL2*...*VALn##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Write dimension value(s)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
We know already that a standard message consists of &amp;lt;code&amp;gt;''' *WHO*WHAT*WHERE##'''&amp;lt;/code&amp;gt;.&lt;br /&gt;
* &amp;lt;tt&amp;gt;'''WHO'''&amp;lt;/tt&amp;gt; identifies the service, such as scenario, light or automation. See WHO table below.&lt;br /&gt;
* &amp;lt;tt&amp;gt;'''WHAT'''&amp;lt;/tt&amp;gt; is the action to be performed, such as light ON/OFF or dimmer, shutter up/down etc.&lt;br /&gt;
* &amp;lt;tt&amp;gt;'''WHERE'''&amp;lt;/tt&amp;gt; identifies the object, which can be an area, group, an environment, or just a single light or shutter etc. Check out the WHERE table below.&lt;br /&gt;
* &amp;lt;tt&amp;gt;'''##'''&amp;lt;/tt&amp;gt; terminates a message. Larger facilities might have extension interfaces. Addresses connected to on one of these extension interfaces have the prefix '''&amp;lt;tt&amp;gt;&amp;quot;#4#nn&amp;lt;/tt&amp;gt;''', where '''&amp;lt;tt&amp;gt;nn&amp;lt;/tt&amp;gt;''' reflects the 2-digit value of the extension interface number.  So a message with an address on interface 7 is terminated with a '''&amp;lt;tt&amp;gt;&amp;quot;#4#07##&amp;lt;/tt&amp;gt;'''.&lt;br /&gt;
&lt;br /&gt;
==== Some Examples ====&lt;br /&gt;
'''&amp;lt;pre&amp;gt;&lt;br /&gt;
*1*0*25##           Turn off light 2.5 on local interface &lt;br /&gt;
 | | |&lt;br /&gt;
 | | +- light address 25&lt;br /&gt;
 | +- 0=OFF&lt;br /&gt;
 +- WHO=1 lighting&lt;br /&gt;
&lt;br /&gt;
*0*13*19#4#06##     Launch scenario 13 of scenario list 19 on interface 6&lt;br /&gt;
 | |  | |&lt;br /&gt;
 | |  | +- #4#06 = interface 6&lt;br /&gt;
 | |  +- 19 = address of scenario list&lt;br /&gt;
 | +- scenario #13 &lt;br /&gt;
 +- WHO=0 scenarios&lt;br /&gt;
&lt;br /&gt;
*1*1*47#4#01##      Turn on light 4.7 on interface 1 (#4#01)&lt;br /&gt;
*1*1*0415##         Turn on light 4.15 on local interface&lt;br /&gt;
*1*0*0##            Turn off all lights on local interface&lt;br /&gt;
*2*1*91#4#03##      open (1) shutter 9.1 in on interface 3 (#4#03)&lt;br /&gt;
*#4*#1*#14*0225*3## Set heating zone 1 manually ON to 22.5°C&lt;br /&gt;
&amp;lt;/pre&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
== WHERE Table ==&lt;br /&gt;
The WHERE field identifies the object, which can be an area, group, an environment, or just a single light or shutter etc. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| WHERE&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Address&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Info&lt;br /&gt;
|-&lt;br /&gt;
|0&lt;br /&gt;
|General &lt;br /&gt;
|The whole system, be careful! &lt;br /&gt;
|-&lt;br /&gt;
|1..9&lt;br /&gt;
|Environment 1 to 9&lt;br /&gt;
|Can be a zone or a room&lt;br /&gt;
|-&lt;br /&gt;
|11..99&lt;br /&gt;
|Light point 1.1 to 9.9&lt;br /&gt;
|Single addresses&lt;br /&gt;
|-&lt;br /&gt;
|0110..0915&lt;br /&gt;
|Light point 1.10 to 9.15&lt;br /&gt;
|Extended addresses on newer gateways&lt;br /&gt;
|-&lt;br /&gt;
|#1..#9&lt;br /&gt;
|Group 1 to 9&lt;br /&gt;
|A set of single addresses&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* A WHERE field can also come with optional parameters, separated by a hash (&amp;lt;tt&amp;gt;#&amp;lt;/tt&amp;gt;), e.g. &amp;lt;tt&amp;gt;*WHERE#PAR1#PAR2#...#PARn&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== WHO Table ==&lt;br /&gt;
&lt;br /&gt;
The WHO value describes the service. Click the service name in table below to get detailed information:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; &lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| WHO&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Service&lt;br /&gt;
|-&lt;br /&gt;
|0&lt;br /&gt;
|[[WHO=0 - Scenarios|Scenarios]]&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|[[WHO=1 - Lighting|Lighting]]&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|[[WHO=2 - Automation|Automation]]&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|[[WHO=3 - Power Management|Power Management]]&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|[[WHO=4 - Heating|Heating]]&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|[[WHO=5 - Burglar Alarm|Burglar Alarm]]&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|[[WHO=6 - Door Entry System|Door Entry System]]&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|[[WHO=7 - Multimedia|Multimedia]]&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|[[WHO=9 - Auxiliary|Auxiliary]]&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|[[WHO=13 - Device Communication|Device Communication]]&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|[[WHO=14 - Light+shutters actuators lock|Light+shutters actuators lock]]&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|[[WHO=15 - CEN]]&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|[[WHO=16 - Sound System|Sound System]]&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|[[WHO=17 - Scenario Programming|Scenario Programming]]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|[[WHO=18 - Energy Management|Energy Management]]&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|[[WHO=24 - Lighting Management|Lighting Management]]&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|[[WHO=25 - CEN plus]]&lt;br /&gt;
|-&lt;br /&gt;
|1000&lt;br /&gt;
|[[WHO=1000 - Diagnostic|Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1001&lt;br /&gt;
|[[WHO=1001 - Automation Diagnostic|Automation Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1004&lt;br /&gt;
|[[WHO=1004 - Heating Diagnostic|Heating Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1008&lt;br /&gt;
|[[WHO=1008 - Door Entry System Diagnostic|Door Entry System Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1013&lt;br /&gt;
|[[WHO=1013 - Device Diagnostic|Device Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1018&lt;br /&gt;
|[[WHO=1018 - Energy Management Diagnostic|Energy Management Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1023&lt;br /&gt;
|[[WHO=1023 - Access Control Diagnostic|Access Control Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Those last 2 are used by MHSuite to scan the bus... But I don't have any of those to test, yet&lt;br /&gt;
&lt;br /&gt;
1023 scan request messages don't show up in the monitor (wireshark to the rescue)&lt;/div&gt;</summary>
		<author><name>Sxpert</name></author>
		
	</entry>
	<entry>
		<id>http://www.pimyhome.org/wiki/index.php?title=OWN_OpenWebNet_Language_Reference&amp;diff=497</id>
		<title>OWN OpenWebNet Language Reference</title>
		<link rel="alternate" type="text/html" href="http://www.pimyhome.org/wiki/index.php?title=OWN_OpenWebNet_Language_Reference&amp;diff=497"/>
		<updated>2018-05-14T14:07:06Z</updated>

		<summary type="html">&lt;p&gt;Sxpert: add a couple of WHO&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [http://en.wikipedia.org/wiki/OpenWebNet OpenWebNet protocol] was defined in 2000 by [http://www.myopen-legrandgroup.com Bticino/Legrand] to specify the communication with a Bticino home automation gateway, connected via LAN, RS-232 (serial) or USB. Here you'll get a brief overview of the OWN language syntax. To watch the OWN messages of your Bticino gateway, you should try the [[Code_Snippets#A_Python_Monitor_Session_with_Bticino_Gateway|Python Monitor]] in our [[Code Snippets]] section.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Basic Syntax Rules ==&lt;br /&gt;
A Bticino gateway sends and receives '''''messages'''''. &lt;br /&gt;
* a message begins with an asterisk ('''*''') and is terminated with a double hash ('''##'''). &lt;br /&gt;
* each message contains fields separated by an asterisk ('''*'''). &lt;br /&gt;
* a field can contain dimensions and values separated by an asterisk ('''*''') and/or a hash ('''#''')&lt;br /&gt;
&lt;br /&gt;
Example: &amp;lt;code&amp;gt;'''*field1*field2#dim1#value1*field3...fieldN##'''&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====The OWN message syntax====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Message Type&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Message&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Note&lt;br /&gt;
|-&lt;br /&gt;
|ACK&lt;br /&gt;
|&amp;lt;tt&amp;gt;*#*1##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Message accepted/understood&lt;br /&gt;
|-&lt;br /&gt;
|NACK&lt;br /&gt;
|&amp;lt;tt&amp;gt;*#*0##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Message not accepted/understood&lt;br /&gt;
|-&lt;br /&gt;
|Standard&lt;br /&gt;
|&amp;lt;tt&amp;gt;*WHO*WHAT*WHERE##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Standard message&lt;br /&gt;
|-&lt;br /&gt;
|Status Request&lt;br /&gt;
|&amp;lt;tt&amp;gt;*#WHO*WHERE##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Request a state (e.g. if a light is ON or OFF)&lt;br /&gt;
|-&lt;br /&gt;
|Dimension Request&lt;br /&gt;
|&amp;lt;tt&amp;gt;*#WHO*WHERE*DIMENSION##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Request dimension value&lt;br /&gt;
|-&lt;br /&gt;
|Dimension Write&lt;br /&gt;
|&amp;lt;tt&amp;gt;*#WHO*WHERE*#DIMENSION*VAL1*VAL2*...*VALn##&amp;lt;/tt&amp;gt;&lt;br /&gt;
|Write dimension value(s)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
We know already that a standard message consists of &amp;lt;code&amp;gt;''' *WHO*WHAT*WHERE##'''&amp;lt;/code&amp;gt;.&lt;br /&gt;
* &amp;lt;tt&amp;gt;'''WHO'''&amp;lt;/tt&amp;gt; identifies the service, such as scenario, light or automation. See WHO table below.&lt;br /&gt;
* &amp;lt;tt&amp;gt;'''WHAT'''&amp;lt;/tt&amp;gt; is the action to be performed, such as light ON/OFF or dimmer, shutter up/down etc.&lt;br /&gt;
* &amp;lt;tt&amp;gt;'''WHERE'''&amp;lt;/tt&amp;gt; identifies the object, which can be an area, group, an environment, or just a single light or shutter etc. Check out the WHERE table below.&lt;br /&gt;
* &amp;lt;tt&amp;gt;'''##'''&amp;lt;/tt&amp;gt; terminates a message. Larger facilities might have extension interfaces. Addresses connected to on one of these extension interfaces have the prefix '''&amp;lt;tt&amp;gt;&amp;quot;#4#nn&amp;lt;/tt&amp;gt;''', where '''&amp;lt;tt&amp;gt;nn&amp;lt;/tt&amp;gt;''' reflects the 2-digit value of the extension interface number.  So a message with an address on interface 7 is terminated with a '''&amp;lt;tt&amp;gt;&amp;quot;#4#07##&amp;lt;/tt&amp;gt;'''.&lt;br /&gt;
&lt;br /&gt;
==== Some Examples ====&lt;br /&gt;
'''&amp;lt;pre&amp;gt;&lt;br /&gt;
*1*0*25##           Turn off light 2.5 on local interface &lt;br /&gt;
 | | |&lt;br /&gt;
 | | +- light address 25&lt;br /&gt;
 | +- 0=OFF&lt;br /&gt;
 +- WHO=1 lighting&lt;br /&gt;
&lt;br /&gt;
*0*13*19#4#06##     Launch scenario 13 of scenario list 19 on interface 6&lt;br /&gt;
 | |  | |&lt;br /&gt;
 | |  | +- #4#06 = interface 6&lt;br /&gt;
 | |  +- 19 = address of scenario list&lt;br /&gt;
 | +- scenario #13 &lt;br /&gt;
 +- WHO=0 scenarios&lt;br /&gt;
&lt;br /&gt;
*1*1*47#4#01##      Turn on light 4.7 on interface 1 (#4#01)&lt;br /&gt;
*1*1*0415##         Turn on light 4.15 on local interface&lt;br /&gt;
*1*0*0##            Turn off all lights on local interface&lt;br /&gt;
*2*1*91#4#03##      open (1) shutter 9.1 in on interface 3 (#4#03)&lt;br /&gt;
*#4*#1*#14*0225*3## Set heating zone 1 manually ON to 22.5°C&lt;br /&gt;
&amp;lt;/pre&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
== WHERE Table ==&lt;br /&gt;
The WHERE field identifies the object, which can be an area, group, an environment, or just a single light or shutter etc. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| WHERE&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Address&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Info&lt;br /&gt;
|-&lt;br /&gt;
|0&lt;br /&gt;
|General &lt;br /&gt;
|The whole system, be careful! &lt;br /&gt;
|-&lt;br /&gt;
|1..9&lt;br /&gt;
|Environment 1 to 9&lt;br /&gt;
|Can be a zone or a room&lt;br /&gt;
|-&lt;br /&gt;
|11..99&lt;br /&gt;
|Light point 1.1 to 9.9&lt;br /&gt;
|Single addresses&lt;br /&gt;
|-&lt;br /&gt;
|0110..0915&lt;br /&gt;
|Light point 1.10 to 9.15&lt;br /&gt;
|Extended addresses on newer gateways&lt;br /&gt;
|-&lt;br /&gt;
|#1..#9&lt;br /&gt;
|Group 1 to 9&lt;br /&gt;
|A set of single addresses&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* A WHERE field can also come with optional parameters, separated by a hash (&amp;lt;tt&amp;gt;#&amp;lt;/tt&amp;gt;), e.g. &amp;lt;tt&amp;gt;*WHERE#PAR1#PAR2#...#PARn&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== WHO Table ==&lt;br /&gt;
&lt;br /&gt;
The WHO value describes the service. Click the service name in table below to get detailed information:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;float:left; &amp;quot;&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| WHO&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| Service&lt;br /&gt;
|-&lt;br /&gt;
|0&lt;br /&gt;
|[[WHO=0 - Scenarios|Scenarios]]&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|[[WHO=1 - Lighting|Lighting]]&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|[[WHO=2 - Automation|Automation]]&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|[[WHO=3 - Power Management|Power Management]]&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|[[WHO=4 - Heating|Heating]]&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|[[WHO=5 - Burglar Alarm|Burglar Alarm]]&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|[[WHO=6 - Door Entry System|Door Entry System]]&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|[[WHO=7 - Multimedia|Multimedia]]&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|[[WHO=9 - Auxiliary|Auxiliary]]&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|[[WHO=13 - Device Communication|Device Communication]]&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|[[WHO=14 - Light+shutters actuators lock|Light+shutters actuators lock]]&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|[[WHO=15 - CEN]]&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|[[WHO=16 - Sound System|Sound System]]&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|[[WHO=17 - Scenario Programming|Scenario Programming]]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|[[WHO=18 - Energy Management|Energy Management]]&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|[[WHO=24 - Lighting Management|Lighting Management]]&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|[[WHO=25 - CEN plus]]&lt;br /&gt;
|-&lt;br /&gt;
|1000&lt;br /&gt;
|[[WHO=1000 - Diagnostic|Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1001&lt;br /&gt;
|[[WHO=1001 - Automation Diagnostic|Automation Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1004&lt;br /&gt;
|[[WHO=1004 - Heating Diagnostic|Heating Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1008&lt;br /&gt;
|[[WHO=1008 - Door Entry System Diagnostic|Door Entry System Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1013&lt;br /&gt;
|[[WHO=1013 - Device Diagnostic|Device Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1018&lt;br /&gt;
|[[WHO=1018 - Energy Management Diagnostic|Energy Management Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|1023&lt;br /&gt;
|[[WHO=1023 - Access Control Diagnostic|Access Control Diagnostic]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Those last 2 are used by MHSuite to scan the bus... But I don't have any of those to test, yet&lt;br /&gt;
&lt;br /&gt;
1023 scan request messages don't show up in the monitor (wireshark to the rescue)&lt;/div&gt;</summary>
		<author><name>Sxpert</name></author>
		
	</entry>
</feed>