<?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 - Customer project example]]></title>
		<link>https://www.kincony.com/forum/</link>
		<description><![CDATA[Smart Home Automation Forum - https://www.kincony.com/forum]]></description>
		<pubDate>Sun, 12 Apr 2026 22:42:48 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[IoT Weather Station - Class B]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=7926</link>
			<pubDate>Thu, 10 Apr 2025 21:26:55 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=7416">egionet</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=7926</guid>
			<description><![CDATA[This is an ongoing project, and I plan to deploy the station in a month or so.  This setup leverages class B scientific grade meteorological instruments polled over serial MODBUS.  The controller enclosure's environment is monitored by a Kilcony RS-485 temperature and relative humidity RTU, and barometric pressure is monitored by a BMP280 over I2C.  The code base is in C i.e. ESP-IDF, and a sample implementation is available <a href="https://github.com/K0I05/KINCONY-S3_RTU" target="_blank" rel="noopener" class="mycode_url">here.</a><br />
<br />
Telemetry data model:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>typedef struct rpu_telemetry_data_s {<br />
    uint64_t    timestamp;<br />
    struct rpu_s {<br />
        char        network_id[16];<br />
        char        name[32];<br />
        uint32_t    system_uptime;<br />
        uint64_t    reboot_timestamp;<br />
        uint16_t    reboot_counter;<br />
    } rpu;<br />
    struct atmospheric_s {<br />
        float                 &nbsp;&nbsp;spot_wind_speed;<br />
        uint16_t                spot_wind_direction;<br />
        float                 &nbsp;&nbsp;avg_wind_speed;<br />
        uint16_t                avg_wind_direction;<br />
        float                 &nbsp;&nbsp;max_wind_speed;<br />
        uint16_t                max_wind_direction;<br />
        float                 &nbsp;&nbsp;air_temperature;<br />
        float                 &nbsp;&nbsp;relative_humidity;<br />
        float                 &nbsp;&nbsp;dewpoint_temperature;<br />
        float                 &nbsp;&nbsp;barometric_pressure;<br />
        float                 &nbsp;&nbsp;precipitation_rate;<br />
        hyrs2e_precip_types_t &nbsp;&nbsp;precipitation_type;<br />
    } atmospheric;<br />
    struct ground_s {<br />
        float &nbsp;&nbsp;soil_temperature;<br />
    } ground;<br />
    struct cabinet_s {<br />
        float &nbsp;&nbsp;air_temperature;<br />
        float &nbsp;&nbsp;relative_humidity;<br />
        float &nbsp;&nbsp;dewpoint_temperature;<br />
        cabinet_door_states_t door_status;<br />
    } cabinet;<br />
} rpu_telemetry_data_t;</code></div></div><br />
Telemetry data is uploaded to ThingSpeak once a minute over MQTT when connected to a Wi-Fi network.<br />
<br />
<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=7394" target="_blank" title="">IMG_2636.jpg</a> (Size: 3.19 MB / Downloads: 508)
<!-- end: postbit_attachments_attachment --><!-- 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=7395" target="_blank" title="">IMG_2637.jpg</a> (Size: 2.81 MB / Downloads: 536)
<!-- end: postbit_attachments_attachment --><!-- 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=7396" target="_blank" title="">IMG_2635.jpg</a> (Size: 3.08 MB / Downloads: 528)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[This is an ongoing project, and I plan to deploy the station in a month or so.  This setup leverages class B scientific grade meteorological instruments polled over serial MODBUS.  The controller enclosure's environment is monitored by a Kilcony RS-485 temperature and relative humidity RTU, and barometric pressure is monitored by a BMP280 over I2C.  The code base is in C i.e. ESP-IDF, and a sample implementation is available <a href="https://github.com/K0I05/KINCONY-S3_RTU" target="_blank" rel="noopener" class="mycode_url">here.</a><br />
<br />
Telemetry data model:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>typedef struct rpu_telemetry_data_s {<br />
    uint64_t    timestamp;<br />
    struct rpu_s {<br />
        char        network_id[16];<br />
        char        name[32];<br />
        uint32_t    system_uptime;<br />
        uint64_t    reboot_timestamp;<br />
        uint16_t    reboot_counter;<br />
    } rpu;<br />
    struct atmospheric_s {<br />
        float                 &nbsp;&nbsp;spot_wind_speed;<br />
        uint16_t                spot_wind_direction;<br />
        float                 &nbsp;&nbsp;avg_wind_speed;<br />
        uint16_t                avg_wind_direction;<br />
        float                 &nbsp;&nbsp;max_wind_speed;<br />
        uint16_t                max_wind_direction;<br />
        float                 &nbsp;&nbsp;air_temperature;<br />
        float                 &nbsp;&nbsp;relative_humidity;<br />
        float                 &nbsp;&nbsp;dewpoint_temperature;<br />
        float                 &nbsp;&nbsp;barometric_pressure;<br />
        float                 &nbsp;&nbsp;precipitation_rate;<br />
        hyrs2e_precip_types_t &nbsp;&nbsp;precipitation_type;<br />
    } atmospheric;<br />
    struct ground_s {<br />
        float &nbsp;&nbsp;soil_temperature;<br />
    } ground;<br />
    struct cabinet_s {<br />
        float &nbsp;&nbsp;air_temperature;<br />
        float &nbsp;&nbsp;relative_humidity;<br />
        float &nbsp;&nbsp;dewpoint_temperature;<br />
        cabinet_door_states_t door_status;<br />
    } cabinet;<br />
} rpu_telemetry_data_t;</code></div></div><br />
Telemetry data is uploaded to ThingSpeak once a minute over MQTT when connected to a Wi-Fi network.<br />
<br />
<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=7394" target="_blank" title="">IMG_2636.jpg</a> (Size: 3.19 MB / Downloads: 508)
<!-- end: postbit_attachments_attachment --><!-- 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=7395" target="_blank" title="">IMG_2637.jpg</a> (Size: 2.81 MB / Downloads: 536)
<!-- end: postbit_attachments_attachment --><!-- 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=7396" target="_blank" title="">IMG_2635.jpg</a> (Size: 3.08 MB / Downloads: 528)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JST XH2.54 to QWIIC Wiring Harness]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=7924</link>
			<pubDate>Thu, 10 Apr 2025 12:32:05 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=7416">egionet</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=7924</guid>
			<description><![CDATA[Simple solution to convert JST XH2.54 I2C port connector to QWIIC.<br />
<br />
<a href="https://www.aliexpress.com/item/1005007057458997.html?spm=a2g0o.order_list.order_list_main.112.46dc1802Vq2kBA" target="_blank" rel="noopener" class="mycode_url">Breadboard QWIIC cable adapter</a><br />
<br />
<a href="https://www.aliexpress.com/item/1005005922169031.html?spm=a2g0o.order_list.order_list_main.118.46dc1802Vq2kBA" target="_blank" rel="noopener" class="mycode_url">JST XH2.54 Female 4-pin Cable Adapter</a><br />
<br />
Solder JST XH2.54 adapter wires to the QWIIC breadboard:<br />
<ul class="mycode_list"><li>Black to 3.3V<br />
</li>
<li>Green to GND<br />
</li>
<li>White to SCL<br />
</li>
<li>Red to SDA<br />
</li>
</ul>
<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=7390" target="_blank" title="">IMG_2633.jpg</a> (Size: 2.53 MB / Downloads: 391)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Simple solution to convert JST XH2.54 I2C port connector to QWIIC.<br />
<br />
<a href="https://www.aliexpress.com/item/1005007057458997.html?spm=a2g0o.order_list.order_list_main.112.46dc1802Vq2kBA" target="_blank" rel="noopener" class="mycode_url">Breadboard QWIIC cable adapter</a><br />
<br />
<a href="https://www.aliexpress.com/item/1005005922169031.html?spm=a2g0o.order_list.order_list_main.118.46dc1802Vq2kBA" target="_blank" rel="noopener" class="mycode_url">JST XH2.54 Female 4-pin Cable Adapter</a><br />
<br />
Solder JST XH2.54 adapter wires to the QWIIC breadboard:<br />
<ul class="mycode_list"><li>Black to 3.3V<br />
</li>
<li>Green to GND<br />
</li>
<li>White to SCL<br />
</li>
<li>Red to SDA<br />
</li>
</ul>
<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=7390" target="_blank" title="">IMG_2633.jpg</a> (Size: 2.53 MB / Downloads: 391)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Kilcony RS-485 SHT30 Sensor - Setting MODBUS Address]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=7918</link>
			<pubDate>Wed, 09 Apr 2025 07:18:37 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=7416">egionet</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=7918</guid>
			<description><![CDATA[Hello,<br />
<br />
<span style="color: #202223;" class="mycode_color"><span style="font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;" class="mycode_font">I tried changing the MODBUS address from MODBUS ID 1 to 15 on the RS-485 SHT30 temperature and relative humidity module through a function 6 write, disconnected the connector for 5 to 10 seconds, reconnected the connector, and polled the sensor over MODBUS. However, the device only responds to MODBUS ID 1, but I can see the updated MODBUS address in register 0x0a as 0x0F.</span></span><br />
<span style="color: #202223;" class="mycode_color"><span style="font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;" class="mycode_font"><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=7374" target="_blank" title="">Screenshot 2025-04-08 201445 mb.png</a> (Size: 363.69 KB / Downloads: 519)
<!-- end: postbit_attachments_attachment --><br />
Is there another setting that has to be configured?</span></span>]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
<span style="color: #202223;" class="mycode_color"><span style="font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;" class="mycode_font">I tried changing the MODBUS address from MODBUS ID 1 to 15 on the RS-485 SHT30 temperature and relative humidity module through a function 6 write, disconnected the connector for 5 to 10 seconds, reconnected the connector, and polled the sensor over MODBUS. However, the device only responds to MODBUS ID 1, but I can see the updated MODBUS address in register 0x0a as 0x0F.</span></span><br />
<span style="color: #202223;" class="mycode_color"><span style="font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;" class="mycode_font"><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=7374" target="_blank" title="">Screenshot 2025-04-08 201445 mb.png</a> (Size: 363.69 KB / Downloads: 519)
<!-- end: postbit_attachments_attachment --><br />
Is there another setting that has to be configured?</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-A4]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=5770</link>
			<pubDate>Sat, 18 May 2024 21:49:35 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=4768">Negro2006</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=5770</guid>
			<description><![CDATA[Hola. Tengo una Board KC868-A4 Rev 1.2.4 y no tengo el esquema que corresponde. Donde lo puedo encontrar ? No coincide la entrada de sensores temperatura]]></description>
			<content:encoded><![CDATA[Hola. Tengo una Board KC868-A4 Rev 1.2.4 y no tengo el esquema que corresponde. Donde lo puedo encontrar ? No coincide la entrada de sensores temperatura]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-A4]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=5719</link>
			<pubDate>Sat, 11 May 2024 03:17:08 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=4768">Negro2006</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=5719</guid>
			<description><![CDATA[hola. Adquiri una placa Kincony KC868-A4. Estoy usando el Firmware KSC. En la seccion de IR recibe correctamente el code del control remoto pero no logro usarlo en IFTT para activar un rele de salida.. No lo encuentra como entrada. Que estoy haciendo mal ? Gracias]]></description>
			<content:encoded><![CDATA[hola. Adquiri una placa Kincony KC868-A4. Estoy usando el Firmware KSC. En la seccion de IR recibe correctamente el code del control remoto pero no logro usarlo en IFTT para activar un rele de salida.. No lo encuentra como entrada. Que estoy haciendo mal ? Gracias]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-Ax - Attivazione NOTIFICHE su TUYA SMART LIFE]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=4057</link>
			<pubDate>Tue, 02 Jan 2024 18:49:20 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=3392">Pask media_king</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=4057</guid>
			<description><![CDATA[Saluti a tutti e auguri.<br />
Sono nuovo del forum e chiedo aiuto per attivare le notifiche della variazione degli ingressi su<br />
 una KC868-A4 con licenza TUYA.<br />
Puoi aiutarmi gentilmente?<br />
Grazie in anticipo a tutti coloro che risponderanno.]]></description>
			<content:encoded><![CDATA[Saluti a tutti e auguri.<br />
Sono nuovo del forum e chiedo aiuto per attivare le notifiche della variazione degli ingressi su<br />
 una KC868-A4 con licenza TUYA.<br />
Puoi aiutarmi gentilmente?<br />
Grazie in anticipo a tutti coloro che risponderanno.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[New Project Enquiry]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=3239</link>
			<pubDate>Thu, 07 Sep 2023 00:11:14 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=2534">dharma</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=3239</guid>
			<description><![CDATA[Dear Sirs<br />
<br />
I am planning home automation for my new flat and have the following query.<br />
<br />
I already have a very powerful system running Home Assistant on it with Zigbee, google assistant and alexa installed.<br />
<br />
1.  Can I just buy any of your KC868 boards such as H32B Pro, A128, KC 868 AI or E16S and attach it to my computer and it would work?<br />
<br />
2.  Are these boards modular in design?  Meaning, say I buy 1 board now and in future, I need to attach extra DI, AI and/or RO, can I attach 1 or more boards and still operate them in the one single system?<br />
<br />
3.  Also, how will the system function if any of the boards fail?  How to make sure we have some manual control in case of failure of the components in the boards?<br />
<br />
<br />
Thanks a lot<br />
Dharmesh]]></description>
			<content:encoded><![CDATA[Dear Sirs<br />
<br />
I am planning home automation for my new flat and have the following query.<br />
<br />
I already have a very powerful system running Home Assistant on it with Zigbee, google assistant and alexa installed.<br />
<br />
1.  Can I just buy any of your KC868 boards such as H32B Pro, A128, KC 868 AI or E16S and attach it to my computer and it would work?<br />
<br />
2.  Are these boards modular in design?  Meaning, say I buy 1 board now and in future, I need to attach extra DI, AI and/or RO, can I attach 1 or more boards and still operate them in the one single system?<br />
<br />
3.  Also, how will the system function if any of the boards fail?  How to make sure we have some manual control in case of failure of the components in the boards?<br />
<br />
<br />
Thanks a lot<br />
Dharmesh]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-A32 smart control blind motor by home assistant using ESPHome]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2864</link>
			<pubDate>Wed, 03 May 2023 08:36:40 +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=2864</guid>
			<description><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/hxvGxfDrba4" frameborder="0" allowfullscreen="true"></iframe>]]></description>
			<content:encoded><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/hxvGxfDrba4" frameborder="0" allowfullscreen="true"></iframe>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Kazakhstan agricultural greenhouse automation case by KC868 A8]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2863</link>
			<pubDate>Wed, 03 May 2023 08:36:10 +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=2863</guid>
			<description><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/TeNisJ-dGBo" frameborder="0" allowfullscreen="true"></iframe>]]></description>
			<content:encoded><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/TeNisJ-dGBo" frameborder="0" allowfullscreen="true"></iframe>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Maldives case replace H32B with H32B Pro for Tuya and Home Assistant]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2862</link>
			<pubDate>Wed, 03 May 2023 08:35:44 +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=2862</guid>
			<description><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/ye-vm9Dln7Q" frameborder="0" allowfullscreen="true"></iframe>]]></description>
			<content:encoded><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/ye-vm9Dln7Q" frameborder="0" allowfullscreen="true"></iframe>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Brazil case for home automation DIY by KC868-A32 Smart Controller]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2861</link>
			<pubDate>Wed, 03 May 2023 08:35:12 +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=2861</guid>
			<description><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/enkfi0Fl2PE" frameborder="0" allowfullscreen="true"></iframe>]]></description>
			<content:encoded><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/enkfi0Fl2PE" frameborder="0" allowfullscreen="true"></iframe>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Russia case for smart home voice control by alice speaker]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2860</link>
			<pubDate>Wed, 03 May 2023 08:34:37 +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=2860</guid>
			<description><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/95KvWmaCF4E" frameborder="0" allowfullscreen="true"></iframe>]]></description>
			<content:encoded><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/95KvWmaCF4E" frameborder="0" allowfullscreen="true"></iframe>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KinCony Controller Setup and Display interfaces case explain from America]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2859</link>
			<pubDate>Wed, 03 May 2023 08:34:03 +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=2859</guid>
			<description><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/t7C_sn5N_nM" frameborder="0" allowfullscreen="true"></iframe>]]></description>
			<content:encoded><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/t7C_sn5N_nM" frameborder="0" allowfullscreen="true"></iframe>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Smart Power Distribution Box case from Nepal by KinCony Controller]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2858</link>
			<pubDate>Wed, 03 May 2023 08:33:22 +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=2858</guid>
			<description><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/IlvZjjN6crM" frameborder="0" allowfullscreen="true"></iframe>]]></description>
			<content:encoded><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/IlvZjjN6crM" frameborder="0" allowfullscreen="true"></iframe>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Macedonia vegetables auto grow system case by KinCony Controller]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2857</link>
			<pubDate>Wed, 03 May 2023 08:32:52 +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=2857</guid>
			<description><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/6Snmvjd5yJE" frameborder="0" allowfullscreen="true"></iframe>]]></description>
			<content:encoded><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/6Snmvjd5yJE" frameborder="0" allowfullscreen="true"></iframe>]]></content:encoded>
		</item>
	</channel>
</rss>