<?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-HA /HA v2]]></title>
		<link>https://www.kincony.com/forum/</link>
		<description><![CDATA[Smart Home Automation Forum - https://www.kincony.com/forum]]></description>
		<pubDate>Wed, 15 Apr 2026 05:20:32 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[HAv2 ESPHome]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9215</link>
			<pubDate>Tue, 07 Apr 2026 14:46:07 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=10701">rhinoperth</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9215</guid>
			<description><![CDATA[Hi Team,<br />
<br />
I'm having trouble getting the external components working since the ESPHome changes.<br />
<br />
I keep getting the below error when I try and compile. I have cleaned up all the build files etc and still no change.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>INFO Unable to import component kc686_ha: No module named 'esphome.components.kc686_ha'<br />
Failed config<br />
<br />
kc686_ha: [source /config/esphome/device-191.yaml:72]<br />
  <br />
  Component not found: kc686_ha.</code></div></div><br />
<br />
Below is my current config that won't compile.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>esphome:<br />
  name: device-191<br />
  friendly_name: Switch - TR House Hub 1<br />
<br />
esp32:<br />
  variant: esp32<br />
  framework:<br />
    type: esp-idf<br />
<br />
external_components:<br />
  - source:<br />
      type: git<br />
      url: https://github.com/hzkincony/esphome-kc868-ha<br />
      ref: v3.0.3<br />
<br />
# Enable logging<br />
logger:<br />
<br />
# Enable Home Assistant API<br />
api:<br />
  encryption:<br />
    key: "xxxxx"<br />
  reboot_timeout: <br />
    seconds: 120<br />
<br />
ota:<br />
  - platform: esphome<br />
    password: "xxxxx"<br />
<br />
wifi:<br />
  ssid: !secret wifi_ssid<br />
  password: !secret wifi_password<br />
  fast_connect: on<br />
  manual_ip:<br />
    static_ip: 172.16.5.191<br />
    gateway: 172.16.5.1<br />
    subnet: 255.255.255.0<br />
    dns1: 172.16.5.1<br />
  # Enable fallback hotspot (captive portal) in case wifi connection fails<br />
  ap:<br />
    ssid: "Device-191 Fallback Hotspot"<br />
    password: "xxxxx"<br />
<br />
captive_portal:<br />
<br />
web_server:<br />
  port: 80<br />
<br />
uart:<br />
  - id: rs485<br />
    tx_pin: GPIO13<br />
    rx_pin: GPIO16<br />
    baud_rate: 9600<br />
<br />
<br />
i2c:<br />
  sda: GPIO4<br />
  scl: GPIO5<br />
  scan: True<br />
  id: bus_a<br />
<br />
pcf8574:<br />
  - id: inputs_1_8<br />
    address: 0x22<br />
  - id: inputs_9_16<br />
    address: 0x21<br />
  - id: outputs_1_8<br />
    address: 0x24<br />
  - id: outputs_9_16<br />
    address: 0x25<br />
<br />
kc686_ha:<br />
<br />
binary_sensor:<br />
<br />
<br />
<br />
  ### RS485 ###<br />
<br />
  ### Master Bed INT  ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 11 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 1 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Bed Internal Button 1"<br />
<br />
  ### Master Bed EXT  ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 12 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 7 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Bed External Button 1"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 12 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 8 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Bed External Button 2"<br />
<br />
  ### Master WIR  ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 13 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 13 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master WIR Button 1"<br />
<br />
  ### Master Ensuite ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 14 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 19 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Ensuite Button 1"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 14 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 20 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Ensuite Button 2"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 14 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 21 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Ensuite Button 3"<br />
<br />
<br />
switch:<br />
<br />
<br />
<br />
  ### RS485 ###<br />
<br />
  ### Master INT ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 11<br />
    bind_output: 1<br />
    name: "Master Bed Internal Indicator 1"<br />
<br />
  ### Master EXT ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 12<br />
    bind_output: 7<br />
    name: "Master Bed External Indicator 1"<br />
<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 12<br />
    bind_output: 8<br />
    name: "Master Bed External Indicator 2"<br />
<br />
  ### Master WIR ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 13<br />
    bind_output: 13<br />
    name: "Master WIR Indicator 1"<br />
<br />
  ### Master Ens ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 14<br />
    bind_output: 19<br />
    name: "Master Ensuite Indicator 1"<br />
<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 14<br />
    bind_output: 20<br />
    name: "Master Ensuite Indicator 2"<br />
<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 14<br />
    bind_output: 21<br />
    name: "Master Ensuite Indicator 3"</code></div></div>]]></description>
			<content:encoded><![CDATA[Hi Team,<br />
<br />
I'm having trouble getting the external components working since the ESPHome changes.<br />
<br />
I keep getting the below error when I try and compile. I have cleaned up all the build files etc and still no change.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>INFO Unable to import component kc686_ha: No module named 'esphome.components.kc686_ha'<br />
Failed config<br />
<br />
kc686_ha: [source /config/esphome/device-191.yaml:72]<br />
  <br />
  Component not found: kc686_ha.</code></div></div><br />
<br />
Below is my current config that won't compile.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>esphome:<br />
  name: device-191<br />
  friendly_name: Switch - TR House Hub 1<br />
<br />
esp32:<br />
  variant: esp32<br />
  framework:<br />
    type: esp-idf<br />
<br />
external_components:<br />
  - source:<br />
      type: git<br />
      url: https://github.com/hzkincony/esphome-kc868-ha<br />
      ref: v3.0.3<br />
<br />
# Enable logging<br />
logger:<br />
<br />
# Enable Home Assistant API<br />
api:<br />
  encryption:<br />
    key: "xxxxx"<br />
  reboot_timeout: <br />
    seconds: 120<br />
<br />
ota:<br />
  - platform: esphome<br />
    password: "xxxxx"<br />
<br />
wifi:<br />
  ssid: !secret wifi_ssid<br />
  password: !secret wifi_password<br />
  fast_connect: on<br />
  manual_ip:<br />
    static_ip: 172.16.5.191<br />
    gateway: 172.16.5.1<br />
    subnet: 255.255.255.0<br />
    dns1: 172.16.5.1<br />
  # Enable fallback hotspot (captive portal) in case wifi connection fails<br />
  ap:<br />
    ssid: "Device-191 Fallback Hotspot"<br />
    password: "xxxxx"<br />
<br />
captive_portal:<br />
<br />
web_server:<br />
  port: 80<br />
<br />
uart:<br />
  - id: rs485<br />
    tx_pin: GPIO13<br />
    rx_pin: GPIO16<br />
    baud_rate: 9600<br />
<br />
<br />
i2c:<br />
  sda: GPIO4<br />
  scl: GPIO5<br />
  scan: True<br />
  id: bus_a<br />
<br />
pcf8574:<br />
  - id: inputs_1_8<br />
    address: 0x22<br />
  - id: inputs_9_16<br />
    address: 0x21<br />
  - id: outputs_1_8<br />
    address: 0x24<br />
  - id: outputs_9_16<br />
    address: 0x25<br />
<br />
kc686_ha:<br />
<br />
binary_sensor:<br />
<br />
<br />
<br />
  ### RS485 ###<br />
<br />
  ### Master Bed INT  ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 11 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 1 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Bed Internal Button 1"<br />
<br />
  ### Master Bed EXT  ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 12 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 7 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Bed External Button 1"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 12 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 8 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Bed External Button 2"<br />
<br />
  ### Master WIR  ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 13 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 13 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master WIR Button 1"<br />
<br />
  ### Master Ensuite ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 14 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 19 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Ensuite Button 1"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 14 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 20 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Ensuite Button 2"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 14 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 21 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "Master Ensuite Button 3"<br />
<br />
<br />
switch:<br />
<br />
<br />
<br />
  ### RS485 ###<br />
<br />
  ### Master INT ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 11<br />
    bind_output: 1<br />
    name: "Master Bed Internal Indicator 1"<br />
<br />
  ### Master EXT ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 12<br />
    bind_output: 7<br />
    name: "Master Bed External Indicator 1"<br />
<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 12<br />
    bind_output: 8<br />
    name: "Master Bed External Indicator 2"<br />
<br />
  ### Master WIR ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 13<br />
    bind_output: 13<br />
    name: "Master WIR Indicator 1"<br />
<br />
  ### Master Ens ###<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 14<br />
    bind_output: 19<br />
    name: "Master Ensuite Indicator 1"<br />
<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 14<br />
    bind_output: 20<br />
    name: "Master Ensuite Indicator 2"<br />
<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 14<br />
    bind_output: 21<br />
    name: "Master Ensuite Indicator 3"</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Modbus register map]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8624</link>
			<pubDate>Fri, 03 Oct 2025 16:32:11 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=9631">nortien</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8624</guid>
			<description><![CDATA[Hello.<br />
What protocol does the Modbus module use? Modbus RTU?<br />
I need to understand how to connect this module to my non-Kincony controller.<br />
Do you have a Modbus register map? Do you have technical documentation? Please share.]]></description>
			<content:encoded><![CDATA[Hello.<br />
What protocol does the Modbus module use? Modbus RTU?<br />
I need to understand how to connect this module to my non-Kincony controller.<br />
Do you have a Modbus register map? Do you have technical documentation? Please share.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[switch dimensions]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8527</link>
			<pubDate>Sat, 13 Sep 2025 19:26:06 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=9459">swisstmack25</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8527</guid>
			<description><![CDATA[please can you publish the dimensions of the switch <a href="https://shop.kincony.com/products/momentary-wall-switch-panel-push-button?variant=43565651591333" target="_blank" rel="noopener" class="mycode_url">https://shop.kincony.com/products/moment...5651591333</a><br />
would be a good idea to have a technical drawing of the dimensions on your website.<br />
<br />
is it the same for all gang variants, I want to understand if it will fit in a Swiss in wall housing (which is slightly smaller than that of the EU<br />
<br />
60mm approx in diameter with 49mm depth<br />
My wish is th use the keypad with the HAv2 module<br />
<br />
Thanks!]]></description>
			<content:encoded><![CDATA[please can you publish the dimensions of the switch <a href="https://shop.kincony.com/products/momentary-wall-switch-panel-push-button?variant=43565651591333" target="_blank" rel="noopener" class="mycode_url">https://shop.kincony.com/products/moment...5651591333</a><br />
would be a good idea to have a technical drawing of the dimensions on your website.<br />
<br />
is it the same for all gang variants, I want to understand if it will fit in a Swiss in wall housing (which is slightly smaller than that of the EU<br />
<br />
60mm approx in diameter with 49mm depth<br />
My wish is th use the keypad with the HAv2 module<br />
<br />
Thanks!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[using HAv2 with KC868-D]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8496</link>
			<pubDate>Fri, 05 Sep 2025 21:05:26 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=9459">swisstmack25</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8496</guid>
			<description><![CDATA[Can you provide a solution to utilise the KC868-D 8 and 16 channel dimmer over KC868-HAv2 RS485 interface <br />
I would like to use multiple KC868-HAv2 (8 of them) connecting over RS485 to the Dimming module and all to the F16 device<br />
<br />
I want to use some of the switch paddles for the dimmer and others to switch the outputs on the F16.<br />
thanks]]></description>
			<content:encoded><![CDATA[Can you provide a solution to utilise the KC868-D 8 and 16 channel dimmer over KC868-HAv2 RS485 interface <br />
I would like to use multiple KC868-HAv2 (8 of them) connecting over RS485 to the Dimming module and all to the F16 device<br />
<br />
I want to use some of the switch paddles for the dimmer and others to switch the outputs on the F16.<br />
thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-HAv2 work with F24 using ESPHome yaml]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8307</link>
			<pubDate>Tue, 08 Jul 2025 14:19: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=8307</guid>
			<description><![CDATA[<!-- 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=7958" target="_blank" title="">F24-HAv2-PCB.jpg</a> (Size: 265.61 KB / Downloads: 459)
<!-- 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="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=7956" target="_blank" title="">HAv2-PC-setting.png</a> (Size: 99.73 KB / Downloads: 470)
<!-- 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="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=7957" target="_blank" title="">home-assistant.png</a> (Size: 165.75 KB / Downloads: 448)
<!-- end: postbit_attachments_attachment --><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>esphome:<br />
  name: hav2<br />
  friendly_name: HAv2<br />
<br />
esp32:<br />
  board: esp32-s3-devkitc-1<br />
  framework:<br />
    type: esp-idf<br />
<br />
# Enable logging<br />
logger:<br />
  baud_rate: 0<br />
<br />
# Enable Home Assistant API<br />
api:<br />
<br />
<br />
ethernet:<br />
  type: W5500<br />
  clk_pin: GPIO42<br />
  mosi_pin: GPIO43<br />
  miso_pin: GPIO44<br />
  cs_pin: GPIO41<br />
  interrupt_pin: GPIO2<br />
  reset_pin: GPIO1<br />
<br />
external_components:<br />
  - source:<br />
      type: git<br />
      url: https://github.com/hzkincony/esphome-kc868-ha<br />
      ref: v3.0.1<br />
<br />
uart:<br />
  - id: myuart1<br />
    tx_pin: 16<br />
    rx_pin: 17<br />
    baud_rate: 9600<br />
    debug:<br />
      direction: BOTH<br />
      dummy_receiver: false<br />
<br />
kc868_ha:<br />
<br />
binary_sensor:<br />
<br />
  # The binary_sensor corresponds to the state changes generated by K1~K6 on the KC868 HA board<br />
  # bind_output is required. Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
  # Other parameters refer to: https://esphome.io/components/binary_sensor/index.html<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 10 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 1 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "binary_sensor 1"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 2<br />
    name: "binary_sensor 2"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 3<br />
    name: "binary_sensor 3"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 4<br />
    name: "binary_sensor 4"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 5<br />
    name: "binary_sensor 5"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 6<br />
    name: "binary_sensor 6"<br />
<br />
switch:<br />
  # The switch is used to control the D1~D6 level output on the KC868 HA board<br />
  # bind_output is required. Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
  # Other parameters refer to: https://esphome.io/components/switch/index.html<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 1<br />
    name: "switch 1"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 2<br />
    name: "switch 2"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 3<br />
    name: "switch 3"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 4<br />
    name: "switch 4"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 5<br />
    name: "switch 5"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 6<br />
    name: "switch 6"<br />
<br />
web_server:<br />
  port: 80</code></div></div><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=7955" target="_blank" title="">HAv2-F24-yaml.txt</a> (Size: 3.04 KB / Downloads: 246)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<!-- 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=7958" target="_blank" title="">F24-HAv2-PCB.jpg</a> (Size: 265.61 KB / Downloads: 459)
<!-- 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="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=7956" target="_blank" title="">HAv2-PC-setting.png</a> (Size: 99.73 KB / Downloads: 470)
<!-- 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="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=7957" target="_blank" title="">home-assistant.png</a> (Size: 165.75 KB / Downloads: 448)
<!-- end: postbit_attachments_attachment --><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>esphome:<br />
  name: hav2<br />
  friendly_name: HAv2<br />
<br />
esp32:<br />
  board: esp32-s3-devkitc-1<br />
  framework:<br />
    type: esp-idf<br />
<br />
# Enable logging<br />
logger:<br />
  baud_rate: 0<br />
<br />
# Enable Home Assistant API<br />
api:<br />
<br />
<br />
ethernet:<br />
  type: W5500<br />
  clk_pin: GPIO42<br />
  mosi_pin: GPIO43<br />
  miso_pin: GPIO44<br />
  cs_pin: GPIO41<br />
  interrupt_pin: GPIO2<br />
  reset_pin: GPIO1<br />
<br />
external_components:<br />
  - source:<br />
      type: git<br />
      url: https://github.com/hzkincony/esphome-kc868-ha<br />
      ref: v3.0.1<br />
<br />
uart:<br />
  - id: myuart1<br />
    tx_pin: 16<br />
    rx_pin: 17<br />
    baud_rate: 9600<br />
    debug:<br />
      direction: BOTH<br />
      dummy_receiver: false<br />
<br />
kc868_ha:<br />
<br />
binary_sensor:<br />
<br />
  # The binary_sensor corresponds to the state changes generated by K1~K6 on the KC868 HA board<br />
  # bind_output is required. Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
  # Other parameters refer to: https://esphome.io/components/binary_sensor/index.html<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software<br />
    switch_adapter_addr: 10 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software<br />
    bind_output: 1 # Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
    name: "binary_sensor 1"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 2<br />
    name: "binary_sensor 2"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 3<br />
    name: "binary_sensor 3"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 4<br />
    name: "binary_sensor 4"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 5<br />
    name: "binary_sensor 5"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 6<br />
    name: "binary_sensor 6"<br />
<br />
switch:<br />
  # The switch is used to control the D1~D6 level output on the KC868 HA board<br />
  # bind_output is required. Corresponds to the BindOutput parameter in HA485_Ctrl software<br />
  # Other parameters refer to: https://esphome.io/components/switch/index.html<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 1<br />
    name: "switch 1"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 2<br />
    name: "switch 2"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 3<br />
    name: "switch 3"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 4<br />
    name: "switch 4"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 5<br />
    name: "switch 5"<br />
  - platform: kc868_ha<br />
    target_relay_controller_addr: 1<br />
    switch_adapter_addr: 10<br />
    bind_output: 6<br />
    name: "switch 6"<br />
<br />
web_server:<br />
  port: 80</code></div></div><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=7955" target="_blank" title="">HAv2-F24-yaml.txt</a> (Size: 3.04 KB / Downloads: 246)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Issues with binary sensor of kc868_ha component in esphome/home assistant]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=8193</link>
			<pubDate>Tue, 17 Jun 2025 22:35:34 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=8886">shavrin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=8193</guid>
			<description><![CDATA[I have tried to configure KS868-HA-V21 module with KC868-A6 using EspHome. Connection between A6 and KS686-HA works good, at least I can see debug logs, when attach K1 (or any other K pin) to GND:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[17:27:41][D][kc868_ha.component:019]: uart bus receive 1:10:0:a:0:6:c:65:3:0:0:0:0:0:0:0:0:0:0:f:b8<br />
[17:27:41][D][kc868_ha.component:030]: uart crc=f:b8, calc crc=f:b8<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=1<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=2<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=3<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=4<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=5<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=6<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=1<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=2<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=3<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=4<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=5<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=6</code></div></div><br />
But binary sensor doesn't worked as expected. Configuration for esphome taken from <a href="https://github.com/hzkincony/esphome-kc868-ha" target="_blank" rel="noopener" class="mycode_url">https://github.com/hzkincony/esphome-kc868-ha</a>.<br />
<br />
I have checked esphome-kc868-ha code, and looks, like module send "3" when K1 attached to GND and "0" when it's released. But module expect "1" and "2" values.<br />
<br />
What can be done, to resolve this issue?<br />
<br />
(I have multiple KC868-HA modules, and looks that all of them have the same issue)]]></description>
			<content:encoded><![CDATA[I have tried to configure KS868-HA-V21 module with KC868-A6 using EspHome. Connection between A6 and KS686-HA works good, at least I can see debug logs, when attach K1 (or any other K pin) to GND:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[17:27:41][D][kc868_ha.component:019]: uart bus receive 1:10:0:a:0:6:c:65:3:0:0:0:0:0:0:0:0:0:0:f:b8<br />
[17:27:41][D][kc868_ha.component:030]: uart crc=f:b8, calc crc=f:b8<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=1<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=2<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=3<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=4<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=5<br />
[17:27:41][D][kc868_ha.component:043]: dump kc868_ha config, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=6<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=1<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=2<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=3<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=4<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=5<br />
[17:27:41][D][kc868_ha.component:054]: found a kc868_ha board, target_relay_controller_addr=1, switch_adapter_addr=10, bind_output=6</code></div></div><br />
But binary sensor doesn't worked as expected. Configuration for esphome taken from <a href="https://github.com/hzkincony/esphome-kc868-ha" target="_blank" rel="noopener" class="mycode_url">https://github.com/hzkincony/esphome-kc868-ha</a>.<br />
<br />
I have checked esphome-kc868-ha code, and looks, like module send "3" when K1 attached to GND and "0" when it's released. But module expect "1" and "2" values.<br />
<br />
What can be done, to resolve this issue?<br />
<br />
(I have multiple KC868-HA modules, and looks that all of them have the same issue)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[adding KC868-HA RS485 zo HA or ESPHome]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=7912</link>
			<pubDate>Tue, 08 Apr 2025 03:06:21 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=8307">saymyname</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=7912</guid>
			<description><![CDATA[Hi,<br />
<br />
i have succefully integrate board A16V3 via MQTT auto discovery to Homeassistant. But i didnt found how can i add now <span style="font-family: Assistant, sans-serif;" class="mycode_font">KC868-HAv2. If i create new device in ESPHome and copy data from github:</span><br />
<span style="font-family: Assistant, sans-serif;" class="mycode_font"><a href="https://github.com/hzkincony/esphome-kc868-ha" target="_blank" rel="noopener" class="mycode_url">https://github.com/hzkincony/esphome-kc868-ha</a></span><br />
<br />
I cant install it, ESP gives me error:<br />
<br />
<br />
Failed config<br />
'esphome' section missing from configuration. Please make sure your configuration has an 'esphome:' line in it.<br />
<br />
Do i also need to add main board A16V3 to ESP home and just add those lines to config file of A16V3, or can KC868-HAv2 be add as standalone?]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
i have succefully integrate board A16V3 via MQTT auto discovery to Homeassistant. But i didnt found how can i add now <span style="font-family: Assistant, sans-serif;" class="mycode_font">KC868-HAv2. If i create new device in ESPHome and copy data from github:</span><br />
<span style="font-family: Assistant, sans-serif;" class="mycode_font"><a href="https://github.com/hzkincony/esphome-kc868-ha" target="_blank" rel="noopener" class="mycode_url">https://github.com/hzkincony/esphome-kc868-ha</a></span><br />
<br />
I cant install it, ESP gives me error:<br />
<br />
<br />
Failed config<br />
'esphome' section missing from configuration. Please make sure your configuration has an 'esphome:' line in it.<br />
<br />
Do i also need to add main board A16V3 to ESP home and just add those lines to config file of A16V3, or can KC868-HAv2 be add as standalone?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-HA-V21 serial port selector drop box freezing]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=7710</link>
			<pubDate>Sun, 23 Feb 2025 23:48:38 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=6736">PeterOo</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=7710</guid>
			<description><![CDATA[Hi admin,<br />
    when I click the serial port drop box, the app doesn't respond anything, it is freezing. I have already installed CH341 driver on my laptop for rs485 to usb config device. It showing the correct com port when I checked in device manager. But, I can't select the serial port in the app. I m using windows 11. Help me with that.<br />
<br />
<!-- 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=7195" target="_blank" title="">Screenshot 2025-02-23 221543.png</a> (Size: 289.82 KB / Downloads: 529)
<!-- end: postbit_attachments_attachment --><br />
<br />
I m sure KC868-HA-V21 module is working normal. It is sending some data frame when I press k1 button in the serial monitor.<br />
<br />
<!-- 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=7196" target="_blank" title="">COOL_TERM_MONITOR.png</a> (Size: 55.25 KB / Downloads: 425)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hi admin,<br />
    when I click the serial port drop box, the app doesn't respond anything, it is freezing. I have already installed CH341 driver on my laptop for rs485 to usb config device. It showing the correct com port when I checked in device manager. But, I can't select the serial port in the app. I m using windows 11. Help me with that.<br />
<br />
<!-- 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=7195" target="_blank" title="">Screenshot 2025-02-23 221543.png</a> (Size: 289.82 KB / Downloads: 529)
<!-- end: postbit_attachments_attachment --><br />
<br />
I m sure KC868-HA-V21 module is working normal. It is sending some data frame when I press k1 button in the serial monitor.<br />
<br />
<!-- 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=7196" target="_blank" title="">COOL_TERM_MONITOR.png</a> (Size: 55.25 KB / Downloads: 425)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-HAv2 phantom press in ESPhome]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=6924</link>
			<pubDate>Sat, 26 Oct 2024 17:27:46 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=2262">Dario</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=6924</guid>
			<description><![CDATA[Hi,<br />
<br />
Is there a way to optimise the Kincony KC868-HAv2? I currently use the new B16M and 2 of the KC868-HAv2 boards in test on ESPhome and I noticed that when I press and release the button quickly multiple times the B16M sees the button as pressed while it is not. When I press again it ofcourse gets reset.<br />
<br />
It needs to be fool/child proof in my solution because I'm going to work with double/triple and long press commands in my solution.<br />
Might the debounce setting do something?<br />
<br />
Kind regards,<br />
<br />
Dario]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
Is there a way to optimise the Kincony KC868-HAv2? I currently use the new B16M and 2 of the KC868-HAv2 boards in test on ESPhome and I noticed that when I press and release the button quickly multiple times the B16M sees the button as pressed while it is not. When I press again it ofcourse gets reset.<br />
<br />
It needs to be fool/child proof in my solution because I'm going to work with double/triple and long press commands in my solution.<br />
Might the debounce setting do something?<br />
<br />
Kind regards,<br />
<br />
Dario]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868 HA V2 and KCS v2]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=5843</link>
			<pubDate>Mon, 03 Jun 2024 08:06:57 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=4230">whitehawk1979</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=5843</guid>
			<description><![CDATA[Hi<br />
 Can you make a tutorial video for KC868 HA V2 and KCS v2 settings please ?]]></description>
			<content:encoded><![CDATA[Hi<br />
 Can you make a tutorial video for KC868 HA V2 and KCS v2 settings please ?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[schematic of KC868-HAv2]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=5840</link>
			<pubDate>Sun, 02 Jun 2024 06:59:33 +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=5840</guid>
			<description><![CDATA[<!-- 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=5325" target="_blank" title="">R485HA_V200.pdf</a> (Size: 146.12 KB / Downloads: 795)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<!-- 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=5325" target="_blank" title="">R485HA_V200.pdf</a> (Size: 146.12 KB / Downloads: 795)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-HAv2 Modbus firmware]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=5825</link>
			<pubDate>Fri, 31 May 2024 14:48:13 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=4915">mrwolfj</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=5825</guid>
			<description><![CDATA[Hi,<br />
<br />
I'm trying to setup KCN868-HAv2 with Modbus. Since the stock firmware works with a custom protocol, I've loaded the firmware HA485_KU_V108_RIO231124 that should work with modbus. But when I try to communicate via RS485 to USB or esphome, I get no response from the device.<br />
<br />
I've tried all these commands:<br />
<br />
Modubs command-05 (control digital output):<br />
<br />
turn ON output1:<br />
send:0A 05 00 00 FF 00 8D 41<br />
feedback:0A 05 00 00 FF 00 8D 41<br />
<br />
turn OFF output1:<br />
send:0A 05 00 00 00 00 CC B1<br />
feedback:0A 05 00 00 00 00 CC B1<br />
------------------------------------<br />
Modubs command-01 (read digital output state):<br />
<br />
send:0A 01 00 00 00 06 BD 73<br />
feedback:0A 01 01 01 92 6C  (output1=ON, output2--6=OFF)<br />
------------------------------------<br />
Modubs command-02 (read digital input state):<br />
<br />
send:0A 02 00 00 00 06 F9 73<br />
feedback:0A 02 01 01 62 6C  (input1=ON, input2--6=OFF)<br />
<br />
<br />
But nothing happens. I've also tried to broadcast the message, just in case the device slave id is not "0A", but didn't receive anything<br />
<br />
Could you help me?<br />
<br />
Thx]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I'm trying to setup KCN868-HAv2 with Modbus. Since the stock firmware works with a custom protocol, I've loaded the firmware HA485_KU_V108_RIO231124 that should work with modbus. But when I try to communicate via RS485 to USB or esphome, I get no response from the device.<br />
<br />
I've tried all these commands:<br />
<br />
Modubs command-05 (control digital output):<br />
<br />
turn ON output1:<br />
send:0A 05 00 00 FF 00 8D 41<br />
feedback:0A 05 00 00 FF 00 8D 41<br />
<br />
turn OFF output1:<br />
send:0A 05 00 00 00 00 CC B1<br />
feedback:0A 05 00 00 00 00 CC B1<br />
------------------------------------<br />
Modubs command-01 (read digital output state):<br />
<br />
send:0A 01 00 00 00 06 BD 73<br />
feedback:0A 01 01 01 92 6C  (output1=ON, output2--6=OFF)<br />
------------------------------------<br />
Modubs command-02 (read digital input state):<br />
<br />
send:0A 02 00 00 00 06 F9 73<br />
feedback:0A 02 01 01 62 6C  (input1=ON, input2--6=OFF)<br />
<br />
<br />
But nothing happens. I've also tried to broadcast the message, just in case the device slave id is not "0A", but didn't receive anything<br />
<br />
Could you help me?<br />
<br />
Thx]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KinCony KC868-HAv2  not getting config setting]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=5773</link>
			<pubDate>Sun, 19 May 2024 11:54:56 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1716">ia1</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=5773</guid>
			<description><![CDATA[Dears<br />
<br />
I am unable to get config setting in hav2 module while clicking read once button connected through usb to rs 485 converter, but when i connect any input to gnd it send some information as attache pictures<br /><!-- 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=5275" target="_blank" title="">Screenshot 2024-05-19 074727.png</a> (Size: 77.72 KB / Downloads: 787)
<!-- 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="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=5276" target="_blank" title="">Screenshot 2024-05-19 074648.png</a> (Size: 76.02 KB / Downloads: 762)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Dears<br />
<br />
I am unable to get config setting in hav2 module while clicking read once button connected through usb to rs 485 converter, but when i connect any input to gnd it send some information as attache pictures<br /><!-- 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=5275" target="_blank" title="">Screenshot 2024-05-19 074727.png</a> (Size: 77.72 KB / Downloads: 787)
<!-- 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="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=5276" target="_blank" title="">Screenshot 2024-05-19 074648.png</a> (Size: 76.02 KB / Downloads: 762)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HA circuit diagram]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=4209</link>
			<pubDate>Tue, 30 Jan 2024 13:36:16 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=194">KinCony Support</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=4209</guid>
			<description><![CDATA[<!-- 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=3977" target="_blank" title="">detail1_06.jpg</a> (Size: 359.27 KB / Downloads: 675)
<!-- end: postbit_attachments_attachment --><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=3978" target="_blank" title="">detail1_07.jpg</a> (Size: 382.93 KB / Downloads: 686)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<!-- 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=3977" target="_blank" title="">detail1_06.jpg</a> (Size: 359.27 KB / Downloads: 675)
<!-- end: postbit_attachments_attachment --><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=3978" target="_blank" title="">detail1_07.jpg</a> (Size: 382.93 KB / Downloads: 686)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[E16T work with multi HAv2 config by ESPHome in home assistant]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=3875</link>
			<pubDate>Fri, 15 Dec 2023 07:58:18 +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=3875</guid>
			<description><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/S679QX6Hc6I" frameborder="0" allowfullscreen="true"></iframe><br />
<!-- 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=3710" target="_blank" title="">E16T_hav2.png</a> (Size: 129.16 KB / Downloads: 971)
<!-- end: postbit_attachments_attachment --><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=3711" target="_blank" title="">E16T_esphome_HAv2.txt</a> (Size: 7.47 KB / Downloads: 523)
<!-- 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=3712" target="_blank" title="">E16T_HAv2_hardware.jpg</a> (Size: 395.11 KB / Downloads: 965)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/S679QX6Hc6I" frameborder="0" allowfullscreen="true"></iframe><br />
<!-- 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=3710" target="_blank" title="">E16T_hav2.png</a> (Size: 129.16 KB / Downloads: 971)
<!-- end: postbit_attachments_attachment --><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=3711" target="_blank" title="">E16T_esphome_HAv2.txt</a> (Size: 7.47 KB / Downloads: 523)
<!-- 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=3712" target="_blank" title="">E16T_HAv2_hardware.jpg</a> (Size: 395.11 KB / Downloads: 965)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
	</channel>
</rss>