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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,153
» Latest member: Preteenjourney
» Forum threads: 4,071
» Forum posts: 20,421

Full Statistics

Online Users
There are currently 54 online users.
» 0 Member(s) | 37 Guest(s)
Amazonbot, Applebot, Baidu, PetalBot, Semrush, Sogou web, bot

Latest Threads
Single-family home automa...
Forum: DIY Project
Last Post: Jan_W
7 hours ago
» Replies: 0
» Views: 8
RS485 Modbus SHT30 sensor...
Forum: "KCS" v3 firmware
Last Post: Jan_W
7 hours ago
» Replies: 6
» Views: 448
connect 2 KC868 to homeas...
Forum: KC868-A16
Last Post: guycaluwaerts
9 hours ago
» Replies: 2
» Views: 16
ESP32 Smart Controller – ...
Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file
Last Post: vojtech
9 hours ago
» Replies: 4
» Views: 375
B4 Smart Controller Wirin...
Forum: B4
Last Post: vojtech
10 hours ago
» Replies: 5
» Views: 171
INCREMENTAL ENCODER
Forum: KC868-A8
Last Post: admin
Today, 07:51 AM
» Replies: 3
» Views: 24
KC868-A8 OpenPLC Function...
Forum: KC868-A8
Last Post: admin
Today, 12:00 AM
» Replies: 0
» Views: 10
"KCS" v3.25.0 firmware BI...
Forum: "KCS" v3 firmware
Last Post: admin
06-07-2026, 01:43 AM
» Replies: 5
» Views: 615
"KCS" v3 Nx energy meter ...
Forum: "KCS" v3 firmware
Last Post: admin
06-07-2026, 01:39 AM
» Replies: 0
» Views: 27
"KCS" v3 TCP/IP Standard ...
Forum: "KCS" v3 firmware
Last Post: admin
06-07-2026, 01:36 AM
» Replies: 0
» Views: 28

  Wired ZigBee 3.0 integration with HA
Posted by: fdcemb5 - 07-01-2025, 10:40 PM - Forum: KC868-A32/A32 Pro - Replies (1)

I am trying to integrate a wired ZigBee  3.0 gateway, but I encountered an error during the integration phase, as illustrated in the attached screenshot

Print this item

  Problem with KC868-A16v3 + SCD41
Posted by: Arek - 07-01-2025, 04:55 PM - Forum: KC868-A16v3 - Replies (1)

Hello guys,

I have a problem with connecting KinCony KC868-A16v3 with scd41. How can I connect these devices to make HomeAssistant read the sensor data?
its testing platform.
Below are my settings:

Code:
esphome:
  name: test-104
  platform: ESP32
  board: esp32dev


# Example configuration entry for ESP32
i2c:
   - id: bus_a
     sda: 9
     scl: 10
     scan: true
     frequency: 400kHz 


# Example configuration entry
ethernet:
  type: LAN8720
  mdc_pin: GPIO23
  mdio_pin: GPIO18
  clk_mode: GPIO17_OUT
  phy_addr: 0

  # Optional manual IP
  manual_ip:
    static_ip: 192.XXXXXXX
    gateway: 192.XXXXXX
    subnet: 255.XXXXX


# Example configuration entry
pcf8574:
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8
    address: 0x24

  - id: 'pcf8574_hub_out_2'  # for output channel 9-16
    address: 0x25

  - id: 'pcf8574_hub_in_1'  # for input channel 1-8
    address: 0x21

  - id: 'pcf8574_hub_in_2'  # for input channel 9-16
    address: 0x22

