Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,256
» Latest member: Stanb
» Forum threads: 4,106
» Forum posts: 20,579

Full Statistics

Online Users
There are currently 174 online users.
» 1 Member(s) | 160 Guest(s)
AhrefsBot, Amazonbot, Baidu, Bing, Crawl, PetalBot, bot, Stanb

Latest Threads
Force sensitive sensor wi...
Forum: KC868-A series and Uair Smart Controller
Last Post: Elgatoguiri
4 hours ago
» Replies: 6
» Views: 60
G1 powerup issue
Forum: G1
Last Post: admin
9 hours ago
» Replies: 1
» Views: 6
How to get started
Forum: KC868-A16
Last Post: admin
Yesterday, 11:58 PM
» Replies: 12
» Views: 6,823
DM16 output not turning o...
Forum: DM16
Last Post: admin
Yesterday, 01:11 PM
» Replies: 26
» Views: 2,788
A Project in Saudi Arabia...
Forum: Apply for free sample product
Last Post: Maxsys249
Yesterday, 07:56 AM
» Replies: 2
» Views: 103
KinCony Pi5M32 – Raspberr...
Forum: News
Last Post: admin
06-25-2026, 10:40 AM
» Replies: 0
» Views: 37
RS485 issue
Forum: B4M
Last Post: admin
06-25-2026, 02:04 AM
» Replies: 6
» Views: 68
KinCony Pi5R32 – Raspberr...
Forum: News
Last Post: admin
06-24-2026, 02:54 PM
» Replies: 0
» Views: 42
how to set "momentary" & ...
Forum: B16M
Last Post: admin
06-24-2026, 08:06 AM
» Replies: 0
» Views: 28
[Bug] A16v3 (v3.24.3) - W...
Forum: "KCS" v3 firmware
Last Post: savingguillemot
06-23-2026, 08:22 AM
» Replies: 2
» Views: 350

  T16M
Posted by: H_spadacini - 04-09-2026, 05:46 AM - Forum: News - Replies (1)

Bonjour,
j'ai reçu le T16M hier.
il a tenu 5 mm , depuis voyant PWR éteins ,ainsi que tous les autres.
tension ok aux bornes.
vérifier au contrôleur de tension présence 24 V D.C. = ok
Le Kincony AIO hybride sur le même réseau électrique 24 V D.C. lui est ok ..
 pour moi, il est hors services malheureusement
le SAV m'a demande de vous faire un  mail pour justifier l'échange sous garantie.
Cordialement.
Hervé



Attached Files
.bmp   tests AIO.bmp (Size: 2.75 MB / Downloads: 98)
.bmp   tests t16M.bmp (Size: 4.56 MB / Downloads: 88)
Print this item

  HAv2 ESPHome
Posted by: rhinoperth - 04-07-2026, 06:46 AM - Forum: KC868-HA /HA v2 - Replies (3)

Hi Team,

I'm having trouble getting the external components working since the ESPHome changes.

I keep getting the below error when I try and compile. I have cleaned up all the build files etc and still no change.

Code:
INFO Unable to import component kc686_ha: No module named 'esphome.components.kc686_ha'
Failed config

kc686_ha: [source /config/esphome/device-191.yaml:72]
 
  Component not found: kc686_ha.


Below is my current config that won't compile.

Code:
esphome:
  name: device-191
  friendly_name: Switch - TR House Hub 1

esp32:
  variant: esp32
  framework:
    type: esp-idf

external_components:
  - source:
      type: git
      url: https://github.com/hzkincony/esphome-kc868-ha
      ref: v3.0.3

# Enable logging
logger:

# Enable Home Assistant API
api:
  encryption:
    key: "xxxxx"
  reboot_timeout:
    seconds: 120

ota:
  - platform: esphome
    password: "xxxxx"

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password
  fast_connect: on
  manual_ip:
    static_ip: 172.16.5.191
    gateway: 172.16.5.1
    subnet: 255.255.255.0
    dns1: 172.16.5.1
  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Device-191 Fallback Hotspot"
    password: "xxxxx"

captive_portal:

web_server:
  port: 80

uart:
  - id: rs485
    tx_pin: GPIO13
    rx_pin: GPIO16
    baud_rate: 9600


i2c:
  sda: GPIO4
  scl: GPIO5
  scan: True
  id: bus_a

pcf8574:
  - id: inputs_1_8
    address: 0x22
  - id: inputs_9_16
    address: 0x21
  - id: outputs_1_8
    address: 0x24
  - id: outputs_9_16
    address: 0x25

kc686_ha:

