<?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 - KC868-A16S]]></title>
		<link>https://www.kincony.com/forum/</link>
		<description><![CDATA[Smart Home Automation Forum - https://www.kincony.com/forum]]></description>
		<pubDate>Sun, 10 May 2026 03:46:29 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[KC868-A16S GSM/LTE Connection Issue - CSQ=99 (No Signal)]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8967</link>
			<pubDate>Mon, 26 Jan 2026 17:09:59 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=10298">vardan</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8967</guid>
			<description><![CDATA[Problem Summary<br />
I cannot get network registration on my KC868-A16S board. The modem consistently returns CSQ=99 (No Signal) and fails to attach to GPRS.<br />
________________________________________<br />
Hardware Setup<br />
• Board: KC868-A16S (ESP32 with integrated GSM module)<br />
• SIM Card: Active SIM with data plan (tested working in phone)<br />
• Antenna: LTE antenna connected to the antenna port<br />
• Power: 12V DC power supply<br />
<br />
Software Configuration<br />
Platform<br />
• PlatformIO with Arduino framework<br />
• ESP32 Dev Module target<br />
• TinyGSM library v0.11.7<br />
Pin Configuration (from our code)<br />
// GSM Module Pins<br />
#define PIN_GSM_RX 32  // ESP32 receives from modem<br />
#define PIN_GSM_TX 33  // ESP32 sends to modem<br />
#define PIN_GSM_PWR 23 // Power pin (unused currently)<br />
APN Settings<br />
#define APN_NAME "internet"<br />
#define APN_USER ""<br />
#define APN_PASS ""<br />
________________________________________<br />
Initialization Code<br />
// GSM Modem Init<br />
SerialAT.begin(115200, SERIAL_8N1, PIN_GSM_RX, PIN_GSM_TX);<br />
delay(3000);<br />
Serial.println("Initializing GSM modem...");<br />
modem.restart();<br />
// Check Signal Quality<br />
int csq = modem.getSignalQuality();<br />
Serial.print("Signal Quality (CSQ): ");<br />
Serial.println(csq);<br />
// Wait for Network<br />
if (!modem.waitForNetwork(15000)) {<br />
    Serial.println("Network registration FAILED");<br />
} else {<br />
    Serial.println("Network OK");<br />
    // Connect to GPRS<br />
    if (!modem.gprsConnect(APN_NAME, APN_USER, APN_PASS)) {<br />
        Serial.println("GPRS Connect failed");<br />
    }<br />
}<br />
________________________________________<br />
Serial Monitor Output<br />
Initializing GSM modem...<br />
Signal Quality (CSQ): 99<br />
Waiting for network... FAILED (will retry in loop)<br />
Network lost. Reconnecting...<br />
Network unreachable<br />
CSQ=99 means "Not Detectable" according to AT command specifications.<br />
________________________________________<br />
What I Have Tried<br />
1. ✅ Verified SIM card works in mobile phone<br />
2. ✅ Tried different APN names ("internet", "")<br />
3. ✅ Checked antenna connection<br />
4. ✅ Tried baud rates: 9600, 57600, 115200<br />
5. ✅ Power cycled the board multiple times<br />
6. ❓ Not sure if there is a PWR_KEY or RESET pin that needs toggling<br />
________________________________________<br />
Questions for KinCony Team<br />
1. What is the GSM module model on the A16S? (SIM7600, SIM800L, A7670C, or other?)<br />
2. Are the TX/RX pins correct? (We use GPIO 32 for RX, GPIO 33 for TX)<br />
3. Is there a power-on sequence required? Does the GSM module have a PWR_KEY or RESET pin that must be toggled before use?<br />
4. What baud rate should we use? (Currently 115200)<br />
5. Do you have a working demo code or .bin file that we can flash to verify the hardware works?<br />
________________________________________<br />
Additional Information<br />
• Wi-Fi connection works perfectly on the same board<br />
• All other I2C devices (PCF8574, RTC, sensors) work correctly<br />
• The board was purchased recently and appears undamaged<br />
Thank you for your help!]]></description>
			<content:encoded><![CDATA[Problem Summary<br />
I cannot get network registration on my KC868-A16S board. The modem consistently returns CSQ=99 (No Signal) and fails to attach to GPRS.<br />
________________________________________<br />
Hardware Setup<br />
• Board: KC868-A16S (ESP32 with integrated GSM module)<br />
• SIM Card: Active SIM with data plan (tested working in phone)<br />
• Antenna: LTE antenna connected to the antenna port<br />
• Power: 12V DC power supply<br />
<br />
Software Configuration<br />
Platform<br />
• PlatformIO with Arduino framework<br />
• ESP32 Dev Module target<br />
• TinyGSM library v0.11.7<br />
Pin Configuration (from our code)<br />
// GSM Module Pins<br />
#define PIN_GSM_RX 32  // ESP32 receives from modem<br />
#define PIN_GSM_TX 33  // ESP32 sends to modem<br />
#define PIN_GSM_PWR 23 // Power pin (unused currently)<br />
APN Settings<br />
#define APN_NAME "internet"<br />
#define APN_USER ""<br />
#define APN_PASS ""<br />
________________________________________<br />
Initialization Code<br />
// GSM Modem Init<br />
SerialAT.begin(115200, SERIAL_8N1, PIN_GSM_RX, PIN_GSM_TX);<br />
delay(3000);<br />
Serial.println("Initializing GSM modem...");<br />
modem.restart();<br />
// Check Signal Quality<br />
int csq = modem.getSignalQuality();<br />
Serial.print("Signal Quality (CSQ): ");<br />
Serial.println(csq);<br />
// Wait for Network<br />
if (!modem.waitForNetwork(15000)) {<br />
    Serial.println("Network registration FAILED");<br />
} else {<br />
    Serial.println("Network OK");<br />
    // Connect to GPRS<br />
    if (!modem.gprsConnect(APN_NAME, APN_USER, APN_PASS)) {<br />
        Serial.println("GPRS Connect failed");<br />
    }<br />
}<br />
________________________________________<br />
Serial Monitor Output<br />
Initializing GSM modem...<br />
Signal Quality (CSQ): 99<br />
Waiting for network... FAILED (will retry in loop)<br />
Network lost. Reconnecting...<br />
Network unreachable<br />
CSQ=99 means "Not Detectable" according to AT command specifications.<br />
________________________________________<br />
What I Have Tried<br />
1. ✅ Verified SIM card works in mobile phone<br />
2. ✅ Tried different APN names ("internet", "")<br />
3. ✅ Checked antenna connection<br />
4. ✅ Tried baud rates: 9600, 57600, 115200<br />
5. ✅ Power cycled the board multiple times<br />
6. ❓ Not sure if there is a PWR_KEY or RESET pin that needs toggling<br />
________________________________________<br />
Questions for KinCony Team<br />
1. What is the GSM module model on the A16S? (SIM7600, SIM800L, A7670C, or other?)<br />
2. Are the TX/RX pins correct? (We use GPIO 32 for RX, GPIO 33 for TX)<br />
3. Is there a power-on sequence required? Does the GSM module have a PWR_KEY or RESET pin that must be toggled before use?<br />
4. What baud rate should we use? (Currently 115200)<br />
5. Do you have a working demo code or .bin file that we can flash to verify the hardware works?<br />
________________________________________<br />
Additional Information<br />
• Wi-Fi connection works perfectly on the same board<br />
• All other I2C devices (PCF8574, RTC, sensors) work correctly<br />
• The board was purchased recently and appears undamaged<br />
Thank you for your help!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Modbus RS485 in Esphome]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8569</link>
			<pubDate>Fri, 19 Sep 2025 01:31:08 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=3577">Bergoglio</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8569</guid>
			<description><![CDATA[Good morning,<br />
<br />
I need to know how to enable the Modbus RS485 port in ESPHome for this board KC868-A16S.<br />
<br />
I have this question because I need to control 6 fancoils Ideal Clima Ikaro with modbus protocol.<br />
<br />
I attach pages of the service manual about modbus to understand if it is possible and how to do.<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8360" target="_blank" title="">Idealclima Ikaro modbus.pdf</a> (Size: 302.63 KB / Downloads: 327)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Good morning,<br />
<br />
I need to know how to enable the Modbus RS485 port in ESPHome for this board KC868-A16S.<br />
<br />
I have this question because I need to control 6 fancoils Ideal Clima Ikaro with modbus protocol.<br />
<br />
I attach pages of the service manual about modbus to understand if it is possible and how to do.<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=8360" target="_blank" title="">Idealclima Ikaro modbus.pdf</a> (Size: 302.63 KB / Downloads: 327)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[DS3231 RTC module]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8480</link>
			<pubDate>Mon, 01 Sep 2025 04:16:22 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=9349">rosnoteh</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8480</guid>
			<description><![CDATA[how is the time set in the ds3231 module?]]></description>
			<content:encoded><![CDATA[how is the time set in the ds3231 module?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[No output DO1-DO16]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8479</link>
			<pubDate>Mon, 01 Sep 2025 00:10:04 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=3409">jeftevag</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8479</guid>
			<description><![CDATA[When D1 input is pulled low, the input symbol i the web interface turns green, but the D1 output does not respond. The input push-switches does not do anything. In IFTTT i have: IF DI1  single click, THEN DO 1 ON. When i click RUN, it works fine, but not when i pull DI1 input low og push the DI1 switch. I run firmware version KCS_KC868_E16P_V2.2.14<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=8234" target="_blank" title="">No_output_IFTTT.jpg</a> (Size: 66.4 KB / Downloads: 277)
<!-- end: postbit_attachments_attachment --><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=8235" target="_blank" title="">DI1_single_click.jpg</a> (Size: 29.44 KB / Downloads: 298)
<!-- end: postbit_attachments_attachment --><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=8236" target="_blank" title="">DO1.jpg</a> (Size: 34.54 KB / Downloads: 315)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[When D1 input is pulled low, the input symbol i the web interface turns green, but the D1 output does not respond. The input push-switches does not do anything. In IFTTT i have: IF DI1  single click, THEN DO 1 ON. When i click RUN, it works fine, but not when i pull DI1 input low og push the DI1 switch. I run firmware version KCS_KC868_E16P_V2.2.14<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=8234" target="_blank" title="">No_output_IFTTT.jpg</a> (Size: 66.4 KB / Downloads: 277)
<!-- end: postbit_attachments_attachment --><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=8235" target="_blank" title="">DI1_single_click.jpg</a> (Size: 29.44 KB / Downloads: 298)
<!-- end: postbit_attachments_attachment --><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=8236" target="_blank" title="">DO1.jpg</a> (Size: 34.54 KB / Downloads: 315)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[IIC header]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8462</link>
			<pubDate>Sun, 24 Aug 2025 00:01:14 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=9336">CCampbell</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8462</guid>
			<description><![CDATA[Hi, I would like to integrate a few Bosch BME688 environmental sensors and connect IIC.  Which header is the bus on?  I read that there are only two channels available, so I have a TCA9548A IIC 8-channel expansion board.]]></description>
			<content:encoded><![CDATA[Hi, I would like to integrate a few Bosch BME688 environmental sensors and connect IIC.  Which header is the bus on?  I read that there are only two channels available, so I have a TCA9548A IIC 8-channel expansion board.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-A16S Arduino Issue]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8459</link>
			<pubDate>Thu, 21 Aug 2025 04:27:39 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=9328">zross02</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8459</guid>
			<description><![CDATA[I have purchased a KC868-A16S unit and am having difficulties getting it to work with Arduino codes. I downloaded the firmware to the device and was able to control it via the Wi-Fi connection, but no Arduino code will work with Relay Control. I tried the example codes that were provided in the Arduino library: they all seem to upload but none seem to actually work on the board. I even checked via RealTerm to see if the code was taking, but it said that the Arduino example code failed. Let me know if there is anything I can do to fix this, thank you.]]></description>
			<content:encoded><![CDATA[I have purchased a KC868-A16S unit and am having difficulties getting it to work with Arduino codes. I downloaded the firmware to the device and was able to control it via the Wi-Fi connection, but no Arduino code will work with Relay Control. I tried the example codes that were provided in the Arduino library: they all seem to upload but none seem to actually work on the board. I even checked via RealTerm to see if the code was taking, but it said that the Arduino example code failed. Let me know if there is anything I can do to fix this, thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to configure HTTP post for Webhook]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8308</link>
			<pubDate>Tue, 08 Jul 2025 16:40:10 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1271">land88</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8308</guid>
			<description><![CDATA[Hi,<br />
<br />
My KC868A16s is connected to internet with LAN port, WIFI off (LAN IP 192.168.1.200, mask 255.255.255.0, Gateway 192.168.1.1).<br />
<br />
It get the Board time to internet, no problem, so I think the KC is really connected to internet, it is not behind a firewall.<br />
<br />
In custom protocol, I create Custom1, with :<br />
<br />
"routeur = HTTP POST", "HEX : Empty", "Message :Empty" and "URL(Otional)= <a href="https://xxxx.synology.me/api/webhook/Temp_DC_BAT_G_21deg" target="_blank" rel="noopener" class="mycode_url">https://xxxx.synology.me/api/webhook/Tem...AT_G_21deg</a>", this url is my webhook that is open on internet<br />
<br />
With a Pc connected to internet, in chrome  this url turn on my webhook on my home assistant (boolean ON), but if I run the custom1 in IFFTT, I get "success" on KC but in reality Nothing appears to my home assistant. <br />
<br />
An other isue, when I run this custom protocol, I loose the connection to the board, so I must reboot the board to local access to the web interface !<br />
<br />
I think I have an issue to configure this custom protocol.<br />
<br />
Can you help me ?<br />
<br />
<br />
Thanks.]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
My KC868A16s is connected to internet with LAN port, WIFI off (LAN IP 192.168.1.200, mask 255.255.255.0, Gateway 192.168.1.1).<br />
<br />
It get the Board time to internet, no problem, so I think the KC is really connected to internet, it is not behind a firewall.<br />
<br />
In custom protocol, I create Custom1, with :<br />
<br />
"routeur = HTTP POST", "HEX : Empty", "Message :Empty" and "URL(Otional)= <a href="https://xxxx.synology.me/api/webhook/Temp_DC_BAT_G_21deg" target="_blank" rel="noopener" class="mycode_url">https://xxxx.synology.me/api/webhook/Tem...AT_G_21deg</a>", this url is my webhook that is open on internet<br />
<br />
With a Pc connected to internet, in chrome  this url turn on my webhook on my home assistant (boolean ON), but if I run the custom1 in IFFTT, I get "success" on KC but in reality Nothing appears to my home assistant. <br />
<br />
An other isue, when I run this custom protocol, I loose the connection to the board, so I must reboot the board to local access to the web interface !<br />
<br />
I think I have an issue to configure this custom protocol.<br />
<br />
Can you help me ?<br />
<br />
<br />
Thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-A16S SMS Control issue]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8194</link>
			<pubDate>Tue, 17 Jun 2025 23:12:03 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1271">land88</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8194</guid>
			<description><![CDATA[Hi,<br />
<br />
I have a KC868-A16S V1.1.<br />
I have a problem with sms, I can do a phone test to my mobile phone and I receive the KC868 sms, it's ok.<br />
With a digital input I can do a "Relay on" and it send me a sms notify message, ok.<br />
<br />
The issue is when I want to send with my phone, a sms control to change a relay state, in this case, the KC868 doesn't do anything with IFTT.<br />
It's like the KC868 doesn't receive the sms command.<br />
<br />
How to find the issue ?<br />
<br />
Thanks]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I have a KC868-A16S V1.1.<br />
I have a problem with sms, I can do a phone test to my mobile phone and I receive the KC868 sms, it's ok.<br />
With a digital input I can do a "Relay on" and it send me a sms notify message, ok.<br />
<br />
The issue is when I want to send with my phone, a sms control to change a relay state, in this case, the KC868 doesn't do anything with IFTT.<br />
It's like the KC868 doesn't receive the sms command.<br />
<br />
How to find the issue ?<br />
<br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-A16S analog input]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=7716</link>
			<pubDate>Tue, 25 Feb 2025 02:16:34 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=7854">DK5EW</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=7716</guid>
			<description><![CDATA[I`m giving 1.5V DC at the analog input.<br />
<br />
I save in the webserver my setup but I do not see any voltage at the Tuya app.<br />
<br />
Any hint what is wrong ?<br />
<br />
regrds]]></description>
			<content:encoded><![CDATA[I`m giving 1.5V DC at the analog input.<br />
<br />
I save in the webserver my setup but I do not see any voltage at the Tuya app.<br />
<br />
Any hint what is wrong ?<br />
<br />
regrds]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[LAN port randomly freezing]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=7403</link>
			<pubDate>Sat, 18 Jan 2025 00:33:55 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=3494">djsomi</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=7403</guid>
			<description><![CDATA[Hi All,<br />
<br />
I have an A16S board, which has a problem. LAN is randomly freezing, board itself keep functional, but network is going down.<br />
Ethernet cable replug solves the issue. (or rebooting the unit)<br />
<br />
What can be the reason behind? Makes my automations really unstable.<br />
<br />
<br />
Thank you in advance,<br />
<br />
Zoltan]]></description>
			<content:encoded><![CDATA[Hi All,<br />
<br />
I have an A16S board, which has a problem. LAN is randomly freezing, board itself keep functional, but network is going down.<br />
Ethernet cable replug solves the issue. (or rebooting the unit)<br />
<br />
What can be the reason behind? Makes my automations really unstable.<br />
<br />
<br />
Thank you in advance,<br />
<br />
Zoltan]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-A16S multiple DS18B20 possible ?]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=7344</link>
			<pubDate>Thu, 09 Jan 2025 18:13:31 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1271">land88</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=7344</guid>
			<description><![CDATA[Hi,<br />
<br />
I have connected on KC868-a16S a DS18B20 on 1-Wire input, it's ok with KCS.<br />
Is it possible to put an other DS18B20 in parallel ? I have try, but not possible to see an other sensor temperature.<br />
If not possible with an other DS18B20, is it possible with other sensor type ? by exemple thermistance NTC b3950-10K on Analogic ADC input ? (I think there is two positions analogic for voltage)<br />
<br />
Thanks.]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I have connected on KC868-a16S a DS18B20 on 1-Wire input, it's ok with KCS.<br />
Is it possible to put an other DS18B20 in parallel ? I have try, but not possible to see an other sensor temperature.<br />
If not possible with an other DS18B20, is it possible with other sensor type ? by exemple thermistance NTC b3950-10K on Analogic ADC input ? (I think there is two positions analogic for voltage)<br />
<br />
Thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868_16S System Menu : exit to login]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=7340</link>
			<pubDate>Thu, 09 Jan 2025 04:41:51 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1271">land88</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=7340</guid>
			<description><![CDATA[Hi,<br />
<br />
I have a new KC868_A16S, firmware V2.2.10.<br />
When I want to set ntp in system menu, the menu exit to login and it's impossible to go inside the system Menu.<br />
<br />
How to do ?<br />
Thanks.]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I have a new KC868_A16S, firmware V2.2.10.<br />
When I want to set ntp in system menu, the menu exit to login and it's impossible to go inside the system Menu.<br />
<br />
How to do ?<br />
Thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Problem in output relay]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=7270</link>
			<pubDate>Fri, 27 Dec 2024 19:17:54 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=3577">Bergoglio</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=7270</guid>
			<description><![CDATA[Good afternoon,<br />
<br />
I flashed several times the KC868-A16S board with ESPHome firmware but the relay n. 8 remains always in on state (also the status led on the board) and it is impossible to control it.<br />
<br />
This is the last firmware (still with the problem) :<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>esphome:<br />
  name: centralina-citofono<br />
  friendly_name: Centralina citofono<br />
<br />
esp32:<br />
  board: esp32dev<br />
  framework:<br />
    type: arduino<br />
<br />
# Enable logging<br />
logger:<br />
<br />
# Enable Home Assistant API<br />
api:<br />
  encryption:<br />
    key: "E3acLht11PoN5oLlgBJPgIO/+elvX80lTzGbQPfVnH8="<br />
<br />
ota:<br />
  - platform: esphome<br />
    password: "0b4d665617eac63f109a0dd7b51a409e"<br />
<br />
# Example configuration entry for ESP32<br />
i2c:<br />
  sda: 4<br />
  scl: 5<br />
  scan: true<br />
  id: bus_a<br />
<br />
<br />
# Example configuration entry<br />
ethernet:<br />
  type: LAN8720<br />
  mdc_pin: GPIO23<br />
  mdio_pin: GPIO18<br />
  clk_mode: GPIO17_OUT<br />
  phy_addr: 0<br />
<br />
<br />
# Example configuration entry<br />
pcf8574:<br />
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8<br />
    address: 0x24<br />
<br />
  - id: 'pcf8574_hub_out_2'  # for output channel 9-16<br />
    address: 0x25<br />
<br />
  - id: 'pcf8574_hub_in_1'  # for input channel 1-8<br />
    address: 0x22<br />
<br />
  - id: 'pcf8574_hub_in_2'  # for input channel 9-16<br />
    address: 0x23<br />
<br />
# Individual outputs<br />
switch:<br />
  - platform: gpio<br />
    name: "a16s-output1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 7<br />
      mode:<br />
        output: true<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output9"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output10"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output11"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output12"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output13"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output14"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output15"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output16"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 7<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: restart<br />
    name: EspHome Node Restart<br />
      <br />
binary_sensor:<br />
  - platform: gpio<br />
    name: "a16s-input1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input9"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input10"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input11"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input12"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input13"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input14"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input15"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input16"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true</code></div></div><br />
Can You help me ?]]></description>
			<content:encoded><![CDATA[Good afternoon,<br />
<br />
I flashed several times the KC868-A16S board with ESPHome firmware but the relay n. 8 remains always in on state (also the status led on the board) and it is impossible to control it.<br />
<br />
This is the last firmware (still with the problem) :<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>esphome:<br />
  name: centralina-citofono<br />
  friendly_name: Centralina citofono<br />
<br />
esp32:<br />
  board: esp32dev<br />
  framework:<br />
    type: arduino<br />
<br />
# Enable logging<br />
logger:<br />
<br />
# Enable Home Assistant API<br />
api:<br />
  encryption:<br />
    key: "E3acLht11PoN5oLlgBJPgIO/+elvX80lTzGbQPfVnH8="<br />
<br />
ota:<br />
  - platform: esphome<br />
    password: "0b4d665617eac63f109a0dd7b51a409e"<br />
<br />
# Example configuration entry for ESP32<br />
i2c:<br />
  sda: 4<br />
  scl: 5<br />
  scan: true<br />
  id: bus_a<br />
<br />
<br />
# Example configuration entry<br />
ethernet:<br />
  type: LAN8720<br />
  mdc_pin: GPIO23<br />
  mdio_pin: GPIO18<br />
  clk_mode: GPIO17_OUT<br />
  phy_addr: 0<br />
<br />
<br />
# Example configuration entry<br />
pcf8574:<br />
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8<br />
    address: 0x24<br />
<br />
  - id: 'pcf8574_hub_out_2'  # for output channel 9-16<br />
    address: 0x25<br />
<br />
  - id: 'pcf8574_hub_in_1'  # for input channel 1-8<br />
    address: 0x22<br />
<br />
  - id: 'pcf8574_hub_in_2'  # for input channel 9-16<br />
    address: 0x23<br />
<br />
# Individual outputs<br />
switch:<br />
  - platform: gpio<br />
    name: "a16s-output1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 7<br />
      mode:<br />
        output: true<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output9"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output10"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output11"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output12"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output13"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output14"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output15"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output16"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 7<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: restart<br />
    name: EspHome Node Restart<br />
      <br />
binary_sensor:<br />
  - platform: gpio<br />
    name: "a16s-input1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input9"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input10"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input11"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input12"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input13"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input14"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input15"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input16"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true</code></div></div><br />
Can You help me ?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Accessible SPI interface?]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=7237</link>
			<pubDate>Mon, 16 Dec 2024 03:06:18 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=6921">czbaterka</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=7237</guid>
			<description><![CDATA[Hello, I am planning to buy KC868-A16 module, but my existing smart home is running on my custom implementation based on CAN bus.<br />
<br />
Is it possible to connect CAN bus SPI module (for example the one with MCP2515 and TJA1050) to this board trough SPI interface?<br />
<br />
I cannot see any available IO pins that can be used for SPI, but it seems there are unpopulated pins on the ESP?<br />
<img src="https://i.imgur.com/uG73K2r.png" loading="lazy"  alt="[Image: uG73K2r.png]" class="mycode_img" /><br />
Maybe those can be used?]]></description>
			<content:encoded><![CDATA[Hello, I am planning to buy KC868-A16 module, but my existing smart home is running on my custom implementation based on CAN bus.<br />
<br />
Is it possible to connect CAN bus SPI module (for example the one with MCP2515 and TJA1050) to this board trough SPI interface?<br />
<br />
I cannot see any available IO pins that can be used for SPI, but it seems there are unpopulated pins on the ESP?<br />
<img src="https://i.imgur.com/uG73K2r.png" loading="lazy"  alt="[Image: uG73K2r.png]" class="mycode_img" /><br />
Maybe those can be used?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-A16S and ds18b20]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=6944</link>
			<pubDate>Wed, 30 Oct 2024 09:32:18 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=6382">gottlieb78</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=6944</guid>
			<description><![CDATA[Hi<br />
<br />
I have the KC868-A16S board and I have it setup up in ESPHome and linked to HA.<br />
<br />
I´m having trouble connecting a one-wire ds18b20 temperature probe to the board and get a readout.<br />
<br />
This is my yaml:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>esphome:<br />
  name: kincony<br />
  friendly_name: Kincony<br />
  platform: ESP32<br />
  board: esp32dev<br />
<br />
#esp32:<br />
#  board: esp32dev<br />
#  framework:<br />
#    type: arduino<br />
<br />
# Enable logging<br />
logger:<br />
  level: DEBUG<br />
# Enable Home Assistant API<br />
api:<br />
  encryption:<br />
    key: <br />
<br />
<br />
<br />
<br />
  <br />
# Example configuration entry for ESP32<br />
i2c:<br />
  sda: 4<br />
  scl: 5<br />
  scan: true<br />
  id: bus_a<br />
<br />
<br />
# Example configuration entry<br />
ethernet:<br />
  type: LAN8720<br />
  mdc_pin: GPIO23<br />
  mdio_pin: GPIO18<br />
  clk_mode: GPIO17_OUT<br />
  phy_addr: 0<br />
<br />
  # Optional manual IP<br />
#   manual_ip:<br />
#    static_ip: 192.168.1.199<br />
#    gateway: 192.168.1.1<br />
#    subnet: 255.255.255.0  <br />
<br />
# Example configuration entry<br />
<br />
one_wire:<br />
  - platform: gpio<br />
    pin: GPIO14<br />
<br />
# Individual sensors<br />
sensor:<br />
  - platform: dallas_temp<br />
    #address: <br />
    name: Temperature1<br />
    update_interval: 5s<br />
<br />
external_components:<br />
  - source:<br />
      type: git<br />
      url: https://github.com/ssieb/esphome<br />
      ref: onewire<br />
    components: [ gpio ]<br />
    refresh: 1min<br />
<br />
# Example configuration entry<br />
pcf8574:<br />
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8<br />
    address: 0x24<br />
<br />
  - id: 'pcf8574_hub_out_2'  # for output channel 9-16<br />
    address: 0x25<br />
<br />
  - id: 'pcf8574_hub_in_1'  # for input channel 1-8<br />
    address: 0x22<br />
<br />
  - id: 'pcf8574_hub_in_2'  # for input channel 9-16<br />
    address: 0x23<br />
<br />
# Individual outputs<br />
switch:<br />
  - platform: gpio<br />
    name: "a16s-output1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 7<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output9"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output10"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output11"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output12"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output13"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output14"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output15"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output16"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 7<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
binary_sensor:<br />
  - platform: gpio<br />
    name: "a16s-input1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input9"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input10"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input11"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input12"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input13"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input14"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input15"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input16"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true</code></div></div><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="JPEG Image" border="0" alt=".jpeg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=6325" target="_blank" title="">WhatsApp Image 2024-10-30 at 01.19.30.jpeg</a> (Size: 100.38 KB / Downloads: 601)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hi<br />
<br />
I have the KC868-A16S board and I have it setup up in ESPHome and linked to HA.<br />
<br />
I´m having trouble connecting a one-wire ds18b20 temperature probe to the board and get a readout.<br />
<br />
This is my yaml:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>esphome:<br />
  name: kincony<br />
  friendly_name: Kincony<br />
  platform: ESP32<br />
  board: esp32dev<br />
<br />
#esp32:<br />
#  board: esp32dev<br />
#  framework:<br />
#    type: arduino<br />
<br />
# Enable logging<br />
logger:<br />
  level: DEBUG<br />
# Enable Home Assistant API<br />
api:<br />
  encryption:<br />
    key: <br />
<br />
<br />
<br />
<br />
  <br />
# Example configuration entry for ESP32<br />
i2c:<br />
  sda: 4<br />
  scl: 5<br />
  scan: true<br />
  id: bus_a<br />
<br />
<br />
# Example configuration entry<br />
ethernet:<br />
  type: LAN8720<br />
  mdc_pin: GPIO23<br />
  mdio_pin: GPIO18<br />
  clk_mode: GPIO17_OUT<br />
  phy_addr: 0<br />
<br />
  # Optional manual IP<br />
#   manual_ip:<br />
#    static_ip: 192.168.1.199<br />
#    gateway: 192.168.1.1<br />
#    subnet: 255.255.255.0  <br />
<br />
# Example configuration entry<br />
<br />
one_wire:<br />
  - platform: gpio<br />
    pin: GPIO14<br />
<br />
# Individual sensors<br />
sensor:<br />
  - platform: dallas_temp<br />
    #address: <br />
    name: Temperature1<br />
    update_interval: 5s<br />
<br />
external_components:<br />
  - source:<br />
      type: git<br />
      url: https://github.com/ssieb/esphome<br />
      ref: onewire<br />
    components: [ gpio ]<br />
    refresh: 1min<br />
<br />
# Example configuration entry<br />
pcf8574:<br />
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8<br />
    address: 0x24<br />
<br />
  - id: 'pcf8574_hub_out_2'  # for output channel 9-16<br />
    address: 0x25<br />
<br />
  - id: 'pcf8574_hub_in_1'  # for input channel 1-8<br />
    address: 0x22<br />
<br />
  - id: 'pcf8574_hub_in_2'  # for input channel 9-16<br />
    address: 0x23<br />
<br />
# Individual outputs<br />
switch:<br />
  - platform: gpio<br />
    name: "a16s-output1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 7<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output9"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output10"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-output11"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output12"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output13"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output14"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output15"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "a16s-output16"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_2<br />
      number: 7<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
binary_sensor:<br />
  - platform: gpio<br />
    name: "a16s-input1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input9"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input10"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input11"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input12"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input13"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input14"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input15"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "a16s-input16"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_2<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true</code></div></div><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="JPEG Image" border="0" alt=".jpeg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=6325" target="_blank" title="">WhatsApp Image 2024-10-30 at 01.19.30.jpeg</a> (Size: 100.38 KB / Downloads: 601)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
	</channel>
</rss>