# Individual outputs
switch:
  - platform: gpio
    name: "ESP_Switch_401"
    pin:
      pcf8574: pcf8574_hub_out_1
      # Use pin number 0
      number: 0
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_402"
    pin:
      pcf8574: pcf8574_hub_out_1
      # Use pin number 1
      number: 1
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_403"
    pin:
      pcf8574: pcf8574_hub_out_1
      # Use pin number 2
      number: 2
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_404"
    pin:
      pcf8574: pcf8574_hub_out_1
      # Use pin number 3
      number: 3
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_405"
    pin:
      pcf8574: pcf8574_hub_out_1
      # Use pin number 4
      number: 4
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_406"
    pin:
      pcf8574: pcf8574_hub_out_1
      # Use pin number 5
      number: 5
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_407"
    pin:
      pcf8574: pcf8574_hub_out_1
      # Use pin number 6
      number: 6
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true
   
  - platform: gpio
    name: "ESP_Switch_408"
    pin:
      pcf8574: pcf8574_hub_out_1
      # Use pin number 7
      number: 7
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_409"
    pin:
      pcf8574: pcf8574_hub_out_2
      # Use pin number 0
      number: 0
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_410"
    pin:
      pcf8574: pcf8574_hub_out_2
      # Use pin number 1
      number: 1
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_411"
    pin:
      pcf8574: pcf8574_hub_out_2
      # Use pin number 2
      number: 2
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_412"
    pin:
      pcf8574: pcf8574_hub_out_2
      # Use pin number 3
      number: 3
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_413"
    pin:
      pcf8574: pcf8574_hub_out_2
      # Use pin number 4
      number: 4
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_414"
    pin:
      pcf8574: pcf8574_hub_out_2
      # Use pin number 5
      number: 5
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_415"
    pin:
      pcf8574: pcf8574_hub_out_2
      # Use pin number 6
      number: 6
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "ESP_Switch_416"
    pin:
      pcf8574: pcf8574_hub_out_2
      # Use pin number 7
      number: 7
      # One of INPUT or OUTPUT
      mode: OUTPUT
      inverted: true

binary_sensor:
  - platform: gpio
    name: "ESP_Sensor_401"
    pin:
      pcf8574: pcf8574_hub_in_2
      # Use pin number 0
      number: 0
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_402"
    pin:
      pcf8574: pcf8574_hub_in_2
      # Use pin number 1
      number: 1
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_403"
    pin:
      pcf8574: pcf8574_hub_in_2
      # Use pin number 2
      number: 2
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_404"
    pin:
      pcf8574: pcf8574_hub_in_2
      # Use pin number 3
      number: 3
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_405"
    pin:
      pcf8574: pcf8574_hub_in_2
      # Use pin number 4
      number: 4
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_406"
    pin:
      pcf8574: pcf8574_hub_in_2
      # Use pin number 5
      number: 5
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_407"
    pin:
      pcf8574: pcf8574_hub_in_2
      # Use pin number 6
      number: 6
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_408"
    pin:
      pcf8574: pcf8574_hub_in_2
      # Use pin number 7
      number: 7
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_409"
    pin:
      pcf8574: pcf8574_hub_in_1
      # Use pin number 0
      number: 0
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_410"
    pin:
      pcf8574: pcf8574_hub_in_1
      # Use pin number 1
      number: 1
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_411"
    pin:
      pcf8574: pcf8574_hub_in_1
      # Use pin number 2
      number: 2
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_412"
    pin:
      pcf8574: pcf8574_hub_in_1
      # Use pin number 3
      number: 3
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_413"
    pin:
      pcf8574: pcf8574_hub_in_1
      # Use pin number 4
      number: 4
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_414"
    pin:
      pcf8574: pcf8574_hub_in_1
      # Use pin number 5
      number: 5
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_415"
    pin:
      pcf8574: pcf8574_hub_in_1
      # Use pin number 6
      number: 6
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "ESP_Sensor_416"
    pin:
      pcf8574: pcf8574_hub_in_1
      # Use pin number 7
      number: 7
      # One of INPUT or OUTPUT
      mode: INPUT
      inverted: true

one_wire:
 
  - platform: gpio
    pin: GPIO14

sensor:
  - platform: dallas_temp
    address: 0x803c8504578d3328
    name: "Temp_4X1"
    update_interval: 5s


# Enable logging
logger:

# Enable Home Assistant API
api:

Print this item

  ESPHOME and KC firmware
Posted by: fdcemb5 - 07-01-2025, 09:03 AM - Forum: "KCS" v2 firmware system - Replies (3)

I am trying to configure A32 Pro. Can ESPHome YAML coexist with KC firmware? That's installing ESPhome yaml and flash KC firmare at the same time?

Print this item

  A24 with to broken relay
Posted by: simpl3x - 06-30-2025, 08:26 PM - Forum: KinCony A24 - Replies (3)