binary_sensor:



  ### RS485 ###

  ### Master Bed INT  ###
  - platform: kc868_ha
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software
    switch_adapter_addr: 11 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software
    bind_output: 1 # Corresponds to the BindOutput parameter in HA485_Ctrl software
    name: "Master Bed Internal Button 1"

  ### Master Bed EXT  ###
  - platform: kc868_ha
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software
    switch_adapter_addr: 12 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software
    bind_output: 7 # Corresponds to the BindOutput parameter in HA485_Ctrl software
    name: "Master Bed External Button 1"
  - platform: kc868_ha
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software
    switch_adapter_addr: 12 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software
    bind_output: 8 # Corresponds to the BindOutput parameter in HA485_Ctrl software
    name: "Master Bed External Button 2"

  ### Master WIR  ###
  - platform: kc868_ha
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software
    switch_adapter_addr: 13 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software
    bind_output: 13 # Corresponds to the BindOutput parameter in HA485_Ctrl software
    name: "Master WIR Button 1"

  ### Master Ensuite ###
  - platform: kc868_ha
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software
    switch_adapter_addr: 14 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software
    bind_output: 19 # Corresponds to the BindOutput parameter in HA485_Ctrl software
    name: "Master Ensuite Button 1"
  - platform: kc868_ha
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software
    switch_adapter_addr: 14 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software
    bind_output: 20 # Corresponds to the BindOutput parameter in HA485_Ctrl software
    name: "Master Ensuite Button 2"
  - platform: kc868_ha
    target_relay_controller_addr: 1 # Default value is 1, corresponds to the Target Relay Controller Addr parameter in HA485_Ctrl software
    switch_adapter_addr: 14 # Default value is 10, corresponds to the Switch Adapter Addr parameter in HA485_Ctrl software
    bind_output: 21 # Corresponds to the BindOutput parameter in HA485_Ctrl software
    name: "Master Ensuite Button 3"


switch:



  ### RS485 ###

  ### Master INT ###
  - platform: kc868_ha
    target_relay_controller_addr: 1
    switch_adapter_addr: 11
    bind_output: 1
    name: "Master Bed Internal Indicator 1"

  ### Master EXT ###
  - platform: kc868_ha
    target_relay_controller_addr: 1
    switch_adapter_addr: 12
    bind_output: 7
    name: "Master Bed External Indicator 1"

  - platform: kc868_ha
    target_relay_controller_addr: 1
    switch_adapter_addr: 12
    bind_output: 8
    name: "Master Bed External Indicator 2"

  ### Master WIR ###
  - platform: kc868_ha
    target_relay_controller_addr: 1
    switch_adapter_addr: 13
    bind_output: 13
    name: "Master WIR Indicator 1"

  ### Master Ens ###
  - platform: kc868_ha
    target_relay_controller_addr: 1
    switch_adapter_addr: 14
    bind_output: 19
    name: "Master Ensuite Indicator 1"

  - platform: kc868_ha
    target_relay_controller_addr: 1
    switch_adapter_addr: 14
    bind_output: 20
    name: "Master Ensuite Indicator 2"

  - platform: kc868_ha
    target_relay_controller_addr: 1
    switch_adapter_addr: 14
    bind_output: 21
    name: "Master Ensuite Indicator 3"

Print this item

  KC868-A16 v1.6 – relays 9–16 not working in ESPHome
Posted by: dilo@interia.eu - 04-06-2026, 08:55 PM - Forum: KC868-A series and Uair Smart Controller - Replies (1)

Hi,

I use KC868-A16 (version 1.6).

I flashed ESPHome and I can control relays 1–8 correctly.
But relays 9–16 are not working.

I2C scan shows:
0x21, 0x22, 0x24, 0x25

PCF8574 at 0x24 works fine.
PCF8574 at 0x25 is detected but relays don’t respond.

I tried different pin mappings but still only first 8 relays work.

Can you provide correct ESPHome YAML for this hardware version?

Thank you.
I can provide logs or photos if needed.

Print this item

  kc-868 AK
Posted by: Saif Kitany - 04-05-2026, 04:11 PM - Forum: "KCS" v3 firmware - Replies (12)

i have 2 old controlles, H32L and H32B.
i want to control them by KC-868 AK. 
so the H32B controller i set as TCP SERVER, both ethernet and wifi, AND in the kc-868 ak i enabled tcp client and put the ip adress of the controller and the port, and it works well.

now my question is : 

can i control the second controller H32L by UDP?

Print this item

  AIO Hybrid wiring diagram
