<?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[Smart Home Automation Forum - "KCS" v3 firmware]]></title>
		<link>https://www.kincony.com/forum/</link>
		<description><![CDATA[Smart Home Automation Forum - https://www.kincony.com/forum]]></description>
		<pubDate>Sat, 25 Apr 2026 12:14:41 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[KC868-A16-V3.1 MODBUS RS485]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9284</link>
			<pubDate>Mon, 20 Apr 2026 18:32:34 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=10757">dponyatov</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9284</guid>
			<description><![CDATA[this command work ok:<br />
01 05 00 00 ff 00 8c 3a<br />
<br />
but read coil report 07 coils enabled (shifted)<br />
<br />
coil write from 08 coil and above does nothing: no LEDs, no affection on coils read]]></description>
			<content:encoded><![CDATA[this command work ok:<br />
01 05 00 00 ff 00 8c 3a<br />
<br />
but read coil report 07 coils enabled (shifted)<br />
<br />
coil write from 08 coil and above does nothing: no LEDs, no affection on coils read]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Bug] A16v3 (v3.24.3) - Write Single Coil (FC05) Modbus standard violation]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9283</link>
			<pubDate>Mon, 20 Apr 2026 18:06:12 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=10757">dponyatov</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9283</guid>
			<description><![CDATA[- Firmware Version: v3.24.3 (Build Date: Apr 12 2026)<br />
- Hardware: A16v3<br />
- Communication: Modbus RTU (RS485)<br />
<br />
## Description:<br />
<br />
I have encountered an issue regarding the implementation of Modbus Function Code 05 (Write Single Coil).<br />
<br />
According to the official Modbus specification, to turn a coil ON, the data field must send FF00. To turn it OFF, the data field must send 0000. However, my A16v3 running firmware v3.24.3 does not seem to accept this standard.<br />
<br />
## Observed Behavior:<br />
<br />
The device expects (or only responds to) a "bit-encoded" state in the data field. For example:<br />
<br />
Instead of FF 00, the device expects 01 00 (or similar bit masks) to activate the coil.<br />
<br />
Instead of 00 00, it expects 00 00.<br />
<br />
This behavior is non-standard. It appears the firmware is treating FC05 as if it were a "Mask" or mimicking the data structure of FC15 (Write Multiple Coils) rather than the strict FF00/0000 pattern required by the Modbus standard.<br />
<br />
## Steps to Reproduce:<br />
<br />
Establish Modbus TCP connection to the device (IP: 10.130.1.43).<br />
<br />
Send standard Modbus FC05 frame to any valid coil address (e.g., 00 01):<br />
<br />
Standard ON: [Slave ID] 05 [Addr High] [Addr Low] FF 00 [CRC]<br />
<br />
Standard OFF: [Slave ID] 05 [Addr High] [Addr Low] 00 00 [CRC]<br />
<br />
Observe that the coil state does not change (or the device returns an exception/incorrect response).<br />
<br />
Send a modified frame using bit-encoded data (e.g., 01 00 for ON).<br />
<br />
Observe that the coil toggles successfully.<br />
<br />
## Expected Behavior:<br />
<br />
The device should strictly adhere to the Modbus specification for Function Code 05, using FF00 for ON and 0000 for OFF.<br />
<br />
## Questions / Requests:<br />
<br />
- Is this a known issue in v3.24.3?<br />
<br />
-Is there a configuration flag in the Web UI (e.g., "Strict Mode," "Legacy Mode," or "Compatibility Mode") that can switch the device to standard Modbus compliance?<br />
<br />
-If not, is this planned to be fixed in a future firmware update?<br />
<br />
## Additional Context:<br />
<br />
Software Version: v3.24.3<br />
<br />
Build Date: Apr 12 2026<br />
<br />
I am using a standard Modbus master software (PLC/SCADA) that strictly adheres to the FF00 standard, so I cannot easily modify the protocol structure on the master side.]]></description>
			<content:encoded><![CDATA[- Firmware Version: v3.24.3 (Build Date: Apr 12 2026)<br />
- Hardware: A16v3<br />
- Communication: Modbus RTU (RS485)<br />
<br />
## Description:<br />
<br />
I have encountered an issue regarding the implementation of Modbus Function Code 05 (Write Single Coil).<br />
<br />
According to the official Modbus specification, to turn a coil ON, the data field must send FF00. To turn it OFF, the data field must send 0000. However, my A16v3 running firmware v3.24.3 does not seem to accept this standard.<br />
<br />
## Observed Behavior:<br />
<br />
The device expects (or only responds to) a "bit-encoded" state in the data field. For example:<br />
<br />
Instead of FF 00, the device expects 01 00 (or similar bit masks) to activate the coil.<br />
<br />
Instead of 00 00, it expects 00 00.<br />
<br />
This behavior is non-standard. It appears the firmware is treating FC05 as if it were a "Mask" or mimicking the data structure of FC15 (Write Multiple Coils) rather than the strict FF00/0000 pattern required by the Modbus standard.<br />
<br />
## Steps to Reproduce:<br />
<br />
Establish Modbus TCP connection to the device (IP: 10.130.1.43).<br />
<br />
Send standard Modbus FC05 frame to any valid coil address (e.g., 00 01):<br />
<br />
Standard ON: [Slave ID] 05 [Addr High] [Addr Low] FF 00 [CRC]<br />
<br />
Standard OFF: [Slave ID] 05 [Addr High] [Addr Low] 00 00 [CRC]<br />
<br />
Observe that the coil state does not change (or the device returns an exception/incorrect response).<br />
<br />
Send a modified frame using bit-encoded data (e.g., 01 00 for ON).<br />
<br />
Observe that the coil toggles successfully.<br />
<br />
## Expected Behavior:<br />
<br />
The device should strictly adhere to the Modbus specification for Function Code 05, using FF00 for ON and 0000 for OFF.<br />
<br />
## Questions / Requests:<br />
<br />
- Is this a known issue in v3.24.3?<br />
<br />
-Is there a configuration flag in the Web UI (e.g., "Strict Mode," "Legacy Mode," or "Compatibility Mode") that can switch the device to standard Modbus compliance?<br />
<br />
-If not, is this planned to be fixed in a future firmware update?<br />
<br />
## Additional Context:<br />
<br />
Software Version: v3.24.3<br />
<br />
Build Date: Apr 12 2026<br />
<br />
I am using a standard Modbus master software (PLC/SCADA) that strictly adheres to the FF00 standard, so I cannot easily modify the protocol structure on the master side.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA["KCS" v3.24.3 firmware BIN file download]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9233</link>
			<pubDate>Mon, 13 Apr 2026 11:02:36 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9233</guid>
			<description><![CDATA[v3.24.3 improvement:<br />
1: add debounce capability to digital input ports.<br />
2: support wiegand protocol for access control panel.<br />
3: add RS485 bridge protocol, support TR RS485 device digital input and sensor feedback for MASTER controller's mqtt message.<br />
4: fixed bug when IF conditon have multi DI.<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9551" target="_blank" title="">KCS_A2V3_V3.24.3.zip</a> (Size: 1.17 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9552" target="_blank" title="">KCS_A6V3_V3.24.3.zip</a> (Size: 1.14 MB / Downloads: 45)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9553" target="_blank" title="">KCS_A8V3_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 39)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9554" target="_blank" title="">KCS_A16V3_V3.24.3.zip</a> (Size: 1.21 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9555" target="_blank" title="">KCS_A32PRO_V3.24.3.zip</a> (Size: 1.18 MB / Downloads: 38)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9556" target="_blank" title="">KCS_AG8_V3.24.3.zip</a> (Size: 1.16 MB / Downloads: 34)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9557" target="_blank" title="">KCS_AIO_HYBRID_V3.24.3.zip</a> (Size: 1.39 MB / Downloads: 38)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9558" target="_blank" title="">KCS_ALR_V3.24.3.zip</a> (Size: 1.15 MB / Downloads: 32)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9559" target="_blank" title="">KCS_B4_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 32)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9560" target="_blank" title="">KCS_B4M_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 34)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9561" target="_blank" title="">KCS_B8_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 40)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9562" target="_blank" title="">KCS_B8M_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 39)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9563" target="_blank" title="">KCS_B16_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 41)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9564" target="_blank" title="">KCS_B16M_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 44)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9565" target="_blank" title="">KCS_B24_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 33)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9566" target="_blank" title="">KCS_B24M_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 37)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9567" target="_blank" title="">KCS_B32M_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 35)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9568" target="_blank" title="">KCS_DM4_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 30)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9569" target="_blank" title="">KCS_DM8_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 29)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9570" target="_blank" title="">KCS_DM16_V3.24.3.zip</a> (Size: 1.17 MB / Downloads: 36)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9571" target="_blank" title="">KCS_DM32_V3.24.3.zip</a> (Size: 1.21 MB / Downloads: 33)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9572" target="_blank" title="">KCS_F4_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 32)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9573" target="_blank" title="">KCS_F8_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 34)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9574" target="_blank" title="">KCS_F16_V3.24.3.zip</a> (Size: 1.21 MB / Downloads: 39)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9575" target="_blank" title="">KCS_F24_V3.24.3.zip</a> (Size: 1.21 MB / Downloads: 36)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9576" target="_blank" title="">KCS_F32_V3.24.3.zip</a> (Size: 1.21 MB / Downloads: 35)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9577" target="_blank" title="">KCS_G1_V3.24.3.zip</a> (Size: 1.16 MB / Downloads: 37)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9578" target="_blank" title="">KCS_KC_TA_V3.24.3.zip</a> (Size: 1.16 MB / Downloads: 28)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9579" target="_blank" title="">KCS_N10_V3.24.3.zip</a> (Size: 1.07 MB / Downloads: 43)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9580" target="_blank" title="">KCS_N20_V3.24.3.zip</a> (Size: 1.07 MB / Downloads: 36)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9581" target="_blank" title="">KCS_N30_V3.24.3.zip</a> (Size: 1.07 MB / Downloads: 40)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9582" target="_blank" title="">KCS_N60_V3.24.3.zip</a> (Size: 1.08 MB / Downloads: 42)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9583" target="_blank" title="">KCS_T16M_V3.24.3.zip</a> (Size: 1.15 MB / Downloads: 36)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9584" target="_blank" title="">KCS_T32M_V3.24.3.zip</a> (Size: 1.17 MB / Downloads: 33)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9585" target="_blank" title="">KCS_T64M_V3.24.3.zip</a> (Size: 1.17 MB / Downloads: 33)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9586" target="_blank" title="">KCS_T128M_V3.24.3.zip</a> (Size: 1.17 MB / Downloads: 34)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9587" target="_blank" title="">KCS_TR_V3.24.3.zip</a> (Size: 1.13 MB / Downloads: 45)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9588" target="_blank" title="">KCS_Z1_V3.24.3.zip</a> (Size: 1.3 MB / Downloads: 37)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[v3.24.3 improvement:<br />
1: add debounce capability to digital input ports.<br />
2: support wiegand protocol for access control panel.<br />
3: add RS485 bridge protocol, support TR RS485 device digital input and sensor feedback for MASTER controller's mqtt message.<br />
4: fixed bug when IF conditon have multi DI.<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9551" target="_blank" title="">KCS_A2V3_V3.24.3.zip</a> (Size: 1.17 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9552" target="_blank" title="">KCS_A6V3_V3.24.3.zip</a> (Size: 1.14 MB / Downloads: 45)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9553" target="_blank" title="">KCS_A8V3_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 39)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9554" target="_blank" title="">KCS_A16V3_V3.24.3.zip</a> (Size: 1.21 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9555" target="_blank" title="">KCS_A32PRO_V3.24.3.zip</a> (Size: 1.18 MB / Downloads: 38)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9556" target="_blank" title="">KCS_AG8_V3.24.3.zip</a> (Size: 1.16 MB / Downloads: 34)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9557" target="_blank" title="">KCS_AIO_HYBRID_V3.24.3.zip</a> (Size: 1.39 MB / Downloads: 38)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9558" target="_blank" title="">KCS_ALR_V3.24.3.zip</a> (Size: 1.15 MB / Downloads: 32)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9559" target="_blank" title="">KCS_B4_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 32)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9560" target="_blank" title="">KCS_B4M_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 34)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9561" target="_blank" title="">KCS_B8_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 40)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9562" target="_blank" title="">KCS_B8M_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 39)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9563" target="_blank" title="">KCS_B16_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 41)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9564" target="_blank" title="">KCS_B16M_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 44)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9565" target="_blank" title="">KCS_B24_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 33)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9566" target="_blank" title="">KCS_B24M_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 37)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9567" target="_blank" title="">KCS_B32M_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 35)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9568" target="_blank" title="">KCS_DM4_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 30)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9569" target="_blank" title="">KCS_DM8_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 29)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9570" target="_blank" title="">KCS_DM16_V3.24.3.zip</a> (Size: 1.17 MB / Downloads: 36)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9571" target="_blank" title="">KCS_DM32_V3.24.3.zip</a> (Size: 1.21 MB / Downloads: 33)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9572" target="_blank" title="">KCS_F4_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 32)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9573" target="_blank" title="">KCS_F8_V3.24.3.zip</a> (Size: 1.2 MB / Downloads: 34)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9574" target="_blank" title="">KCS_F16_V3.24.3.zip</a> (Size: 1.21 MB / Downloads: 39)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9575" target="_blank" title="">KCS_F24_V3.24.3.zip</a> (Size: 1.21 MB / Downloads: 36)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9576" target="_blank" title="">KCS_F32_V3.24.3.zip</a> (Size: 1.21 MB / Downloads: 35)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9577" target="_blank" title="">KCS_G1_V3.24.3.zip</a> (Size: 1.16 MB / Downloads: 37)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9578" target="_blank" title="">KCS_KC_TA_V3.24.3.zip</a> (Size: 1.16 MB / Downloads: 28)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9579" target="_blank" title="">KCS_N10_V3.24.3.zip</a> (Size: 1.07 MB / Downloads: 43)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9580" target="_blank" title="">KCS_N20_V3.24.3.zip</a> (Size: 1.07 MB / Downloads: 36)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9581" target="_blank" title="">KCS_N30_V3.24.3.zip</a> (Size: 1.07 MB / Downloads: 40)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9582" target="_blank" title="">KCS_N60_V3.24.3.zip</a> (Size: 1.08 MB / Downloads: 42)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9583" target="_blank" title="">KCS_T16M_V3.24.3.zip</a> (Size: 1.15 MB / Downloads: 36)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9584" target="_blank" title="">KCS_T32M_V3.24.3.zip</a> (Size: 1.17 MB / Downloads: 33)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9585" target="_blank" title="">KCS_T64M_V3.24.3.zip</a> (Size: 1.17 MB / Downloads: 33)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9586" target="_blank" title="">KCS_T128M_V3.24.3.zip</a> (Size: 1.17 MB / Downloads: 34)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9587" target="_blank" title="">KCS_TR_V3.24.3.zip</a> (Size: 1.13 MB / Downloads: 45)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9588" target="_blank" title="">KCS_Z1_V3.24.3.zip</a> (Size: 1.3 MB / Downloads: 37)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[A8v3]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9221</link>
			<pubDate>Thu, 09 Apr 2026 18:14:13 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=2217">Saif Kitany</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9221</guid>
			<description><![CDATA[I have A8v3 and i downloaded the firmware.<br />
I’m trying to connect to it by tuya.<br />
The tuya led on pcb is blinking, but when i open tuya app, it doesnt discover the device!]]></description>
			<content:encoded><![CDATA[I have A8v3 and i downloaded the firmware.<br />
I’m trying to connect to it by tuya.<br />
The tuya led on pcb is blinking, but when i open tuya app, it doesnt discover the device!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[kc-868 AK]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9212</link>
			<pubDate>Mon, 06 Apr 2026 00:11:42 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=2217">Saif Kitany</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9212</guid>
			<description><![CDATA[i have 2 old controlles, H32L and H32B.<br />
i want to control them by KC-868 AK. <br />
so the H32B controller i set as TCP SERVER, both ethernet and wifi, AND in the kc-868 ak i enabled tcp client and put the ip adress of the controller and the port, and it works well.<br />
<br />
now my question is : <br />
<br />
can i control the second controller H32L by UDP?]]></description>
			<content:encoded><![CDATA[i have 2 old controlles, H32L and H32B.<br />
i want to control them by KC-868 AK. <br />
so the H32B controller i set as TCP SERVER, both ethernet and wifi, AND in the kc-868 ak i enabled tcp client and put the ip adress of the controller and the port, and it works well.<br />
<br />
now my question is : <br />
<br />
can i control the second controller H32L by UDP?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KCS_Z1_V3.24.2.zip firmware]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9196</link>
			<pubDate>Wed, 01 Apr 2026 18:17:44 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=10674">gg07</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9196</guid>
			<description><![CDATA[Hi, z1 v3.24.2 firmware isn't throwing out an AP, like the previous version does. can you please check and let me know.]]></description>
			<content:encoded><![CDATA[Hi, z1 v3.24.2 firmware isn't throwing out an AP, like the previous version does. can you please check and let me know.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[RS485 Modbus SHT30 sensor setting]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9185</link>
			<pubDate>Sun, 29 Mar 2026 21:27:56 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=9452">Jan_W</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9185</guid>
			<description><![CDATA[Hi,<br />
<br />
I have RS485 SHT30 sensors like below. <br />
How should I configure and wire it to use as sensor in KCS v3?<br />
Should I use rs485 TR/TS option? This is not a Kincony sensor.<br />
<br />
<br />
<img src="https://i.imgur.com/WDQahWs.png" loading="lazy"  alt="[Image: WDQahWs.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/0P0Dk8d.png" loading="lazy"  alt="[Image: 0P0Dk8d.png]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I have RS485 SHT30 sensors like below. <br />
How should I configure and wire it to use as sensor in KCS v3?<br />
Should I use rs485 TR/TS option? This is not a Kincony sensor.<br />
<br />
<br />
<img src="https://i.imgur.com/WDQahWs.png" loading="lazy"  alt="[Image: WDQahWs.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/0P0Dk8d.png" loading="lazy"  alt="[Image: 0P0Dk8d.png]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA["KCS" v3.24.2 firmware BIN file download]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9173</link>
			<pubDate>Tue, 24 Mar 2026 13:58:02 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9173</guid>
			<description><![CDATA[v3.24.2 improvement: <br />
1: harden remote flash workflow<br />
2: add standard Modbus RTU V2 protocol handler<br />
3: DM32 Tuya DAC DP mapping<br />
4: expand free GPIO DI monitor updates<br />
5: update ifttt "THEN" action number from 12 up to 32.<br />
6: upgrade Nx board ARM CPU energy modbus protocol<br />
7: Nx board KCS monitor and home assistant energy value precision to 0.001kwh<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9442" target="_blank" title="">KCS_DM32_V3.24.2.zip</a> (Size: 1.2 MB / Downloads: 116)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9443" target="_blank" title="">KCS_A2V3_V3.24.2.zip</a> (Size: 1.16 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9444" target="_blank" title="">KCS_A6V3_V3.24.2.zip</a> (Size: 1.13 MB / Downloads: 98)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9445" target="_blank" title="">KCS_A8V3_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 78)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9446" target="_blank" title="">KCS_A16V3_V3.24.2.zip</a> (Size: 1.2 MB / Downloads: 244)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9447" target="_blank" title="">KCS_A32PRO_V3.24.2.zip</a> (Size: 1.17 MB / Downloads: 69)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9448" target="_blank" title="">KCS_AG8_V3.24.2.zip</a> (Size: 1.15 MB / Downloads: 74)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9449" target="_blank" title="">KCS_AIO_HYBRID_V3.24.2.zip</a> (Size: 1.38 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9450" target="_blank" title="">KCS_ALR_V3.24.2.zip</a> (Size: 1.14 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9451" target="_blank" title="">KCS_B4_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9452" target="_blank" title="">KCS_B4M_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9453" target="_blank" title="">KCS_B8_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 54)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9454" target="_blank" title="">KCS_B8M_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9455" target="_blank" title="">KCS_B16_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9456" target="_blank" title="">KCS_B16M_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 66)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9457" target="_blank" title="">KCS_B24_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9458" target="_blank" title="">KCS_B24M_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 67)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9459" target="_blank" title="">KCS_B32M_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9460" target="_blank" title="">KCS_DM4_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 56)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9461" target="_blank" title="">KCS_DM8_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9462" target="_blank" title="">KCS_DM16_V3.24.2.zip</a> (Size: 1.16 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9463" target="_blank" title="">KCS_F4_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9464" target="_blank" title="">KCS_F8_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9465" target="_blank" title="">KCS_F16_V3.24.2.zip</a> (Size: 1.2 MB / Downloads: 70)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9466" target="_blank" title="">KCS_F24_V3.24.2.zip</a> (Size: 1.2 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9467" target="_blank" title="">KCS_F32_V3.24.2.zip</a> (Size: 1.2 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9468" target="_blank" title="">KCS_G1_V3.24.2.zip</a> (Size: 1.15 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9469" target="_blank" title="">KCS_KC_TA_V3.24.2.zip</a> (Size: 1.15 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9470" target="_blank" title="">KCS_N10_V3.24.2.zip</a> (Size: 1.06 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9471" target="_blank" title="">KCS_N20_V3.24.2.zip</a> (Size: 1.06 MB / Downloads: 61)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9472" target="_blank" title="">KCS_N30_V3.24.2.zip</a> (Size: 1.06 MB / Downloads: 65)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9473" target="_blank" title="">KCS_N60_V3.24.2.zip</a> (Size: 1.08 MB / Downloads: 54)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9474" target="_blank" title="">KCS_T16M_V3.24.2.zip</a> (Size: 1.14 MB / Downloads: 61)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9475" target="_blank" title="">KCS_T32M_V3.24.2.zip</a> (Size: 1.16 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9476" target="_blank" title="">KCS_T64M_V3.24.2.zip</a> (Size: 1.16 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9477" target="_blank" title="">KCS_T128M_V3.24.2.zip</a> (Size: 1.16 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9478" target="_blank" title="">KCS_TR_V3.24.2.zip</a> (Size: 1.12 MB / Downloads: 55)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9479" target="_blank" title="">KCS_Z1_V3.24.2.zip</a> (Size: 1.29 MB / Downloads: 69)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[v3.24.2 improvement: <br />
1: harden remote flash workflow<br />
2: add standard Modbus RTU V2 protocol handler<br />
3: DM32 Tuya DAC DP mapping<br />
4: expand free GPIO DI monitor updates<br />
5: update ifttt "THEN" action number from 12 up to 32.<br />
6: upgrade Nx board ARM CPU energy modbus protocol<br />
7: Nx board KCS monitor and home assistant energy value precision to 0.001kwh<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9442" target="_blank" title="">KCS_DM32_V3.24.2.zip</a> (Size: 1.2 MB / Downloads: 116)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9443" target="_blank" title="">KCS_A2V3_V3.24.2.zip</a> (Size: 1.16 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9444" target="_blank" title="">KCS_A6V3_V3.24.2.zip</a> (Size: 1.13 MB / Downloads: 98)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9445" target="_blank" title="">KCS_A8V3_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 78)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9446" target="_blank" title="">KCS_A16V3_V3.24.2.zip</a> (Size: 1.2 MB / Downloads: 244)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9447" target="_blank" title="">KCS_A32PRO_V3.24.2.zip</a> (Size: 1.17 MB / Downloads: 69)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9448" target="_blank" title="">KCS_AG8_V3.24.2.zip</a> (Size: 1.15 MB / Downloads: 74)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9449" target="_blank" title="">KCS_AIO_HYBRID_V3.24.2.zip</a> (Size: 1.38 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9450" target="_blank" title="">KCS_ALR_V3.24.2.zip</a> (Size: 1.14 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9451" target="_blank" title="">KCS_B4_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9452" target="_blank" title="">KCS_B4M_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9453" target="_blank" title="">KCS_B8_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 54)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9454" target="_blank" title="">KCS_B8M_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9455" target="_blank" title="">KCS_B16_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9456" target="_blank" title="">KCS_B16M_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 66)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9457" target="_blank" title="">KCS_B24_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9458" target="_blank" title="">KCS_B24M_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 67)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9459" target="_blank" title="">KCS_B32M_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9460" target="_blank" title="">KCS_DM4_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 56)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9461" target="_blank" title="">KCS_DM8_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9462" target="_blank" title="">KCS_DM16_V3.24.2.zip</a> (Size: 1.16 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9463" target="_blank" title="">KCS_F4_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9464" target="_blank" title="">KCS_F8_V3.24.2.zip</a> (Size: 1.19 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9465" target="_blank" title="">KCS_F16_V3.24.2.zip</a> (Size: 1.2 MB / Downloads: 70)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9466" target="_blank" title="">KCS_F24_V3.24.2.zip</a> (Size: 1.2 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9467" target="_blank" title="">KCS_F32_V3.24.2.zip</a> (Size: 1.2 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9468" target="_blank" title="">KCS_G1_V3.24.2.zip</a> (Size: 1.15 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9469" target="_blank" title="">KCS_KC_TA_V3.24.2.zip</a> (Size: 1.15 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9470" target="_blank" title="">KCS_N10_V3.24.2.zip</a> (Size: 1.06 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9471" target="_blank" title="">KCS_N20_V3.24.2.zip</a> (Size: 1.06 MB / Downloads: 61)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9472" target="_blank" title="">KCS_N30_V3.24.2.zip</a> (Size: 1.06 MB / Downloads: 65)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9473" target="_blank" title="">KCS_N60_V3.24.2.zip</a> (Size: 1.08 MB / Downloads: 54)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9474" target="_blank" title="">KCS_T16M_V3.24.2.zip</a> (Size: 1.14 MB / Downloads: 61)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9475" target="_blank" title="">KCS_T32M_V3.24.2.zip</a> (Size: 1.16 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9476" target="_blank" title="">KCS_T64M_V3.24.2.zip</a> (Size: 1.16 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9477" target="_blank" title="">KCS_T128M_V3.24.2.zip</a> (Size: 1.16 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9478" target="_blank" title="">KCS_TR_V3.24.2.zip</a> (Size: 1.12 MB / Downloads: 55)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9479" target="_blank" title="">KCS_Z1_V3.24.2.zip</a> (Size: 1.29 MB / Downloads: 69)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA["KCS" v3.23.2 firmware BIN file download]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9112</link>
			<pubDate>Wed, 11 Mar 2026 08:13:08 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9112</guid>
			<description><![CDATA[v3.23.2 improvement:<br />
1: fixed undecoded IR signal are currently being reported to Home Assistant via MQTT.<br />
2: fixed an issue where fast-switching relays might cause the system to restart.<br />
3: added support new DM4, DM8, DM32 dimmer board.<br />
4: added OLED screen displays the component loading progress during board startup.<br />
5: added support MQTTS (TLS)<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9317" target="_blank" title="">KCS_A2V3_V3.23.2.zip</a> (Size: 1.16 MB / Downloads: 79)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9318" target="_blank" title="">KCS_A6V3_V3.23.2.zip</a> (Size: 1.13 MB / Downloads: 82)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9319" target="_blank" title="">KCS_A8V3_V3.23.2.zip</a> (Size: 1.18 MB / Downloads: 89)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9320" target="_blank" title="">KCS_A16V3_V3.23.2.zip</a> (Size: 1.2 MB / Downloads: 93)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9321" target="_blank" title="">KCS_A32PRO_V3.23.2.zip</a> (Size: 1.17 MB / Downloads: 75)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9322" target="_blank" title="">KCS_AG8_V3.23.2.zip</a> (Size: 1.14 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9323" target="_blank" title="">KCS_AIO_HYBRID_V3.23.2.zip</a> (Size: 1.37 MB / Downloads: 77)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9324" target="_blank" title="">KCS_ALR_V3.23.2.zip</a> (Size: 1.14 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9325" target="_blank" title="">KCS_B4_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9326" target="_blank" title="">KCS_B4M_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 66)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9327" target="_blank" title="">KCS_B8_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 68)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9328" target="_blank" title="">KCS_B8M_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 51)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9329" target="_blank" title="">KCS_B16_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 70)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9330" target="_blank" title="">KCS_B16M_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 69)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9331" target="_blank" title="">KCS_B24_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 54)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9332" target="_blank" title="">KCS_B24M_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9333" target="_blank" title="">KCS_B32M_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9334" target="_blank" title="">KCS_DM4_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9335" target="_blank" title="">KCS_DM8_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9336" target="_blank" title="">KCS_DM16_V3.23.2.zip</a> (Size: 1.16 MB / Downloads: 51)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9337" target="_blank" title="">KCS_DM32_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9338" target="_blank" title="">KCS_F4_V3.23.2.zip</a> (Size: 1.18 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9339" target="_blank" title="">KCS_F8_V3.23.2.zip</a> (Size: 1.18 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9340" target="_blank" title="">KCS_F16_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 99)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9341" target="_blank" title="">KCS_F24_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9342" target="_blank" title="">KCS_F32_V3.23.2.zip</a> (Size: 1.2 MB / Downloads: 75)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9343" target="_blank" title="">KCS_G1_V3.23.2.zip</a> (Size: 1.15 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9344" target="_blank" title="">KCS_KC_TA_V3.23.2.zip</a> (Size: 1.15 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9345" target="_blank" title="">KCS_N10_V3.23.2.zip</a> (Size: 1.06 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9346" target="_blank" title="">KCS_N20_V3.23.2.zip</a> (Size: 1.06 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9347" target="_blank" title="">KCS_N30_V3.23.2.zip</a> (Size: 1.06 MB / Downloads: 74)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9348" target="_blank" title="">KCS_N60_V3.23.2.zip</a> (Size: 1.07 MB / Downloads: 54)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9349" target="_blank" title="">KCS_T16M_V3.23.2.zip</a> (Size: 1.14 MB / Downloads: 61)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9350" target="_blank" title="">KCS_T32M_V3.23.2.zip</a> (Size: 1.16 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9351" target="_blank" title="">KCS_T64M_V3.23.2.zip</a> (Size: 1.16 MB / Downloads: 54)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9352" target="_blank" title="">KCS_T128M_V3.23.2.zip</a> (Size: 1.16 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9353" target="_blank" title="">KCS_TR_V3.23.2.zip</a> (Size: 1.11 MB / Downloads: 50)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9354" target="_blank" title="">KCS_Z1_V3.23.2.zip</a> (Size: 1.29 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[v3.23.2 improvement:<br />
1: fixed undecoded IR signal are currently being reported to Home Assistant via MQTT.<br />
2: fixed an issue where fast-switching relays might cause the system to restart.<br />
3: added support new DM4, DM8, DM32 dimmer board.<br />
4: added OLED screen displays the component loading progress during board startup.<br />
5: added support MQTTS (TLS)<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9317" target="_blank" title="">KCS_A2V3_V3.23.2.zip</a> (Size: 1.16 MB / Downloads: 79)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9318" target="_blank" title="">KCS_A6V3_V3.23.2.zip</a> (Size: 1.13 MB / Downloads: 82)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9319" target="_blank" title="">KCS_A8V3_V3.23.2.zip</a> (Size: 1.18 MB / Downloads: 89)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9320" target="_blank" title="">KCS_A16V3_V3.23.2.zip</a> (Size: 1.2 MB / Downloads: 93)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9321" target="_blank" title="">KCS_A32PRO_V3.23.2.zip</a> (Size: 1.17 MB / Downloads: 75)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9322" target="_blank" title="">KCS_AG8_V3.23.2.zip</a> (Size: 1.14 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9323" target="_blank" title="">KCS_AIO_HYBRID_V3.23.2.zip</a> (Size: 1.37 MB / Downloads: 77)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9324" target="_blank" title="">KCS_ALR_V3.23.2.zip</a> (Size: 1.14 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9325" target="_blank" title="">KCS_B4_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9326" target="_blank" title="">KCS_B4M_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 66)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9327" target="_blank" title="">KCS_B8_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 68)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9328" target="_blank" title="">KCS_B8M_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 51)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9329" target="_blank" title="">KCS_B16_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 70)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9330" target="_blank" title="">KCS_B16M_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 69)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9331" target="_blank" title="">KCS_B24_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 54)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9332" target="_blank" title="">KCS_B24M_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9333" target="_blank" title="">KCS_B32M_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 58)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9334" target="_blank" title="">KCS_DM4_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 57)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9335" target="_blank" title="">KCS_DM8_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9336" target="_blank" title="">KCS_DM16_V3.23.2.zip</a> (Size: 1.16 MB / Downloads: 51)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9337" target="_blank" title="">KCS_DM32_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9338" target="_blank" title="">KCS_F4_V3.23.2.zip</a> (Size: 1.18 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9339" target="_blank" title="">KCS_F8_V3.23.2.zip</a> (Size: 1.18 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9340" target="_blank" title="">KCS_F16_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 99)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9341" target="_blank" title="">KCS_F24_V3.23.2.zip</a> (Size: 1.19 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9342" target="_blank" title="">KCS_F32_V3.23.2.zip</a> (Size: 1.2 MB / Downloads: 75)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9343" target="_blank" title="">KCS_G1_V3.23.2.zip</a> (Size: 1.15 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9344" target="_blank" title="">KCS_KC_TA_V3.23.2.zip</a> (Size: 1.15 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9345" target="_blank" title="">KCS_N10_V3.23.2.zip</a> (Size: 1.06 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9346" target="_blank" title="">KCS_N20_V3.23.2.zip</a> (Size: 1.06 MB / Downloads: 59)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9347" target="_blank" title="">KCS_N30_V3.23.2.zip</a> (Size: 1.06 MB / Downloads: 74)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9348" target="_blank" title="">KCS_N60_V3.23.2.zip</a> (Size: 1.07 MB / Downloads: 54)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9349" target="_blank" title="">KCS_T16M_V3.23.2.zip</a> (Size: 1.14 MB / Downloads: 61)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9350" target="_blank" title="">KCS_T32M_V3.23.2.zip</a> (Size: 1.16 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9351" target="_blank" title="">KCS_T64M_V3.23.2.zip</a> (Size: 1.16 MB / Downloads: 54)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9352" target="_blank" title="">KCS_T128M_V3.23.2.zip</a> (Size: 1.16 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9353" target="_blank" title="">KCS_TR_V3.23.2.zip</a> (Size: 1.11 MB / Downloads: 50)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9354" target="_blank" title="">KCS_Z1_V3.23.2.zip</a> (Size: 1.29 MB / Downloads: 64)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA["KCS" v3.22.0 firmware BIN file download]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9083</link>
			<pubDate>Tue, 03 Mar 2026 06:56:13 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9083</guid>
			<description><![CDATA[v3.22.0 improvement:<br />
1: add "import" and "export" function for backup.<br />
2: fixed bug copied IR command can't send out issue.<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9243" target="_blank" title="">KCS_backup.jpg</a> (Size: 63.99 KB / Downloads: 347)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9209" target="_blank" title="">KCS_A6V3_V3.22.0.zip</a> (Size: 1.08 MB / Downloads: 78)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9208" target="_blank" title="">KCS_A2V3_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9210" target="_blank" title="">KCS_A8V3_V3.22.0.zip</a> (Size: 1.13 MB / Downloads: 71)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9211" target="_blank" title="">KCS_A16V3_V3.22.0.zip</a> (Size: 1.15 MB / Downloads: 87)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9212" target="_blank" title="">KCS_A32PRO_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 67)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9213" target="_blank" title="">KCS_AG8_V3.22.0.zip</a> (Size: 1.09 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9214" target="_blank" title="">KCS_AIO_HYBRID_V3.22.0.zip</a> (Size: 1.32 MB / Downloads: 65)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9215" target="_blank" title="">KCS_ALR_V3.22.0.zip</a> (Size: 1.08 MB / Downloads: 100)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9216" target="_blank" title="">KCS_B4_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 68)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9217" target="_blank" title="">KCS_B4M_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 61)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9218" target="_blank" title="">KCS_B8_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9219" target="_blank" title="">KCS_B8M_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9220" target="_blank" title="">KCS_B16_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 67)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9221" target="_blank" title="">KCS_B16M_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 71)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9222" target="_blank" title="">KCS_B24_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 56)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9223" target="_blank" title="">KCS_B24M_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 70)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9224" target="_blank" title="">KCS_B32M_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 75)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9225" target="_blank" title="">KCS_DM16_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9226" target="_blank" title="">KCS_F4_V3.22.0.zip</a> (Size: 1.13 MB / Downloads: 76)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9227" target="_blank" title="">KCS_F8_V3.22.0.zip</a> (Size: 1.13 MB / Downloads: 66)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9228" target="_blank" title="">KCS_F16_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 77)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9229" target="_blank" title="">KCS_F24_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 67)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9230" target="_blank" title="">KCS_F32_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 78)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9231" target="_blank" title="">KCS_G1_V3.22.0.zip</a> (Size: 1.1 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9232" target="_blank" title="">KCS_KC_TA_V3.22.0.zip</a> (Size: 1.09 MB / Downloads: 67)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9233" target="_blank" title="">KCS_N10_V3.22.0.zip</a> (Size: 1 MB / Downloads: 69)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9234" target="_blank" title="">KCS_N20_V3.22.0.zip</a> (Size: 1 MB / Downloads: 66)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9235" target="_blank" title="">KCS_N30_V3.22.0.zip</a> (Size: 1 MB / Downloads: 72)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9236" target="_blank" title="">KCS_N60_V3.22.0.zip</a> (Size: 1.02 MB / Downloads: 61)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9237" target="_blank" title="">KCS_T16M_V3.22.0.zip</a> (Size: 1.09 MB / Downloads: 68)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9238" target="_blank" title="">KCS_T32M_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 68)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9239" target="_blank" title="">KCS_T64M_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9240" target="_blank" title="">KCS_T128M_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9241" target="_blank" title="">KCS_TR_V3.22.0.zip</a> (Size: 1.06 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9242" target="_blank" title="">KCS_Z1_V3.22.0.zip</a> (Size: 1.24 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[v3.22.0 improvement:<br />
1: add "import" and "export" function for backup.<br />
2: fixed bug copied IR command can't send out issue.<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9243" target="_blank" title="">KCS_backup.jpg</a> (Size: 63.99 KB / Downloads: 347)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9209" target="_blank" title="">KCS_A6V3_V3.22.0.zip</a> (Size: 1.08 MB / Downloads: 78)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9208" target="_blank" title="">KCS_A2V3_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9210" target="_blank" title="">KCS_A8V3_V3.22.0.zip</a> (Size: 1.13 MB / Downloads: 71)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9211" target="_blank" title="">KCS_A16V3_V3.22.0.zip</a> (Size: 1.15 MB / Downloads: 87)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9212" target="_blank" title="">KCS_A32PRO_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 67)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9213" target="_blank" title="">KCS_AG8_V3.22.0.zip</a> (Size: 1.09 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9214" target="_blank" title="">KCS_AIO_HYBRID_V3.22.0.zip</a> (Size: 1.32 MB / Downloads: 65)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9215" target="_blank" title="">KCS_ALR_V3.22.0.zip</a> (Size: 1.08 MB / Downloads: 100)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9216" target="_blank" title="">KCS_B4_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 68)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9217" target="_blank" title="">KCS_B4M_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 61)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9218" target="_blank" title="">KCS_B8_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9219" target="_blank" title="">KCS_B8M_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9220" target="_blank" title="">KCS_B16_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 67)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9221" target="_blank" title="">KCS_B16M_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 71)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9222" target="_blank" title="">KCS_B24_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 56)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9223" target="_blank" title="">KCS_B24M_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 70)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9224" target="_blank" title="">KCS_B32M_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 75)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9225" target="_blank" title="">KCS_DM16_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9226" target="_blank" title="">KCS_F4_V3.22.0.zip</a> (Size: 1.13 MB / Downloads: 76)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9227" target="_blank" title="">KCS_F8_V3.22.0.zip</a> (Size: 1.13 MB / Downloads: 66)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9228" target="_blank" title="">KCS_F16_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 77)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9229" target="_blank" title="">KCS_F24_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 67)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9230" target="_blank" title="">KCS_F32_V3.22.0.zip</a> (Size: 1.14 MB / Downloads: 78)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9231" target="_blank" title="">KCS_G1_V3.22.0.zip</a> (Size: 1.1 MB / Downloads: 62)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9232" target="_blank" title="">KCS_KC_TA_V3.22.0.zip</a> (Size: 1.09 MB / Downloads: 67)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9233" target="_blank" title="">KCS_N10_V3.22.0.zip</a> (Size: 1 MB / Downloads: 69)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9234" target="_blank" title="">KCS_N20_V3.22.0.zip</a> (Size: 1 MB / Downloads: 66)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9235" target="_blank" title="">KCS_N30_V3.22.0.zip</a> (Size: 1 MB / Downloads: 72)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9236" target="_blank" title="">KCS_N60_V3.22.0.zip</a> (Size: 1.02 MB / Downloads: 61)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9237" target="_blank" title="">KCS_T16M_V3.22.0.zip</a> (Size: 1.09 MB / Downloads: 68)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9238" target="_blank" title="">KCS_T32M_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 68)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9239" target="_blank" title="">KCS_T64M_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9240" target="_blank" title="">KCS_T128M_V3.22.0.zip</a> (Size: 1.11 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9241" target="_blank" title="">KCS_TR_V3.22.0.zip</a> (Size: 1.06 MB / Downloads: 63)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9242" target="_blank" title="">KCS_Z1_V3.22.0.zip</a> (Size: 1.24 MB / Downloads: 60)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[I2c Scan and Sensor Page Help]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9080</link>
			<pubDate>Sun, 01 Mar 2026 07:36:28 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=10426">RichCNY</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9080</guid>
			<description><![CDATA[I'm trying to hook up an SHT30 sensor to the I2c connector and from what I'm reading the default address is 0x44 (or 0x45) but I'm not getting an readings on the monitor page when set that way (after I add it in the sensor page). Is there any way to scan the I2c bus within KCS V3 so determine the address for certain ?<br />
<br />
Also I assume the sensor address on the sensor page its looking for the last 2 numbers of the address as 0x44 does it save correctly, its wiped out after save, but I can type 44 and save without issues ?<br />
<br />
Thanks in advance for any assistance,<br />
Rich]]></description>
			<content:encoded><![CDATA[I'm trying to hook up an SHT30 sensor to the I2c connector and from what I'm reading the default address is 0x44 (or 0x45) but I'm not getting an readings on the monitor page when set that way (after I add it in the sensor page). Is there any way to scan the I2c bus within KCS V3 so determine the address for certain ?<br />
<br />
Also I assume the sensor address on the sensor page its looking for the last 2 numbers of the address as 0x44 does it save correctly, its wiped out after save, but I can type 44 and save without issues ?<br />
<br />
Thanks in advance for any assistance,<br />
Rich]]></content:encoded>
		</item>
		<item>
			<title><![CDATA["KCS" v3.19.1 firmware BIN file download]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8961</link>
			<pubDate>Thu, 22 Jan 2026 11:10:35 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8961</guid>
			<description><![CDATA[v3.19.1 improvement:<br />
<br />
Fixed PCF8574 driver issue for F4<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9058" target="_blank" title="">KCS_B8M_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 151)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9059" target="_blank" title="">KCS_B16_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 128)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9060" target="_blank" title="">KCS_B16M_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 119)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9061" target="_blank" title="">KCS_B24_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 110)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9062" target="_blank" title="">KCS_B24M_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 110)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9063" target="_blank" title="">KCS_B32M_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 126)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9064" target="_blank" title="">KCS_DM16_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 111)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9065" target="_blank" title="">KCS_F4_V3.19.1.zip</a> (Size: 1.13 MB / Downloads: 112)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9066" target="_blank" title="">KCS_F8_V3.19.1.zip</a> (Size: 1.13 MB / Downloads: 135)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9067" target="_blank" title="">KCS_F16_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 147)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9068" target="_blank" title="">KCS_F24_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 114)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9069" target="_blank" title="">KCS_F32_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 106)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9070" target="_blank" title="">KCS_G1_V3.19.1.zip</a> (Size: 1.1 MB / Downloads: 122)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9071" target="_blank" title="">KCS_KC_TA_V3.19.1.zip</a> (Size: 1.09 MB / Downloads: 126)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9072" target="_blank" title="">KCS_N10_V3.19.1.zip</a> (Size: 1 MB / Downloads: 132)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9073" target="_blank" title="">KCS_N20_V3.19.1.zip</a> (Size: 1 MB / Downloads: 100)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9074" target="_blank" title="">KCS_N30_V3.19.1.zip</a> (Size: 1 MB / Downloads: 104)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9075" target="_blank" title="">KCS_N60_V3.19.1.zip</a> (Size: 1.02 MB / Downloads: 110)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9076" target="_blank" title="">KCS_A2V3_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 134)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9077" target="_blank" title="">KCS_A6V3_V3.19.1.zip</a> (Size: 1.08 MB / Downloads: 131)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9078" target="_blank" title="">KCS_A8V3_V3.19.1.zip</a> (Size: 1.13 MB / Downloads: 140)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9079" target="_blank" title="">KCS_A16V3_V3.19.1.zip</a> (Size: 1.15 MB / Downloads: 197)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9080" target="_blank" title="">KCS_A32PRO_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 120)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9081" target="_blank" title="">KCS_AG8_V3.19.1.zip</a> (Size: 1.09 MB / Downloads: 120)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9082" target="_blank" title="">KCS_AIO_HYBRID_V3.19.1.zip</a> (Size: 1.32 MB / Downloads: 122)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9083" target="_blank" title="">KCS_ALR_V3.19.1.zip</a> (Size: 1.08 MB / Downloads: 104)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9084" target="_blank" title="">KCS_B8_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 107)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9085" target="_blank" title="">KCS_T16M_V3.19.1.zip</a> (Size: 1.09 MB / Downloads: 106)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9086" target="_blank" title="">KCS_T32M_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 122)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9087" target="_blank" title="">KCS_T64M_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 131)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9088" target="_blank" title="">KCS_T128M_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 122)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9089" target="_blank" title="">KCS_TR_V3.19.1.zip</a> (Size: 1.06 MB / Downloads: 119)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9090" target="_blank" title="">KCS_Z1_V3.19.1.zip</a> (Size: 1.24 MB / Downloads: 112)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[v3.19.1 improvement:<br />
<br />
Fixed PCF8574 driver issue for F4<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9058" target="_blank" title="">KCS_B8M_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 151)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9059" target="_blank" title="">KCS_B16_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 128)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9060" target="_blank" title="">KCS_B16M_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 119)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9061" target="_blank" title="">KCS_B24_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 110)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9062" target="_blank" title="">KCS_B24M_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 110)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9063" target="_blank" title="">KCS_B32M_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 126)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9064" target="_blank" title="">KCS_DM16_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 111)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9065" target="_blank" title="">KCS_F4_V3.19.1.zip</a> (Size: 1.13 MB / Downloads: 112)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9066" target="_blank" title="">KCS_F8_V3.19.1.zip</a> (Size: 1.13 MB / Downloads: 135)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9067" target="_blank" title="">KCS_F16_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 147)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9068" target="_blank" title="">KCS_F24_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 114)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9069" target="_blank" title="">KCS_F32_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 106)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9070" target="_blank" title="">KCS_G1_V3.19.1.zip</a> (Size: 1.1 MB / Downloads: 122)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9071" target="_blank" title="">KCS_KC_TA_V3.19.1.zip</a> (Size: 1.09 MB / Downloads: 126)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9072" target="_blank" title="">KCS_N10_V3.19.1.zip</a> (Size: 1 MB / Downloads: 132)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9073" target="_blank" title="">KCS_N20_V3.19.1.zip</a> (Size: 1 MB / Downloads: 100)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9074" target="_blank" title="">KCS_N30_V3.19.1.zip</a> (Size: 1 MB / Downloads: 104)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9075" target="_blank" title="">KCS_N60_V3.19.1.zip</a> (Size: 1.02 MB / Downloads: 110)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9076" target="_blank" title="">KCS_A2V3_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 134)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9077" target="_blank" title="">KCS_A6V3_V3.19.1.zip</a> (Size: 1.08 MB / Downloads: 131)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9078" target="_blank" title="">KCS_A8V3_V3.19.1.zip</a> (Size: 1.13 MB / Downloads: 140)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9079" target="_blank" title="">KCS_A16V3_V3.19.1.zip</a> (Size: 1.15 MB / Downloads: 197)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9080" target="_blank" title="">KCS_A32PRO_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 120)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9081" target="_blank" title="">KCS_AG8_V3.19.1.zip</a> (Size: 1.09 MB / Downloads: 120)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9082" target="_blank" title="">KCS_AIO_HYBRID_V3.19.1.zip</a> (Size: 1.32 MB / Downloads: 122)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9083" target="_blank" title="">KCS_ALR_V3.19.1.zip</a> (Size: 1.08 MB / Downloads: 104)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9084" target="_blank" title="">KCS_B8_V3.19.1.zip</a> (Size: 1.14 MB / Downloads: 107)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9085" target="_blank" title="">KCS_T16M_V3.19.1.zip</a> (Size: 1.09 MB / Downloads: 106)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9086" target="_blank" title="">KCS_T32M_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 122)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9087" target="_blank" title="">KCS_T64M_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 131)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9088" target="_blank" title="">KCS_T128M_V3.19.1.zip</a> (Size: 1.11 MB / Downloads: 122)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9089" target="_blank" title="">KCS_TR_V3.19.1.zip</a> (Size: 1.06 MB / Downloads: 119)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9090" target="_blank" title="">KCS_Z1_V3.19.1.zip</a> (Size: 1.24 MB / Downloads: 112)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Bulk IFTTT mapping]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8952</link>
			<pubDate>Sun, 18 Jan 2026 03:15:51 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1808">npekpacHo</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8952</guid>
			<description><![CDATA[<img src="https://npekpacho.ru/images/ifttt_mass_mapper.png" loading="lazy"  alt="[Image: ifttt_mass_mapper.png]" class="mycode_img" /><br />
<br />
RU<br />
<br />
Привет!<br />
KCS в целом рабочая система, но настройка IFTTT через веб-интерфейс получается громоздкой, особенно когда нужно быстро и массово сопоставить входы и выходы (например DI1 → DO1 toggle и так далее).<br />
<br />
Я сделал небольшое браузерное расширение (без Node-RED и без перепрошивок), которое добавляет на страницу /ifttt.html компактную панель для массовой настройки:<br />
<br />
автоматическое определение DI/DO (из cookie Device, input_num / output_num)<br />
<br />
Fill 1–16 / Fill 1–DOmax / Fill all (1–DImax)<br />
<br />
массовое применение правил через POST /ifttt/save_channel<br />
<br />
выбор триггера (single / double / hold / edges) и действия ON / OFF / TOGGLE<br />
<br />
Скачать:<br />
<a href="https://npekpacho.ru/downloads/kcs-mass-mapper-ext.zip" target="_blank" rel="noopener" class="mycode_url">https://npekpacho.ru/downloads/kcs-mass-mapper-ext.zip</a><br />
<br />
Было бы здорово увидеть официальный “bulk IFTTT mapper” прямо в KCS. Такая функция реально экономит время, а обещания «скоро добавим» длятся уже не первый год ?<br />
<br />
EN<br />
<br />
Hi!<br />
KCS is a functional system, but the IFTTT web UI becomes quite heavy when you need fast bulk DI→DO mapping (for example DI1 → DO1 toggle for many channels).<br />
<br />
I made a small browser extension (no Node-RED, no firmware changes) that adds a compact bulk-mapping panel to /ifttt.html:<br />
<br />
automatic DI/DO detection (from the Device cookie: input_num / output_num)<br />
<br />
Fill 1–16 / Fill 1–DOmax / Fill all (1–DImax)<br />
<br />
bulk rule application via POST /ifttt/save_channel<br />
<br />
trigger selection (single / double / hold / edges) and action ON / OFF / TOGGLE<br />
<br />
Download:<br />
<a href="https://npekpacho.ru/downloads/kcs-mass-mapper-ext.zip" target="_blank" rel="noopener" class="mycode_url">https://npekpacho.ru/downloads/kcs-mass-mapper-ext.zip</a><br />
<br />
It would be great to see an official “bulk IFTTT mapper” built directly into KCS. This kind of feature saves a lot of time, and the “coming soon” promise seems to be going on for years ?]]></description>
			<content:encoded><![CDATA[<img src="https://npekpacho.ru/images/ifttt_mass_mapper.png" loading="lazy"  alt="[Image: ifttt_mass_mapper.png]" class="mycode_img" /><br />
<br />
RU<br />
<br />
Привет!<br />
KCS в целом рабочая система, но настройка IFTTT через веб-интерфейс получается громоздкой, особенно когда нужно быстро и массово сопоставить входы и выходы (например DI1 → DO1 toggle и так далее).<br />
<br />
Я сделал небольшое браузерное расширение (без Node-RED и без перепрошивок), которое добавляет на страницу /ifttt.html компактную панель для массовой настройки:<br />
<br />
автоматическое определение DI/DO (из cookie Device, input_num / output_num)<br />
<br />
Fill 1–16 / Fill 1–DOmax / Fill all (1–DImax)<br />
<br />
массовое применение правил через POST /ifttt/save_channel<br />
<br />
выбор триггера (single / double / hold / edges) и действия ON / OFF / TOGGLE<br />
<br />
Скачать:<br />
<a href="https://npekpacho.ru/downloads/kcs-mass-mapper-ext.zip" target="_blank" rel="noopener" class="mycode_url">https://npekpacho.ru/downloads/kcs-mass-mapper-ext.zip</a><br />
<br />
Было бы здорово увидеть официальный “bulk IFTTT mapper” прямо в KCS. Такая функция реально экономит время, а обещания «скоро добавим» длятся уже не первый год ?<br />
<br />
EN<br />
<br />
Hi!<br />
KCS is a functional system, but the IFTTT web UI becomes quite heavy when you need fast bulk DI→DO mapping (for example DI1 → DO1 toggle for many channels).<br />
<br />
I made a small browser extension (no Node-RED, no firmware changes) that adds a compact bulk-mapping panel to /ifttt.html:<br />
<br />
automatic DI/DO detection (from the Device cookie: input_num / output_num)<br />
<br />
Fill 1–16 / Fill 1–DOmax / Fill all (1–DImax)<br />
<br />
bulk rule application via POST /ifttt/save_channel<br />
<br />
trigger selection (single / double / hold / edges) and action ON / OFF / TOGGLE<br />
<br />
Download:<br />
<a href="https://npekpacho.ru/downloads/kcs-mass-mapper-ext.zip" target="_blank" rel="noopener" class="mycode_url">https://npekpacho.ru/downloads/kcs-mass-mapper-ext.zip</a><br />
<br />
It would be great to see an official “bulk IFTTT mapper” built directly into KCS. This kind of feature saves a lot of time, and the “coming soon” promise seems to be going on for years ?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA["KCS" v3.19.0 firmware BIN file download]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8907</link>
			<pubDate>Tue, 13 Jan 2026 09:17:13 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8907</guid>
			<description><![CDATA[v3.19.0 improvement:<br />
1. Added free GPIO can use by digital input ports<br />
2. Improved home assistant's ability to quickly respond to digital input state changes<br />
3. Renamed digital input ports by (buttons + input) on G1 controller<br />
4. Removed invalid TR humidity sensor on home assistant<br />
5. Fxed mqtt bug with ALR board<br />
6. Fixed bug energy data with N series board.<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8946" target="_blank" title="">KCS_T16M_V3.19.0.zip</a> (Size: 1.09 MB / Downloads: 112)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8947" target="_blank" title="">KCS_A2V3_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 106)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8948" target="_blank" title="">KCS_A6V3_V3.19.0.zip</a> (Size: 1.08 MB / Downloads: 102)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8949" target="_blank" title="">KCS_A8V3_V3.19.0.zip</a> (Size: 1.13 MB / Downloads: 112)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8950" target="_blank" title="">KCS_A16V3_V3.19.0.zip</a> (Size: 1.15 MB / Downloads: 142)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8951" target="_blank" title="">KCS_A32PRO_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 101)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8952" target="_blank" title="">KCS_AG8_V3.19.0.zip</a> (Size: 1.09 MB / Downloads: 92)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8953" target="_blank" title="">KCS_AIO_HYBRID_V3.19.0.zip</a> (Size: 1.32 MB / Downloads: 104)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8954" target="_blank" title="">KCS_ALR_V3.19.0.zip</a> (Size: 1.08 MB / Downloads: 95)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8955" target="_blank" title="">KCS_B8_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 92)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8956" target="_blank" title="">KCS_B8M_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 122)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8957" target="_blank" title="">KCS_B16_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 91)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8958" target="_blank" title="">KCS_B16M_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 97)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8959" target="_blank" title="">KCS_B24_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 93)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8960" target="_blank" title="">KCS_B24M_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 98)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8961" target="_blank" title="">KCS_B32M_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 92)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8962" target="_blank" title="">KCS_DM16_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 88)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8963" target="_blank" title="">KCS_F4_V3.19.0.zip</a> (Size: 1.13 MB / Downloads: 101)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8964" target="_blank" title="">KCS_F8_V3.19.0.zip</a> (Size: 1.13 MB / Downloads: 101)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8965" target="_blank" title="">KCS_F16_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 101)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8966" target="_blank" title="">KCS_F24_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 105)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8967" target="_blank" title="">KCS_F32_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 100)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8968" target="_blank" title="">KCS_G1_V3.19.0.zip</a> (Size: 1.1 MB / Downloads: 92)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8969" target="_blank" title="">KCS_KC_TA_V3.19.0.zip</a> (Size: 1.09 MB / Downloads: 93)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8970" target="_blank" title="">KCS_N10_V3.19.0.zip</a> (Size: 1 MB / Downloads: 105)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8971" target="_blank" title="">KCS_N20_V3.19.0.zip</a> (Size: 1 MB / Downloads: 93)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8972" target="_blank" title="">KCS_N30_V3.19.0.zip</a> (Size: 1 MB / Downloads: 91)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8973" target="_blank" title="">KCS_N60_V3.19.0.zip</a> (Size: 1.02 MB / Downloads: 89)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8974" target="_blank" title="">KCS_T32M_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 95)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8975" target="_blank" title="">KCS_T64M_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 93)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8976" target="_blank" title="">KCS_T128M_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 95)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8977" target="_blank" title="">KCS_TR_V3.19.0.zip</a> (Size: 1.06 MB / Downloads: 99)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8978" target="_blank" title="">KCS_Z1_V3.19.0.zip</a> (Size: 1.24 MB / Downloads: 101)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[v3.19.0 improvement:<br />
1. Added free GPIO can use by digital input ports<br />
2. Improved home assistant's ability to quickly respond to digital input state changes<br />
3. Renamed digital input ports by (buttons + input) on G1 controller<br />
4. Removed invalid TR humidity sensor on home assistant<br />
5. Fxed mqtt bug with ALR board<br />
6. Fixed bug energy data with N series board.<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8946" target="_blank" title="">KCS_T16M_V3.19.0.zip</a> (Size: 1.09 MB / Downloads: 112)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8947" target="_blank" title="">KCS_A2V3_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 106)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8948" target="_blank" title="">KCS_A6V3_V3.19.0.zip</a> (Size: 1.08 MB / Downloads: 102)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8949" target="_blank" title="">KCS_A8V3_V3.19.0.zip</a> (Size: 1.13 MB / Downloads: 112)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8950" target="_blank" title="">KCS_A16V3_V3.19.0.zip</a> (Size: 1.15 MB / Downloads: 142)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8951" target="_blank" title="">KCS_A32PRO_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 101)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8952" target="_blank" title="">KCS_AG8_V3.19.0.zip</a> (Size: 1.09 MB / Downloads: 92)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8953" target="_blank" title="">KCS_AIO_HYBRID_V3.19.0.zip</a> (Size: 1.32 MB / Downloads: 104)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8954" target="_blank" title="">KCS_ALR_V3.19.0.zip</a> (Size: 1.08 MB / Downloads: 95)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8955" target="_blank" title="">KCS_B8_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 92)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8956" target="_blank" title="">KCS_B8M_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 122)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8957" target="_blank" title="">KCS_B16_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 91)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8958" target="_blank" title="">KCS_B16M_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 97)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8959" target="_blank" title="">KCS_B24_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 93)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8960" target="_blank" title="">KCS_B24M_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 98)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8961" target="_blank" title="">KCS_B32M_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 92)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8962" target="_blank" title="">KCS_DM16_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 88)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8963" target="_blank" title="">KCS_F4_V3.19.0.zip</a> (Size: 1.13 MB / Downloads: 101)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8964" target="_blank" title="">KCS_F8_V3.19.0.zip</a> (Size: 1.13 MB / Downloads: 101)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8965" target="_blank" title="">KCS_F16_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 101)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8966" target="_blank" title="">KCS_F24_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 105)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8967" target="_blank" title="">KCS_F32_V3.19.0.zip</a> (Size: 1.14 MB / Downloads: 100)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8968" target="_blank" title="">KCS_G1_V3.19.0.zip</a> (Size: 1.1 MB / Downloads: 92)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8969" target="_blank" title="">KCS_KC_TA_V3.19.0.zip</a> (Size: 1.09 MB / Downloads: 93)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8970" target="_blank" title="">KCS_N10_V3.19.0.zip</a> (Size: 1 MB / Downloads: 105)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8971" target="_blank" title="">KCS_N20_V3.19.0.zip</a> (Size: 1 MB / Downloads: 93)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8972" target="_blank" title="">KCS_N30_V3.19.0.zip</a> (Size: 1 MB / Downloads: 91)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8973" target="_blank" title="">KCS_N60_V3.19.0.zip</a> (Size: 1.02 MB / Downloads: 89)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8974" target="_blank" title="">KCS_T32M_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 95)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8975" target="_blank" title="">KCS_T64M_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 93)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8976" target="_blank" title="">KCS_T128M_V3.19.0.zip</a> (Size: 1.11 MB / Downloads: 95)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8977" target="_blank" title="">KCS_TR_V3.19.0.zip</a> (Size: 1.06 MB / Downloads: 99)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8978" target="_blank" title="">KCS_Z1_V3.19.0.zip</a> (Size: 1.24 MB / Downloads: 101)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[IFTTT T64M]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8821</link>
			<pubDate>Sun, 14 Dec 2025 22:28:39 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=9677">Bejakke</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8821</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b"><span style="font-style: italic;" class="mycode_i"><span style="text-decoration: underline;" class="mycode_u">SetUp </span></span></span><br />
<br />
Board Model: T64M<br />
Software Version: v3.18.0<br />
<br />
DI1 = push button<br />
DO1 = control lamp<br />
DO2 = Pulse Start<br />
DO3 = Pulse Stop<br />
 <br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-style: italic;" class="mycode_i"><span style="text-decoration: underline;" class="mycode_u">Output</span></span></span><br />
Output DO2 Delay 0.5s<br />
Output DO3 Delay 0.5s<br />
 <br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-style: italic;" class="mycode_i"><span style="text-decoration: underline;" class="mycode_u">IFTTT</span></span></span><br />
1) If -&gt; DI1 Rising Edge, and, DO1 OFF -&gt; Then -&gt; Toggle DO2 , DO1 ON<br />
2) If _&gt; DI1 Rising Edge, and, DO1 ON -&gt; Then -&gt; Toggle DO3, DO1 OFF<br />
<br />
When I test the code via IFTTT by clicking "run," it works.<br />
However, when I use my pushbutton DI1, output DO1 turns on and I get a pulse from DO2. <br />
This happens repeatedly, no matter how many times I press the button.<br />
The output doesn't turn off when I press the button a second time.<br />
It seems like the "If DO1 on" nor the "If DO1 off" is working.<br />
<hr class="mycode_hr" />
Will there be an option to back up settings?<br />
With the option to restore the backup after an update.]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b"><span style="font-style: italic;" class="mycode_i"><span style="text-decoration: underline;" class="mycode_u">SetUp </span></span></span><br />
<br />
Board Model: T64M<br />
Software Version: v3.18.0<br />
<br />
DI1 = push button<br />
DO1 = control lamp<br />
DO2 = Pulse Start<br />
DO3 = Pulse Stop<br />
 <br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-style: italic;" class="mycode_i"><span style="text-decoration: underline;" class="mycode_u">Output</span></span></span><br />
Output DO2 Delay 0.5s<br />
Output DO3 Delay 0.5s<br />
 <br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-style: italic;" class="mycode_i"><span style="text-decoration: underline;" class="mycode_u">IFTTT</span></span></span><br />
1) If -&gt; DI1 Rising Edge, and, DO1 OFF -&gt; Then -&gt; Toggle DO2 , DO1 ON<br />
2) If _&gt; DI1 Rising Edge, and, DO1 ON -&gt; Then -&gt; Toggle DO3, DO1 OFF<br />
<br />
When I test the code via IFTTT by clicking "run," it works.<br />
However, when I use my pushbutton DI1, output DO1 turns on and I get a pulse from DO2. <br />
This happens repeatedly, no matter how many times I press the button.<br />
The output doesn't turn off when I press the button a second time.<br />
It seems like the "If DO1 on" nor the "If DO1 off" is working.<br />
<hr class="mycode_hr" />
Will there be an option to back up settings?<br />
With the option to restore the backup after an update.]]></content:encoded>
		</item>
	</channel>
</rss>