Hi, I just install one new KC868-A24 and after power on it - two relays are constantly closed, they supply voltage to the lamp. 
this is a defective device. what should I do?



Attached Files Thumbnail(s)
           
Print this item

  Need help choosing modules for 32-channel lighting control with Home Assistant
Posted by: Karlis_LV - 06-30-2025, 12:23 PM - Forum: Getting Started with ESPHome and Home Assistant - Replies (6)

Hello everyone,
I'm new to KinCony and Home Assistant. I would really appreciate your help.
I want to control my house lighting using Home Assistant, and I need to manage 32+ channels. I’m looking for a solution with the best price/performance.
Important:

  • I am not a programmer, so I need a system that works without writing code, just ready firmware like ESPHome or KinCony’s firmware.
  • I really like KinCony devices, but unfortunately I can't find compact and complete information in one place that explains how to set up a simple lighting project using a few modules.
  • I prefer using I/O extenders (relay modules) that come in a solid metal case or at least with mechanical protection, not open PCB boards.
Could you please help me with:
  1. Which modules do I need to build a 32+ channel Home Assistant lighting control system?
  2. Is there a video or full guide that shows everything: connection, flashing (if needed), and control via Home Assistant?
  3. Can this setup work without programming knowledge?
  4. What is the best I/O expander module with relays that includes a metal or protected enclosure?
  5. Can the system run only on Server16 with CM4 + some simple extender relay board?
I want to build a clean and reliable lighting automation system with good enclosure protection and Home Assistant support.
Thank you very much for your help!

Print this item

  RF 433MHz Transmitter/Receiver range
Posted by: makaveledj - 06-30-2025, 09:13 AM - Forum: KC868-A16v3 - Replies (3)

Hello I have KC868 A16v3 board together with the RF 433MHz Receiver/Transmitter which comes in the pack. 

I have very short range about 6m straight line with no obstacles. Is it the Transmitter/Receiver that limits the range? 
How can I improve it to have better range? 
Should I buy transmitter/receiver with antenna, and if so, could you recommend me which model is compatible with the board?

Thank you Smile

Print this item

  USB Connection not recognized
Posted by: joe.sfeir@gmail.com - 06-30-2025, 02:54 AM - Forum: T16M - Replies (2)

Hi,

I am connecting my T16M to my PC with a USB for programming. The device is also powered with 24V, and is ON correctly.

The COM port does not appear in my device list. I tried installing CH340 and CP210 drivers manually, but it still does not appear.

Any tips on how to resolve this?

Thanks

Print this item

  UART KC868-A6
Posted by: dnwalker - 06-29-2025, 05:59 PM - Forum: KC868-A6 - Replies (1)

Hello,
I have a question about the KC868-A6 board. Are pins 16 and 17 connected to the serial port on the board? I don't mean the RS232 port, but the white port on the board near the CPU.

Thanks and regards,
dnwalker

Print this item

  KC868 server16 and i2C
Posted by: fdcemb5 - 06-28-2025, 10:16 PM - Forum: KC868-Server Raspberry Pi4 local server - Replies (3)

I am trying to integrate the KC868 server 16 to add I2C hardware devices. I have done step 2
2. enable i2c for home assistant.
Add files to enable I2C
In the root of the hassos-boot partition, add a new folder called CONFIG.
In the CONFIG folder, add another new folder called modules.
Inside the modules folder add a text file called rpi-i2c.conf with the following content:
i2c-dev
In the root of the hassos-boot partition, edit the file called config.txt add two lines to it:
dtparam=i2c_vc=on
dtparam=i2c_arm=on


but i2c devices are not showing. See attached screenshot

Print this item

  MQTT Auto discovery problem
Posted by: makaveledj - 06-27-2025, 06:00 PM - Forum: KC868-A16v3 - Replies (6)

Hello everyone,
I am using board A16v3 with KCS v3.9.4 firmware.

I am trying to connect it with Home Assistant through ''MQTT (For Home Assistant)'' with auto discovery option set to ON, but unfortunately it cant connect to HA. I have watched kincony youtube videos and I am doing exactly the same, but with no success.

I have tried to connect with just the MQTT option and it connects just fine, but I would like to use the  ''MQTT (For Home Assistant)'' with auto discovery option. Have you came across such problem?

Any help will be appreciated.

Print this item