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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,836
» Latest member: myaichatszaaab
» Forum threads: 3,865
» Forum posts: 19,744

Full Statistics

Online Users
There are currently 31 online users.
» 0 Member(s) | 14 Guest(s)
AhrefsBot, Amazonbot, Applebot, Google, PetalBot, Semrush, bot

Latest Threads
Connecting Nextion NX3224...
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
10 hours ago
» Replies: 1
» Views: 11
Very Low Volume even at M...
Forum: KinCony AS
Last Post: MartinBanner
03-26-2026, 11:23 PM
» Replies: 0
» Views: 8
AS-ESP32-S3 won't initial...
Forum: Getting Started with ESPHome and Home Assistant
Last Post: MartinBanner
03-26-2026, 11:03 PM
» Replies: 10
» Views: 253
N60 N30 N20 N10 ARM CPU f...
Forum: N30
Last Post: admin
03-26-2026, 10:05 PM
» Replies: 6
» Views: 80
Just Arrived: Annoying Bu...
Forum: KinCony AS
Last Post: admin
03-25-2026, 10:12 PM
» Replies: 4
» Views: 1,064
kWh resolution
Forum: N30
Last Post: admin
03-25-2026, 10:11 PM
» Replies: 34
» Views: 1,242
Channels always have curr...
Forum: KC868-AP / ADR
Last Post: admin
03-25-2026, 09:09 AM
» Replies: 21
» Views: 6,078
"KCS" v3.24.2 firmware BI...
Forum: "KCS" v3 firmware
Last Post: admin
03-24-2026, 05:58 AM
» Replies: 0
» Views: 147
N60 Energy RS485 Modbus P...
Forum: N60
Last Post: admin
03-24-2026, 05:42 AM
» Replies: 1
» Views: 367
N30 Energy RS485 Modbus P...
Forum: N30
Last Post: admin
03-24-2026, 05:41 AM
» Replies: 1
» Views: 442

  ESP32: ETH + RELAY
Posted by: zital - 07-03-2025, 06:47 AM - Forum: KC868-A2 - Replies (7)

Hi, I plugged my board via ethernet to my router, but it has no IP, my net is 192.168.2.*.

Anyway, I would like to flash my own code witn ESP32 python to enable / disable relays via http, how to set up a static ip? and which are the gpio pins to enable / disable relays?

Thank you Smile

Print this item

  A32 Pro
Posted by: fdcemb5 - 07-02-2025, 08:20 PM - Forum: KC868-A32/A32 Pro - Replies (12)

I have flashed the A32 Pro with Kincony firmware and signed in, enabled auto-discovery, but I cannot see the device in Home Assistant. Is there any additional step required to integrate the A32 Pro with Home Assistant?

Print this item

  ALR lora board not communicatin
Posted by: mandeep@freshoz.com - 07-02-2025, 04:15 AM - Forum: News - Replies (1)

Hello I have 2 ALR Boards on of them not communicating over lora. i have tried to use it as server and client both



Attached Files Thumbnail(s)
   
Print this item

  KC868 server16 and GSM module
Posted by: fdcemb5 - 07-01-2025, 10:46 PM - Forum: KinCony AS - Replies (12)

My KC868 server16 has a GSM module. How do I use the GSM module in server16 to do sms and calls

Print this item

  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