<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Comfort Automation/ Security System Forums - KNX (EIB)]]></title>
		<link>https://www.comfortforums.com/</link>
		<description><![CDATA[Comfort Automation/ Security System Forums - https://www.comfortforums.com]]></description>
		<pubDate>Tue, 28 Jul 2026 02:55:44 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[KNX/Logic Example]]></title>
			<link>https://www.comfortforums.com/thread-5431.html</link>
			<pubDate>Sat, 20 May 2023 23:37:52 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=1"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-5431.html</guid>
			<description><![CDATA[This example shows how KNX/Logic can implement Logic conditions with If/Then/Else actions more easily than using other KNX logic products.&nbsp; <br />
This requirement is for a public toilet in a large public building eg Railway or Airport. A KNX Human Presence Counter is installed (eg <a href="https://www.steinel.de/en/sensors-professional/products/products/sensors/presence-detectors/hpd2-033200.html" target="_blank" rel="noopener" class="mycode_url">https://www.steinel.de/en/sensors-profes...33200.html</a> ), to count the number of people in the male and female toilets. The logic required is as in the flowchart below. Basically, the Fan speed is determined by the number of people detected. if the number is &gt;5, the fan speed goes from low to medium, and if &gt;10 the speed goes to High immediately. However if the people counted is less than 9, the fan speed goes from High to Medium after some time eg 15 minutes and if the people detected is less than 5, the fan speed goes from medium to low after eg 15 minutes. The purpose is for&nbsp; energy saving for a facility that is open 24 hours a day 7 days&nbsp; a week. This system is implemented in all the toilets in the facility, thus can result in significant energy saving in the building or buildings.&nbsp; <br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/peopleCounter.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
Another requirement not mentioned above is that the maximum counter of the Male and Female Toilets is used in the logic, so the logic uses the larger number based on the 2 toilets in its determination of fan speed<br />
<br />
In Comfigurator, go Modules Tab &gt; Controller, and the right pane with KNX/Logic Properties. Select KNX &gt; Comfort Tab as shown below. <br />
Add the 3 KNX objects; 1 byte Scaling Values (EIS6).<br />
0/0/2 is the Fan speed.&nbsp; Map to Counter 17<br />
0/0/15 is the 1st Toilet People Count. Map to Counter 15<br />
0/0/16 is the 2nd Toilet People count. Map to Counter 16<br />
<br />
Each KNX object is mapped to a Counter Register in this program. Counters are 16 bit registers in Comfort which hold values and can execute Responses, or Programs based on the counter value. <br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/knxLogicToCounters.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
<br />
In the Counters screen below, each Counter can be assigned to a Response or program in Comfort. This allows the Response to perform logic on the counter based on the Value in the counter. Counters 15 and 16 are both assigned to the same Response. <br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/CountersResponses.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
The Response assigned to the counter is programmed in the Responses Screen (Events &gt; Responses)<br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/CounterResp.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
The Responses consists of Actions, The text of the Response is duplicated below: <br />
<br />
If Counter Counter015 &gt;= 10 Or Counter Counter016 &gt;= 10 Then<br />
&nbsp;&nbsp;&nbsp; Set Counter017(17) = 255<br />
&nbsp;&nbsp;&nbsp; Stop Timer Timer01(1)<br />
&nbsp;&nbsp;&nbsp; Exit Response<br />
Else<br />
&nbsp;&nbsp;&nbsp; Do Medium After 10 Seconds Using Timer01(1)<br />
End If<br />
If Counter Counter015 &gt;= 5 Or Counter Counter016 &gt;= 5 Then<br />
&nbsp;&nbsp;&nbsp; If Counter Counter017 = 255 Then<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do Medium After 10 Seconds Using Timer01(1)<br />
&nbsp;&nbsp;&nbsp; Else<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do Medium<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Stop Timer Timer01(1)<br />
&nbsp;&nbsp;&nbsp; End If<br />
Else<br />
&nbsp;&nbsp;&nbsp; If Counter Counter017 = 255 Then<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do Medium After 10 Seconds Using Timer01(1)<br />
&nbsp;&nbsp;&nbsp; Else<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do LOWFAN After 10 Seconds Using Timer01(1)<br />
&nbsp;&nbsp;&nbsp; End If<br />
End If<br />
<br />
Do Medium means Do the Medium response which sets fan speed to Medium Value. <br />
Do LOWFAN means Do the LOWFAN Response which sets the fan speed to Low. <br />
<br />
Timers (max 32 timers) can also be used to implement delays between actions.&nbsp; <br />
Do LOWFAN After 10 Seconds Using Timer01(1) means delay for 10 seconds then do LOWFAN.. 10 second delay is used for testing so that we do not have to wait so long to test. When testing is completed, the delays can be increased to say 15 minutes. <br />
Stop Timer means stop the timer to prevent the target Response from executing.<br />
<br />
<br />
<br />
]]></description>
			<content:encoded><![CDATA[This example shows how KNX/Logic can implement Logic conditions with If/Then/Else actions more easily than using other KNX logic products.&nbsp; <br />
This requirement is for a public toilet in a large public building eg Railway or Airport. A KNX Human Presence Counter is installed (eg <a href="https://www.steinel.de/en/sensors-professional/products/products/sensors/presence-detectors/hpd2-033200.html" target="_blank" rel="noopener" class="mycode_url">https://www.steinel.de/en/sensors-profes...33200.html</a> ), to count the number of people in the male and female toilets. The logic required is as in the flowchart below. Basically, the Fan speed is determined by the number of people detected. if the number is &gt;5, the fan speed goes from low to medium, and if &gt;10 the speed goes to High immediately. However if the people counted is less than 9, the fan speed goes from High to Medium after some time eg 15 minutes and if the people detected is less than 5, the fan speed goes from medium to low after eg 15 minutes. The purpose is for&nbsp; energy saving for a facility that is open 24 hours a day 7 days&nbsp; a week. This system is implemented in all the toilets in the facility, thus can result in significant energy saving in the building or buildings.&nbsp; <br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/peopleCounter.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
Another requirement not mentioned above is that the maximum counter of the Male and Female Toilets is used in the logic, so the logic uses the larger number based on the 2 toilets in its determination of fan speed<br />
<br />
In Comfigurator, go Modules Tab &gt; Controller, and the right pane with KNX/Logic Properties. Select KNX &gt; Comfort Tab as shown below. <br />
Add the 3 KNX objects; 1 byte Scaling Values (EIS6).<br />
0/0/2 is the Fan speed.&nbsp; Map to Counter 17<br />
0/0/15 is the 1st Toilet People Count. Map to Counter 15<br />
0/0/16 is the 2nd Toilet People count. Map to Counter 16<br />
<br />
Each KNX object is mapped to a Counter Register in this program. Counters are 16 bit registers in Comfort which hold values and can execute Responses, or Programs based on the counter value. <br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/knxLogicToCounters.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
<br />
In the Counters screen below, each Counter can be assigned to a Response or program in Comfort. This allows the Response to perform logic on the counter based on the Value in the counter. Counters 15 and 16 are both assigned to the same Response. <br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/CountersResponses.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
The Response assigned to the counter is programmed in the Responses Screen (Events &gt; Responses)<br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/CounterResp.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
The Responses consists of Actions, The text of the Response is duplicated below: <br />
<br />
If Counter Counter015 &gt;= 10 Or Counter Counter016 &gt;= 10 Then<br />
&nbsp;&nbsp;&nbsp; Set Counter017(17) = 255<br />
&nbsp;&nbsp;&nbsp; Stop Timer Timer01(1)<br />
&nbsp;&nbsp;&nbsp; Exit Response<br />
Else<br />
&nbsp;&nbsp;&nbsp; Do Medium After 10 Seconds Using Timer01(1)<br />
End If<br />
If Counter Counter015 &gt;= 5 Or Counter Counter016 &gt;= 5 Then<br />
&nbsp;&nbsp;&nbsp; If Counter Counter017 = 255 Then<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do Medium After 10 Seconds Using Timer01(1)<br />
&nbsp;&nbsp;&nbsp; Else<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do Medium<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Stop Timer Timer01(1)<br />
&nbsp;&nbsp;&nbsp; End If<br />
Else<br />
&nbsp;&nbsp;&nbsp; If Counter Counter017 = 255 Then<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do Medium After 10 Seconds Using Timer01(1)<br />
&nbsp;&nbsp;&nbsp; Else<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do LOWFAN After 10 Seconds Using Timer01(1)<br />
&nbsp;&nbsp;&nbsp; End If<br />
End If<br />
<br />
Do Medium means Do the Medium response which sets fan speed to Medium Value. <br />
Do LOWFAN means Do the LOWFAN Response which sets the fan speed to Low. <br />
<br />
Timers (max 32 timers) can also be used to implement delays between actions.&nbsp; <br />
Do LOWFAN After 10 Seconds Using Timer01(1) means delay for 10 seconds then do LOWFAN.. 10 second delay is used for testing so that we do not have to wait so long to test. When testing is completed, the delays can be increased to say 15 minutes. <br />
Stop Timer means stop the timer to prevent the target Response from executing.<br />
<br />
<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Sample ucm/KNX  file]]></title>
			<link>https://www.comfortforums.com/thread-5384.html</link>
			<pubDate>Tue, 12 Jul 2022 02:42:30 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=1"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-5384.html</guid>
			<description><![CDATA[This is a very simple cclx file with KNX, see alarms to KNX and KMX to comfort acting as keypad keys<br />
<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.comfortforums.com/images/attachtypes/" title="cclx" border="0" alt=".cclx" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2142" target="_blank" title="">knxsample.cclx</a> (Size: 373.28 KB / Downloads: 3)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[This is a very simple cclx file with KNX, see alarms to KNX and KMX to comfort acting as keypad keys<br />
<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.comfortforums.com/images/attachtypes/" title="cclx" border="0" alt=".cclx" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2142" target="_blank" title="">knxsample.cclx</a> (Size: 373.28 KB / Downloads: 3)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Invert zone open/closed sent to KNX]]></title>
			<link>https://www.comfortforums.com/thread-5142.html</link>
			<pubDate>Thu, 13 Feb 2020 09:41:58 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=1104"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-5142.html</guid>
			<description><![CDATA[Hi Chiu<br />
currently, when mapping comfort zones to KNX Group Addresses,  0 = Off, 1 = On.<br />
Is it possible, to allow the user to invert the values sent to the bus: 0 = On, 1 = Off ?<br />
Thanks<br />
Massimo]]></description>
			<content:encoded><![CDATA[Hi Chiu<br />
currently, when mapping comfort zones to KNX Group Addresses,  0 = Off, 1 = On.<br />
Is it possible, to allow the user to invert the values sent to the bus: 0 = On, 1 = Off ?<br />
Thanks<br />
Massimo]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KNX/Logic Processor]]></title>
			<link>https://www.comfortforums.com/thread-5036.html</link>
			<pubDate>Sat, 23 Mar 2019 03:11:59 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=1"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-5036.html</guid>
			<description><![CDATA[Cytech is pleased to introduce the KNX/Logic Processor.<br />
 <img src="https://www.cytech.biz/images/big/ucmknx.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
The KNX Logic Processor is an Automation Controller with a KNX Interface which can work with other Cytech interfaces including CBUS, Z-Wave, GSM, Modbus, Velbus, IRIO, HIO Hotel I/O.&nbsp;&nbsp; KNX/Logic is applicable to an automation system which does not require the Comfort Intruder Alarm, but has the same capability of Comfort for Responses, Time Programs, Timers,&nbsp; Counters, Flags, and Sensors. It does not have the Voice recording/playback, voice menu, dial out, and telephone interface of Comfort and does not have any inputs and outputs. <br />
<br />
<span style="font-weight: bold;" class="mycode_b">Key Features</span><ul class="mycode_list"><li>2 way KNX Interface able to send telegrams to KNX and receive from KNX</li>
<li>Scheduling with 32 Time Programs.</li>
<li>KNX buttons can be mapped to Comfort Counters,&nbsp; Flags and sensors, allowing control of non-KNX appliances like air-conditioners and other 3rd party automation systems</li>
<li>Synchronise KNX/Logic real time clock to KNX devices. KNX/Logic&nbsp; has automatic Daylight saving adjustments and Sunrise/Sunset times based on locations. The optional UCM/ETH03 module is synchronised to Internet Time Servers.</li>
<li>Read Temperature and other sensors on the KNX bus or supply temperature readings or setpoints to KNX from Cytech modules like MSM01 Multisensor Module</li>
<li>Functions as a Central Processor/controller for an KNX network which is able to coordinate the functions of all the subsystems including security, lighting, HVAC, and others. KNX/Logic&nbsp; is able to take action based on conditional logic, for example, when&nbsp; the time is between 7 PM and 7 AM, on selected days of week etc</li>
<li>Control&nbsp; KNX devices by Cytech mobile apps (iOS and Android)</li>
<li>Interfaces to other systems eg C-bus, Modbus, etc by Cytechs UCM interface modules</li>
</ul>
 <span style="font-weight: bold;" class="mycode_b">Specifications</span><ul class="mycode_list"><li>UCM size 108 x 88 mm</li>
<li>Direct connection to KNX bus</li>
<li>Power Supply 12V to 15V 1A wallmount universal adaptor 90V to 240VAC with UK, EU or US plug. The KNX Bus is isoolated from KNX/Logic voltages.</li>
<li>Control Menu Ã¢â¬â 8 Control Groups, each with 10 control keys, each control key has 10 Action keys.</li>
<li>512 Responses for custom programming</li>
<li>255 Counters can be mapped to KNX, Cbus, Zwave, IRIO, HIO etc</li>
<li>255 Flags can be mapped to KNX, Cbus, Zwave, IRIO, HIO etc</li>
<li>32 Sensor Registers can be mapped to KNX, Cbus, Zwave, TSM etc</li>
<li>32 Time Programs or Schedules</li>
<li>Sunrise/Sunset times with automatic daylight saving time adjustments</li>
<li>64 Timers for programmed delays 1 to 65534 seconds.</li>
<li>Current Consumption 30 mA @12V</li>
<li>Connected to KNX Bus via bus cable (2 wires). </li>
</ul>
<span style="font-weight: bold;" class="mycode_b">KNX</span><ul class="mycode_list"><li>KNX Physical addresses can be assigned to KNX/Logic, Area 0 to 15, Line 0 to 15, Physical Address 1 to 200</li>
<li>KNX to Comfort allows 256 Group addresses to be mapped to Comfort.</li>
</ul>
KNX/Logic website is here <a href="https://www.cytech.biz/brochure/knx-logic.html" target="_blank" rel="noopener" class="mycode_url">https://www.cytech.biz/brochure/knx-logic.html</a><br />
]]></description>
			<content:encoded><![CDATA[Cytech is pleased to introduce the KNX/Logic Processor.<br />
 <img src="https://www.cytech.biz/images/big/ucmknx.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
The KNX Logic Processor is an Automation Controller with a KNX Interface which can work with other Cytech interfaces including CBUS, Z-Wave, GSM, Modbus, Velbus, IRIO, HIO Hotel I/O.&nbsp;&nbsp; KNX/Logic is applicable to an automation system which does not require the Comfort Intruder Alarm, but has the same capability of Comfort for Responses, Time Programs, Timers,&nbsp; Counters, Flags, and Sensors. It does not have the Voice recording/playback, voice menu, dial out, and telephone interface of Comfort and does not have any inputs and outputs. <br />
<br />
<span style="font-weight: bold;" class="mycode_b">Key Features</span><ul class="mycode_list"><li>2 way KNX Interface able to send telegrams to KNX and receive from KNX</li>
<li>Scheduling with 32 Time Programs.</li>
<li>KNX buttons can be mapped to Comfort Counters,&nbsp; Flags and sensors, allowing control of non-KNX appliances like air-conditioners and other 3rd party automation systems</li>
<li>Synchronise KNX/Logic real time clock to KNX devices. KNX/Logic&nbsp; has automatic Daylight saving adjustments and Sunrise/Sunset times based on locations. The optional UCM/ETH03 module is synchronised to Internet Time Servers.</li>
<li>Read Temperature and other sensors on the KNX bus or supply temperature readings or setpoints to KNX from Cytech modules like MSM01 Multisensor Module</li>
<li>Functions as a Central Processor/controller for an KNX network which is able to coordinate the functions of all the subsystems including security, lighting, HVAC, and others. KNX/Logic&nbsp; is able to take action based on conditional logic, for example, when&nbsp; the time is between 7 PM and 7 AM, on selected days of week etc</li>
<li>Control&nbsp; KNX devices by Cytech mobile apps (iOS and Android)</li>
<li>Interfaces to other systems eg C-bus, Modbus, etc by Cytechs UCM interface modules</li>
</ul>
 <span style="font-weight: bold;" class="mycode_b">Specifications</span><ul class="mycode_list"><li>UCM size 108 x 88 mm</li>
<li>Direct connection to KNX bus</li>
<li>Power Supply 12V to 15V 1A wallmount universal adaptor 90V to 240VAC with UK, EU or US plug. The KNX Bus is isoolated from KNX/Logic voltages.</li>
<li>Control Menu Ã¢â¬â 8 Control Groups, each with 10 control keys, each control key has 10 Action keys.</li>
<li>512 Responses for custom programming</li>
<li>255 Counters can be mapped to KNX, Cbus, Zwave, IRIO, HIO etc</li>
<li>255 Flags can be mapped to KNX, Cbus, Zwave, IRIO, HIO etc</li>
<li>32 Sensor Registers can be mapped to KNX, Cbus, Zwave, TSM etc</li>
<li>32 Time Programs or Schedules</li>
<li>Sunrise/Sunset times with automatic daylight saving time adjustments</li>
<li>64 Timers for programmed delays 1 to 65534 seconds.</li>
<li>Current Consumption 30 mA @12V</li>
<li>Connected to KNX Bus via bus cable (2 wires). </li>
</ul>
<span style="font-weight: bold;" class="mycode_b">KNX</span><ul class="mycode_list"><li>KNX Physical addresses can be assigned to KNX/Logic, Area 0 to 15, Line 0 to 15, Physical Address 1 to 200</li>
<li>KNX to Comfort allows 256 Group addresses to be mapped to Comfort.</li>
</ul>
KNX/Logic website is here <a href="https://www.cytech.biz/brochure/knx-logic.html" target="_blank" rel="noopener" class="mycode_url">https://www.cytech.biz/brochure/knx-logic.html</a><br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Comm failure when configuring 3rd party device on KNX BUS]]></title>
			<link>https://www.comfortforums.com/thread-4960.html</link>
			<pubDate>Mon, 24 Sep 2018 08:58:28 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=41"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-4960.html</guid>
			<description><![CDATA[We have a confusing problem on a couple of sites where a communication failure for KNX UCM occurs each time we update the configuration of a 3rd party device that is also connected to the KNX bus.<br />
<br />
3rd party device is a LOXONE miniserver (I know, don\'t laugh!)<br />
<br />
Every time we update the configuration for that device something triggers a communication failure between Comfort and the KNX UCM.<br />
<br />
I can\'t see anything wrong on the KNX bus (in the ETS group monitor) but the unit does issue quite a few \'read\' telegrams when it boots in order to sync itself to&nbsp; the system.<br />
I can\'t see anything wrong in the monitor of the KNX UCM when we write to the Miniserver.<br />
<br />
The event log in comfort simply logs the communication failure (as one would expect) and not the cause.<br />
<br />
We do however see some items in the UCM IO monitor that I can\'t find any more info about when this happens.<br />
<br />
The serial protocol lists the items as...\"TT - Monitor Data&nbsp;The format depends on the specific UCM Type and is not covered in the general protocol\"<br />
<br />
Is there any info available on the format of this message?<br />
Specifically the following messages...<br />
&lt; TT13BC112F1132E300800C20<br />
&lt; TT13BC1127114EE10081<br />
&lt; TT13BC11121002E10081<br />
&lt; TT13BC110F1006E10081<br />
&lt; TT13BC110F100EE10081<br />
&lt; TT13BC11101007E10081<br />
&lt; TT13BC1110100FE10081<br />
&lt; TT13BC11070A26E10000<br />
&lt; TT139C11070A26E10000<br />
<br />
Also these status messages occur at about the same time as some of&nbsp; the \'TT\' messages and seem to refer to module 15, but I can\'t see this referenced in the serial protocol and can\'t work out which module it would be.<br />
&lt; SS0F000A<br />
&lt; SS0F0000<br />
<br />
are any of these relevant to our problem?]]></description>
			<content:encoded><![CDATA[We have a confusing problem on a couple of sites where a communication failure for KNX UCM occurs each time we update the configuration of a 3rd party device that is also connected to the KNX bus.<br />
<br />
3rd party device is a LOXONE miniserver (I know, don\'t laugh!)<br />
<br />
Every time we update the configuration for that device something triggers a communication failure between Comfort and the KNX UCM.<br />
<br />
I can\'t see anything wrong on the KNX bus (in the ETS group monitor) but the unit does issue quite a few \'read\' telegrams when it boots in order to sync itself to&nbsp; the system.<br />
I can\'t see anything wrong in the monitor of the KNX UCM when we write to the Miniserver.<br />
<br />
The event log in comfort simply logs the communication failure (as one would expect) and not the cause.<br />
<br />
We do however see some items in the UCM IO monitor that I can\'t find any more info about when this happens.<br />
<br />
The serial protocol lists the items as...\"TT - Monitor Data&nbsp;The format depends on the specific UCM Type and is not covered in the general protocol\"<br />
<br />
Is there any info available on the format of this message?<br />
Specifically the following messages...<br />
&lt; TT13BC112F1132E300800C20<br />
&lt; TT13BC1127114EE10081<br />
&lt; TT13BC11121002E10081<br />
&lt; TT13BC110F1006E10081<br />
&lt; TT13BC110F100EE10081<br />
&lt; TT13BC11101007E10081<br />
&lt; TT13BC1110100FE10081<br />
&lt; TT13BC11070A26E10000<br />
&lt; TT139C11070A26E10000<br />
<br />
Also these status messages occur at about the same time as some of&nbsp; the \'TT\' messages and seem to refer to module 15, but I can\'t see this referenced in the serial protocol and can\'t work out which module it would be.<br />
&lt; SS0F000A<br />
&lt; SS0F0000<br />
<br />
are any of these relevant to our problem?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Comfort to KNX website]]></title>
			<link>https://www.comfortforums.com/thread-4803.html</link>
			<pubDate>Sat, 25 Nov 2017 10:37:51 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=606"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-4803.html</guid>
			<description><![CDATA[Check out the new Comfort to KNX page on the all-new Comfort website&nbsp;<a href="https://www.cytech.biz/brochure/comfort-to-knx.html" target="_blank" rel="noopener" class="mycode_url">https://www.cytech.biz/brochure/comfort-to-knx.html</a><br />
<br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/comfortKNXnetwork.html" loading="lazy"  alt="" class="mycode_img" /><img src="https://www.cytech.biz/images/screenshots/KNX/comfortKNXnetwork.jpg" loading="lazy"  alt="" class="mycode_img" /><img src="https://www.cytech.biz/images/screenshots/KNX/comfortKNXnetwork.JPG" loading="lazy"  alt="" class="mycode_img" /><br />
]]></description>
			<content:encoded><![CDATA[Check out the new Comfort to KNX page on the all-new Comfort website&nbsp;<a href="https://www.cytech.biz/brochure/comfort-to-knx.html" target="_blank" rel="noopener" class="mycode_url">https://www.cytech.biz/brochure/comfort-to-knx.html</a><br />
<br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/comfortKNXnetwork.html" loading="lazy"  alt="" class="mycode_img" /><img src="https://www.cytech.biz/images/screenshots/KNX/comfortKNXnetwork.jpg" loading="lazy"  alt="" class="mycode_img" /><img src="https://www.cytech.biz/images/screenshots/KNX/comfortKNXnetwork.JPG" loading="lazy"  alt="" class="mycode_img" /><br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Problems in knx2]]></title>
			<link>https://www.comfortforums.com/thread-4785.html</link>
			<pubDate>Tue, 07 Nov 2017 02:37:28 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=5490"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-4785.html</guid>
			<description><![CDATA[Hi,<br />
Every time i start the configurator with last default file the program reports the following mistake and the software donÃÂ´t start.<br />
<br />
System.NullReferenceException: A referÃÂªncia de objecto nÃÂ£o foi definida como uma instÃÂ¢ncia de um objecto.&nbsp; &nbsp;em Comfort.UcmKnx2ToComfort.get_RegisterName()&nbsp; &nbsp;em Comfort.UcmKnx2ToComfort.AddReferences(Dictionary`2 references, UcmKnx2 ucmKnx2)&nbsp; &nbsp;em Comfort.UcmKnx2.AddReferences(Dictionary`2 references)&nbsp; &nbsp;em Comfort.Configuration.BuildReferences()&nbsp; &nbsp;em Comfort.Configuration.GetReferences(ConfigListItem configListItem)&nbsp; &nbsp;em Comfort.Response.FlagOmittedResponses(Configuration configuration)&nbsp; &nbsp;em Comfort.Response.EncodeResponses(Configuration configuration, Boolean flagRequireWriteToEeprom)&nbsp; &nbsp;em Comfort.Form1.SetNewConfiguration(Configuration newConfiguration, Boolean keepPanel)&nbsp; &nbsp;em Comfort.Form1.NewConfiguration(String filename)&nbsp; &nbsp;em Comfort.Form1..ctor(String filename)&nbsp; &nbsp;em Comfort.Program.Main(String[] arguments)<br />
<br />
My configurator ver is 3.12.1 but i think the problem is with the latest update to knx2 of my knx ucm.<br />
Can someone help me ?<br />
Kind Regards,<br />
<br />
]]></description>
			<content:encoded><![CDATA[Hi,<br />
Every time i start the configurator with last default file the program reports the following mistake and the software donÃÂ´t start.<br />
<br />
System.NullReferenceException: A referÃÂªncia de objecto nÃÂ£o foi definida como uma instÃÂ¢ncia de um objecto.&nbsp; &nbsp;em Comfort.UcmKnx2ToComfort.get_RegisterName()&nbsp; &nbsp;em Comfort.UcmKnx2ToComfort.AddReferences(Dictionary`2 references, UcmKnx2 ucmKnx2)&nbsp; &nbsp;em Comfort.UcmKnx2.AddReferences(Dictionary`2 references)&nbsp; &nbsp;em Comfort.Configuration.BuildReferences()&nbsp; &nbsp;em Comfort.Configuration.GetReferences(ConfigListItem configListItem)&nbsp; &nbsp;em Comfort.Response.FlagOmittedResponses(Configuration configuration)&nbsp; &nbsp;em Comfort.Response.EncodeResponses(Configuration configuration, Boolean flagRequireWriteToEeprom)&nbsp; &nbsp;em Comfort.Form1.SetNewConfiguration(Configuration newConfiguration, Boolean keepPanel)&nbsp; &nbsp;em Comfort.Form1.NewConfiguration(String filename)&nbsp; &nbsp;em Comfort.Form1..ctor(String filename)&nbsp; &nbsp;em Comfort.Program.Main(String[] arguments)<br />
<br />
My configurator ver is 3.12.1 but i think the problem is with the latest update to knx2 of my knx ucm.<br />
Can someone help me ?<br />
Kind Regards,<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Selectively report Zone Status to KNX bus]]></title>
			<link>https://www.comfortforums.com/thread-4693.html</link>
			<pubDate>Tue, 06 Jun 2017 12:49:27 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=3395"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-4693.html</guid>
			<description><![CDATA[Hello<br />
<br />
I have 21 motion detectors connected to Comfort and during normal house activity it causes a lot of traffic on the KNX bus and delays on the transmission of information from Comfort to KNX.<br />
I would like to skip the sending, from Comfort to KNX, of the status report for the motion sensors but still receive information of the non-motion sensor zones.<br />
Is there a way to selectively report zone status to KNX bus ?<br />
<br />
( by the way in the \'UCM/KNX2 - Comfort to KNX Interface\'&nbsp; pdf manual in page 27 it is referred \"In the screen shot above, the zone status is assigned to Group address 0/1/1.\" but there is no such screenshot . Please correct manual)<br />
<br />
Regards<br />
Eurico<br />
]]></description>
			<content:encoded><![CDATA[Hello<br />
<br />
I have 21 motion detectors connected to Comfort and during normal house activity it causes a lot of traffic on the KNX bus and delays on the transmission of information from Comfort to KNX.<br />
I would like to skip the sending, from Comfort to KNX, of the status report for the motion sensors but still receive information of the non-motion sensor zones.<br />
Is there a way to selectively report zone status to KNX bus ?<br />
<br />
( by the way in the \'UCM/KNX2 - Comfort to KNX Interface\'&nbsp; pdf manual in page 27 it is referred \"In the screen shot above, the zone status is assigned to Group address 0/1/1.\" but there is no such screenshot . Please correct manual)<br />
<br />
Regards<br />
Eurico<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Temperature from KNX]]></title>
			<link>https://www.comfortforums.com/thread-4542.html</link>
			<pubDate>Thu, 20 Oct 2016 10:25:12 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=5490"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-4542.html</guid>
			<description><![CDATA[Hi,<br />
I am a user from Portugal and I have a problem in the KNX module when receiving temperatures from knx in celciuos. I assign a 2 byte object in knx and put it in a sensor, but the temperature values lost the decimal values in cytech. For example, 21.60ÃÂºC appears as 22 in cytech. Is there any way to keep the values with the decimal part?<br />
Thanks,]]></description>
			<content:encoded><![CDATA[Hi,<br />
I am a user from Portugal and I have a problem in the KNX module when receiving temperatures from knx in celciuos. I assign a 2 byte object in knx and put it in a sensor, but the temperature values lost the decimal values in cytech. For example, 21.60ÃÂºC appears as 22 in cytech. Is there any way to keep the values with the decimal part?<br />
Thanks,]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[UCM/KNX2]]></title>
			<link>https://www.comfortforums.com/thread-4470.html</link>
			<pubDate>Sat, 18 Jun 2016 08:51:53 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=1"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-4470.html</guid>
			<description><![CDATA[The 3rd generation KNX Interface is called UCM/KNX2 (after UCM/EIB and UCM/KNX)<br />
see webpage&nbsp;<a href="https://www.cytech.biz/brochure/comfort-to-knx.html" target="_blank" rel="noopener" class="mycode_url">https://www.cytech.biz/brochure/comfort-to-knx.html</a><br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/comfortKNXnetwork.JPG" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
The main improvements over UCM/KNX2 are;<br />
<ol type="1" class="mycode_list"><li>Improved Mapping of KNX to Comfort objects (see below). Separate mapping for KNX to Comfort registers and Comfort&nbsp; registers to KNX support KNX objects having different control and feedback addresses.</li>
<li>Comfort Inputs/Zones can be mapped to KNX 1-bit objects so Comfort Input changes (On/Off) can provide feedback for KNX, for example for status of Airconditioners by Current sensor. A different KNX address can be mapped to Output or Counter to control the Airconditioner or appliance. In the UCM/KNX, Zone Responses were needed to send status to KNX.</li>
<li>Comfort Outputs can be mapped to KNX&nbsp; so that Output On/Off changes can be mapped to KNX 1-bit objects. A different KNX address can be mapped to the same Output. This allows different KNX control group address and Status group address for output control</li>
<li>Flags to KNX allow Comfort Flags to be mapped to KNX 1-bit objects. A different KNX address can be mapped to the same flag in KNX to Comfort. This allows different KNX control group address and Status group address. Flags can be used to control other devices in Comfort which act on the same flag.</li>
<li>Counters to KNX (1-bit) allow Comfort Counters to be mapped to KNX 1-bit objects to send On/off command or status.&nbsp; Counters to KNX (1-byte) allow Comfort Counters to be mapped to KNX 1-byte objects to send levels.&nbsp; Different KNX addresses can be mapped to the same Counter in KNX to Comfort. For example, a KNX 1-bit address can be mapped to a Comfort Counter. The same KNX device can send a 1 byte value which is&nbsp; mapped to the same Comfort Counter as dimming level, as well as map a 4-bit group address to the same counter for relative dimming. The Comfort counter can be mapped to a 1-bit KNX address for on/off feedback as well as to a KNX 1 byte address for absolute dim level.</li>
<li>Sensors to KNX allow Comfort sensors to be mapped to KNX 2-byte Floating Point objects.</li>
<li>With the enhanced mapping of Comfort Registers to KNX, it should not be necessary to use Responses to send commands to KNX, although this is stil possible. This simplfies&nbsp; programming and saves tim</li>
<li>easier entry of KNX addresses, by just typing the address eg 1/2/3 instead of selecting Main. mid, and subgroup addresses from pulldown lists. Comfigurator will check that the group address is unique</li>
<li>Disarm to Security Off by 1 bit KNX address is possible. This should be applied to specific KNX scenes or situations and not as a general button, for security reasons<br />
</li>
</ol>
<span style="font-weight: bold;" class="mycode_b">Mapping of KNX to Comfort</span><br />
Mapping of KNX Objects include 1-bit, 4-bit, 1-byte, Time, Date, 2-Byte Floating Point, 2 Byte Counter. <br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/knxtocomfort.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">KNX 1-bit (EIS1)</span><br />
Map to Counters, Flags, Outputs, Output Pulse, Output Toggle, Virtual Input, Arm Security (Security Off,&nbsp; Away, Night, Day, Vacation), Bypass zone, Panic<br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/1-bit.jpg" loading="lazy"  alt="" class="mycode_img" /><ul class="mycode_list"><li>Mapping to Output means that a KNX 1-bit address turns on and off any Comfort output directly</li>
<li>Mapping to Output Toggle&nbsp; will toggle the output</li>
<li>Mapping to Output Pulse sends a 1 second pulse to the output</li>
<li>Mapping to Flag allows a 1-bit KNX address to be mapped to a flag so that changing the KNX state causes the flag to change state accordingly. In the reverse direction, Flags to KNX allows flags states to change KNX 1 bit group addresses.</li>
<li>Mapping to Virtual Input means the KNX object eg motion sensor can act like a real Input to the security system, according to Zone Types and will trigger the zone Response</li>
<li>Mapping to Arm Security allows the KNX object to Arm the security sysyetm to Away, Night, Day, Vacation. Disarm to Security Odd is not allowed, althoughh it is listed in the options</li>
<li>Mapping to Bypass zone means the KNX object can bypass and unbypass any Alarm Zone.</li>
<li>Mapping to Panic means the KNX Object can trigger a Panic Alarm when pressed<br />
</li>
</ul>
 <br />
<span style="font-weight: bold;" class="mycode_b">KNX 4-bit (EIS2)</span><br />
4-bit relative values&nbsp; can be mapped to Comfort Counters. The counter value is calculated based on the relative change<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/4-bit.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">KNX 1-byte (EIS6)</span><br />
1-byte Objects (EIS6) can be mapped to Comfort Counters and Keypad Key. Mapping to Keypad Key allows a virtual keypad on a KNX touchscreen to arm or disarm the security system.<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/1-byte.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">KNX 2-byte Floating Point (EIS5)</span><br />
2-byte Floating Point Objects (EIS5) can be mapped to Comfort Sensors<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/eis5.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">KNX 2-byte Counters (EIS10)</span><br />
2 byte Counter Objects (EIS10) are mapped to Comfort Counters.<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/eis10.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Mapping of Comfort to KNX</span><br />
New tabs Alarm to KNX, Inputs to KNX, Outputs to KNX, Flags to KNX, Sensors to KNX, Counters to KNX (1-bit), Counters to KNX (1-byte) allow mapping of Comfort registers to KNX to provide Control and Status feedback to KNX<br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/knxscreen.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
In Monitor Mode, the meaning of the telegrams from KNX are shown<br />
<img src="https://www.cytech.biz/images/screenshots/CF/knxMonitorMode.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
]]></description>
			<content:encoded><![CDATA[The 3rd generation KNX Interface is called UCM/KNX2 (after UCM/EIB and UCM/KNX)<br />
see webpage&nbsp;<a href="https://www.cytech.biz/brochure/comfort-to-knx.html" target="_blank" rel="noopener" class="mycode_url">https://www.cytech.biz/brochure/comfort-to-knx.html</a><br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/comfortKNXnetwork.JPG" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
The main improvements over UCM/KNX2 are;<br />
<ol type="1" class="mycode_list"><li>Improved Mapping of KNX to Comfort objects (see below). Separate mapping for KNX to Comfort registers and Comfort&nbsp; registers to KNX support KNX objects having different control and feedback addresses.</li>
<li>Comfort Inputs/Zones can be mapped to KNX 1-bit objects so Comfort Input changes (On/Off) can provide feedback for KNX, for example for status of Airconditioners by Current sensor. A different KNX address can be mapped to Output or Counter to control the Airconditioner or appliance. In the UCM/KNX, Zone Responses were needed to send status to KNX.</li>
<li>Comfort Outputs can be mapped to KNX&nbsp; so that Output On/Off changes can be mapped to KNX 1-bit objects. A different KNX address can be mapped to the same Output. This allows different KNX control group address and Status group address for output control</li>
<li>Flags to KNX allow Comfort Flags to be mapped to KNX 1-bit objects. A different KNX address can be mapped to the same flag in KNX to Comfort. This allows different KNX control group address and Status group address. Flags can be used to control other devices in Comfort which act on the same flag.</li>
<li>Counters to KNX (1-bit) allow Comfort Counters to be mapped to KNX 1-bit objects to send On/off command or status.&nbsp; Counters to KNX (1-byte) allow Comfort Counters to be mapped to KNX 1-byte objects to send levels.&nbsp; Different KNX addresses can be mapped to the same Counter in KNX to Comfort. For example, a KNX 1-bit address can be mapped to a Comfort Counter. The same KNX device can send a 1 byte value which is&nbsp; mapped to the same Comfort Counter as dimming level, as well as map a 4-bit group address to the same counter for relative dimming. The Comfort counter can be mapped to a 1-bit KNX address for on/off feedback as well as to a KNX 1 byte address for absolute dim level.</li>
<li>Sensors to KNX allow Comfort sensors to be mapped to KNX 2-byte Floating Point objects.</li>
<li>With the enhanced mapping of Comfort Registers to KNX, it should not be necessary to use Responses to send commands to KNX, although this is stil possible. This simplfies&nbsp; programming and saves tim</li>
<li>easier entry of KNX addresses, by just typing the address eg 1/2/3 instead of selecting Main. mid, and subgroup addresses from pulldown lists. Comfigurator will check that the group address is unique</li>
<li>Disarm to Security Off by 1 bit KNX address is possible. This should be applied to specific KNX scenes or situations and not as a general button, for security reasons<br />
</li>
</ol>
<span style="font-weight: bold;" class="mycode_b">Mapping of KNX to Comfort</span><br />
Mapping of KNX Objects include 1-bit, 4-bit, 1-byte, Time, Date, 2-Byte Floating Point, 2 Byte Counter. <br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/knxtocomfort.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">KNX 1-bit (EIS1)</span><br />
Map to Counters, Flags, Outputs, Output Pulse, Output Toggle, Virtual Input, Arm Security (Security Off,&nbsp; Away, Night, Day, Vacation), Bypass zone, Panic<br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/1-bit.jpg" loading="lazy"  alt="" class="mycode_img" /><ul class="mycode_list"><li>Mapping to Output means that a KNX 1-bit address turns on and off any Comfort output directly</li>
<li>Mapping to Output Toggle&nbsp; will toggle the output</li>
<li>Mapping to Output Pulse sends a 1 second pulse to the output</li>
<li>Mapping to Flag allows a 1-bit KNX address to be mapped to a flag so that changing the KNX state causes the flag to change state accordingly. In the reverse direction, Flags to KNX allows flags states to change KNX 1 bit group addresses.</li>
<li>Mapping to Virtual Input means the KNX object eg motion sensor can act like a real Input to the security system, according to Zone Types and will trigger the zone Response</li>
<li>Mapping to Arm Security allows the KNX object to Arm the security sysyetm to Away, Night, Day, Vacation. Disarm to Security Odd is not allowed, althoughh it is listed in the options</li>
<li>Mapping to Bypass zone means the KNX object can bypass and unbypass any Alarm Zone.</li>
<li>Mapping to Panic means the KNX Object can trigger a Panic Alarm when pressed<br />
</li>
</ul>
 <br />
<span style="font-weight: bold;" class="mycode_b">KNX 4-bit (EIS2)</span><br />
4-bit relative values&nbsp; can be mapped to Comfort Counters. The counter value is calculated based on the relative change<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/4-bit.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">KNX 1-byte (EIS6)</span><br />
1-byte Objects (EIS6) can be mapped to Comfort Counters and Keypad Key. Mapping to Keypad Key allows a virtual keypad on a KNX touchscreen to arm or disarm the security system.<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/1-byte.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">KNX 2-byte Floating Point (EIS5)</span><br />
2-byte Floating Point Objects (EIS5) can be mapped to Comfort Sensors<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/eis5.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">KNX 2-byte Counters (EIS10)</span><br />
2 byte Counter Objects (EIS10) are mapped to Comfort Counters.<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/eis10.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Mapping of Comfort to KNX</span><br />
New tabs Alarm to KNX, Inputs to KNX, Outputs to KNX, Flags to KNX, Sensors to KNX, Counters to KNX (1-bit), Counters to KNX (1-byte) allow mapping of Comfort registers to KNX to provide Control and Status feedback to KNX<br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/knxscreen.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
In Monitor Mode, the meaning of the telegrams from KNX are shown<br />
<img src="https://www.cytech.biz/images/screenshots/CF/knxMonitorMode.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Cytech at BEX Asia with KNX South East Asia]]></title>
			<link>https://www.comfortforums.com/thread-4323.html</link>
			<pubDate>Tue, 15 Sep 2015 10:05:00 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=1"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-4323.html</guid>
			<description><![CDATA[Cytech was part of the KNX exhibit at BEX Asia 2015 at Marina Bay Sands<br />
<br />
see <a href="https://www.facebook.com/CytechComfort/posts/10153067848412401" target="_blank" rel="noopener" class="mycode_url">https://www.facebook.com/CytechComfort/p...7848412401</a><br />
]]></description>
			<content:encoded><![CDATA[Cytech was part of the KNX exhibit at BEX Asia 2015 at Marina Bay Sands<br />
<br />
see <a href="https://www.facebook.com/CytechComfort/posts/10153067848412401" target="_blank" rel="noopener" class="mycode_url">https://www.facebook.com/CytechComfort/p...7848412401</a><br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KNX Test Buttons]]></title>
			<link>https://www.comfortforums.com/thread-4235.html</link>
			<pubDate>Sat, 20 Jun 2015 08:37:35 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=1"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-4235.html</guid>
			<description><![CDATA[In the KNX configurator screen, after adding or learning KNX addresses, select the KNX group address in the centre pane, and press the [color=\"#ff0000\"]Switch Device ON[/color] or [color=\"#ff0000\"]Switch Device Off[/color] buttons (on the right pane) to test the KNX address.<br />
<br />
This should switch on or off the&nbsp; KNX device. It is not necessary to WRITE to EEPROM for the UCM/KNX to use the test buttons. See the screenshot below<br />
<br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/knxTestButtons.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
<br />
However, there is a BUG in Comfigurator up to 3.10.4 - The Test buttons do not work for KNX group addresses 1/7/X (where X is the subgroup). This is a problem for the test buttons only, but the actions to send a command to control 1/7/X will work<br />
]]></description>
			<content:encoded><![CDATA[In the KNX configurator screen, after adding or learning KNX addresses, select the KNX group address in the centre pane, and press the [color=\"#ff0000\"]Switch Device ON[/color] or [color=\"#ff0000\"]Switch Device Off[/color] buttons (on the right pane) to test the KNX address.<br />
<br />
This should switch on or off the&nbsp; KNX device. It is not necessary to WRITE to EEPROM for the UCM/KNX to use the test buttons. See the screenshot below<br />
<br />
<br />
<img src="https://www.cytech.biz/images/screenshots/KNX/knxTestButtons.jpg" loading="lazy"  alt="" class="mycode_img" /><br />
<br />
<br />
<br />
However, there is a BUG in Comfigurator up to 3.10.4 - The Test buttons do not work for KNX group addresses 1/7/X (where X is the subgroup). This is a problem for the test buttons only, but the actions to send a command to control 1/7/X will work<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Save status of knx GA and resend it to bus after 1 minute of 230V return]]></title>
			<link>https://www.comfortforums.com/thread-4183.html</link>
			<pubDate>Fri, 17 Apr 2015 11:23:36 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=46"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-4183.html</guid>
			<description><![CDATA[Hi!We have a project where we need the values of certain group addresses to be restored 1 minute after a power failure. That would be very easy with a response \"after power return\", but we have an equipment in the bus that when the power fails, sends a reset to those GA.With this in mind, we need to know if Comfort can save these variables before power failure to counters, and doesn\'t allow any writings in these counters during the first minute of power return. Afterwards we would make a response for power return in order to write in knx the saved status of the counters.<br />
]]></description>
			<content:encoded><![CDATA[Hi!We have a project where we need the values of certain group addresses to be restored 1 minute after a power failure. That would be very easy with a response \"after power return\", but we have an equipment in the bus that when the power fails, sends a reset to those GA.With this in mind, we need to know if Comfort can save these variables before power failure to counters, and doesn\'t allow any writings in these counters during the first minute of power return. Afterwards we would make a response for power return in order to write in knx the saved status of the counters.<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Example: file *.cclx for UCM/KNX]]></title>
			<link>https://www.comfortforums.com/thread-4021.html</link>
			<pubDate>Fri, 24 Oct 2014 16:16:40 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=5290"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-4021.html</guid>
			<description><![CDATA[Hi all,I\'m a newcomer and i\'m finding out UCM/KNX, can you give me a program complete for UCM/KNX?Thanks!]]></description>
			<content:encoded><![CDATA[Hi all,I\'m a newcomer and i\'m finding out UCM/KNX, can you give me a program complete for UCM/KNX?Thanks!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[responses linked to knx]]></title>
			<link>https://www.comfortforums.com/thread-3995.html</link>
			<pubDate>Tue, 07 Oct 2014 11:06:55 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.comfortforums.com/member.php?action=profile&uid=5167"></a>]]></dc:creator>
			<guid isPermaLink="false">https://www.comfortforums.com/thread-3995.html</guid>
			<description><![CDATA[Hi all,<br />
<br />
I want to get a response from a zone input to send cyclically, the response is linked to a 1 bit on / off knx group address.<br />
<br />
Please help<img src="https://www.comfortforums.com/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
]]></description>
			<content:encoded><![CDATA[Hi all,<br />
<br />
I want to get a response from a zone input to send cyclically, the response is linked to a 1 bit on / off knx group address.<br />
<br />
Please help<img src="https://www.comfortforums.com/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
]]></content:encoded>
		</item>
	</channel>
</rss>