Posted by: admin - 04-05-2026, 05:45 AM - Forum: AIO Hybrid - No Replies

   

Print this item

  false start with KC868 A16 v3
Posted by: PhVdP - 04-04-2026, 05:40 PM - Forum: KC868-A16v3 - Replies (5)

Hi,

I received the KC868-A16v3; wired as documentation, powered it on, flashered it with latest firmware, changed the USB cable                     ... but it's not working : only a red led is lighting, no ethernet connection setting (green light on the board, orange light on the router). I've tried with another usb cable, pressing buttons reset/rebootable during power it on... Still impossible to connect. I've tried with Putty and serial communication with the USD cable; without success...

Any idea is welcome.

Print this item

  New TA web interface unavailable
Posted by: pbouwen - 04-03-2026, 01:55 PM - Forum: TA - Replies (3)

Hi everyone,

Just received my first Kincony device; a Tiny Alarm system.

Unfortunately, I don't succeed in accessing the web interface to set it up for use with Home Assistant.
I powered it with PoE and looked up the assigned IP address in my router.
When I try accessing that IP in my browser, I get the message that the page can't be reached.
I can ping the IP however.

Rebooting the device did not help.
Holding the reset button for +10 seconds also did not change anything.

What other steps can I take to troubleshoot this?
Should I try to reflash it? I'm using a Mac so not my preferred option.

Thanks in advance for your help!

Print this item

  N10 wire case diagram for 1 phase load
Posted by: admin - 04-03-2026, 12:22 AM - Forum: N10 - No Replies

N10 wire case diagram for 1 phase load
   

Print this item

  "KCS" v2.2.20 firmware BIN file download
Posted by: admin - 04-03-2026, 12:15 AM - Forum: "KCS" v2 firmware system - No Replies

v2.2.20 improvement:
Fix the issue of insufficient Tuya MQTT resources causing restarts.



Attached Files
.zip   KCS_KC868_A2_V2.2.20.zip (Size: 795.82 KB / Downloads: 170)
.zip   KCS_KC868_A4_V2.2.20.zip (Size: 782.95 KB / Downloads: 159)
.zip   KCS_KC868_A4S_V2.2.20.zip (Size: 806.65 KB / Downloads: 127)
.zip   KCS_KC868_A6_V2.2.20.zip (Size: 780.98 KB / Downloads: 309)
.zip   KCS_KC868_A8_V2.2.20.zip (Size: 789.82 KB / Downloads: 198)
.zip   KCS_KC868_A8M_V2.2.20.zip (Size: 806.24 KB / Downloads: 138)
.zip   KCS_KC868_A8S_V2.2.20.zip (Size: 807.64 KB / Downloads: 136)
.zip   KCS_KC868_A16_V2.2.20.zip (Size: 797.19 KB / Downloads: 354)
.zip   KCS_KC868_A16S_V2.2.20.zip (Size: 807.63 KB / Downloads: 149)
.zip   KCS_KC868_A32_V2.2.20.zip (Size: 787.42 KB / Downloads: 164)
.zip   KCS_KC868_A32M_V2.2.20.zip (Size: 805.37 KB / Downloads: 137)
.zip   KCS_KC868_A64_V2.2.20.zip (Size: 787.34 KB / Downloads: 141)
.zip   KCS_KC868_A128_V2.2.20.zip (Size: 787.19 KB / Downloads: 104)
.zip   KCS_KC868_AG_V2.2.20.zip (Size: 765.28 KB / Downloads: 150)
.zip   KCS_KC868_AI_V2.2.20.zip (Size: 789.63 KB / Downloads: 131)
.zip   KCS_KC868_AIO_V2.2.20.zip (Size: 807.05 KB / Downloads: 142)
.zip   KCS_KC868_AK_V2.2.20.zip (Size: 767.66 KB / Downloads: 129)
.zip   KCS_KC868_AM_V2.2.20.zip (Size: 783.03 KB / Downloads: 118)
.zip   KCS_KC868_AP_V2.2.20.zip (Size: 785.46 KB / Downloads: 146)
.zip   KCS_KC868_ASR_V2.2.20.zip (Size: 762.24 KB / Downloads: 112)
.zip   KCS_KC868_E16S_V2.2.20.zip (Size: 791.98 KB / Downloads: 152)
.zip   KCS_KC868_UAIR_V2.2.20.zip (Size: 768.45 KB / Downloads: 133)
Print this item

  N20 wire case diagram for 1 phase load
Posted by: admin - 04-02-2026, 11:34 PM - Forum: N20 - No Replies

N20 wire case diagram for 1 phase load
   
   

Print this item