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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,416
» Latest member: Aleksandrs
» Forum threads: 4,134
» Forum posts: 20,686

Full Statistics

Online Users
There are currently 37 online users.
» 0 Member(s) | 25 Guest(s)
Amazonbot, Bytespider, Crawl, Scrapy, Yandex, bot

Latest Threads
How to get started
Forum: KC868-A16
Last Post: admin
1 hour ago
» Replies: 35
» Views: 8,248
KC868 A8 + Home Assistant...
Forum: Development
Last Post: admin
1 hour ago
» Replies: 9
» Views: 56
KC868-A4 slide gate retro...
Forum: DIY Project
Last Post: admin
Yesterday, 12:35 AM
» Replies: 1
» Views: 10
Questions on the B4M
Forum: B4M
Last Post: admin
07-16-2026, 11:43 AM
» Replies: 1
» Views: 10
Ethernet static address
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
07-16-2026, 11:38 AM
» Replies: 5
» Views: 28
KCS firmware wishlist
Forum: "KCS" v2 firmware system
Last Post: admin
07-16-2026, 07:52 AM
» Replies: 3
» Views: 31
turn on one relay by mqtt...
Forum: KC868-A8v3
Last Post: admin
07-15-2026, 12:26 AM
» Replies: 0
» Views: 26
Request for Type A Projec...
Forum: Apply for free sample product
Last Post: kyutimong
07-14-2026, 04:19 AM
» Replies: 0
» Views: 28
Loxone RS485
Forum: KinCony integrate with Loxone home automation
Last Post: admin
07-11-2026, 12:16 PM
» Replies: 16
» Views: 3,331
KinCony MT4 – 4CH ESP32 D...
Forum: News
Last Post: admin
07-11-2026, 03:01 AM
» Replies: 0
» Views: 76

  kWh resolution
Posted by: molelightn - 12-30-2025, 05:17 PM - Forum: N30 - Replies (37)

Hi, 

in the modbus specifiaction from N30 it is mentioned that Energy Sensor from BL0910 has a resolution of 1kWh only.

Is there any way to get a more accurat reading? For power circuits with low consumption it is misleading to see 0kWh consumption on end of day.

Does the BL0910 has a possibility to report for example 0,1kWh as resolution for Energy Consumption?

Thank you.

br

Print this item

  kincony a16 modbus + WallPad wall switch
Posted by: wchpikus - 12-30-2025, 04:59 PM - Forum: KC868-A series and Uair Smart Controller - Replies (1)

Hello
I need help with setup wallpad using modbus:
google drive with manual:
https://drive.google.com/drive/folders/1...drive_link

i have some errors, code from aiSmile

[17:49:15.467][D][modbus_controller:039]: Modbus command to device=2 register=0x100B no response received - removed from send queue [17:49:15.705][W][modbus_controller:284]: Duplicate modbus command found: type=0x4 address=4107 count=1 

any user tryed this wall pad?



esphome:
  name: kincony_a16_wall_switch
  platform: ESP32
  board: esp32dev

wifi:
  ssid: "YOUR_WIFI"
  password: "YOUR_PASSWORD"

logger:
  baud_rate: 0

api:
ota:

uart:
  id: rs485_uart
  tx_pin: GPIO17
  rx_pin: GPIO16
  baud_rate: 9600
  stop_bits: 1

modbus:
  id: modbus1
  uart_id: rs485_uart

modbus_controller:
  - id: wallpad
    address: 0x02
    modbus_id: modbus1
    setup_priority: -10
    update_interval: 200ms

# ======================
# RELAYS (Kincony A16)
# ======================
switch:
  - platform: gpio
    id: relay_1
    name: "Relay 1"
    pin: GPIO32
    on_turn_on:
      - script.execute: led_1_on
    on_turn_off:
      - script.execute: led_1_off

  - platform: gpio
    id: relay_2
    name: "Relay 2"
    pin: GPIO33
    on_turn_on:
      - script.execute: led_2_on
    on_turn_off:
      - script.execute: led_2_off

  - platform: gpio
    id: relay_3
    name: "Relay 3"
    pin: GPIO25
    on_turn_on:
      - script.execute: led_3_on
    on_turn_off:
      - script.execute: led_3_off

  - platform: gpio
    id: relay_4
    name: "Relay 4"
    pin: GPIO26
    on_turn_on:
      - script.execute: led_4_on
    on_turn_off:
      - script.execute: led_4_off

# ======================
# BUTTON INPUTS (RS485)
# ======================
binary_sensor:
  - platform: modbus_controller
    modbus_controller_id: wallpad
    name: "Button 1"
    register_type: holding
    address: 0x100B
    bitmask: 0x0001
    on_press:
      - switch.toggle: relay_1

  - platform: modbus_controller
    name: "Button 2"
    register_type: holding
    address: 0x100B
    bitmask: 0x0002
    on_press:
      - switch.toggle: relay_2

  - platform: modbus_controller
    name: "Button 3"
    register_type: holding
    address: 0x100B
    bitmask: 0x0004
    on_press:
      - switch.toggle: relay_3

  - platform: modbus_controller
    name: "Button 4"
    register_type: holding
    address: 0x100B
    bitmask: 0x0008
    on_press:
      - switch.toggle: relay_4

# ======================
# LED CONTROL SCRIPTS
# ======================
script:
  - id: led_1_on
    then:
      - modbus_controller.write_register:
          id: wallpad
          address: 0x1008
          value: 0x0101  # White LED ON

  - id: led_1_off
    then:
      - modbus_controller.write_register:
          id: wallpad
          address: 0x1008
          value: 0x0001  # Yellow LED

  - id: led_2_on
    then:
      - modbus_controller.write_register:
          id: wallpad
          address: 0x1008
          value: 0x0102

  - id: led_2_off
    then:
      - modbus_controller.write_register:
          id: wallpad
          address: 0x1008
          value: 0x0002

  - id: led_3_on
    then:
      - modbus_controller.write_register:
          id: wallpad
          address: 0x1008
          value: 0x0104

  - id: led_3_off
    then:
      - modbus_controller.write_register:
          id: wallpad
          address: 0x1008
          value: 0x0004

  - id: led_4_on
    then:
      - modbus_controller.write_register:
          id: wallpad
          address: 0x1008
          value: 0x0108

  - id: led_4_off
    then:
      - modbus_controller.write_register:
          id: wallpad
          address: 0x1008
          value: 0x0008

Print this item

  Goes Offline
Posted by: jeftevag - 12-29-2025, 05:50 PM - Forum: KC868-E16S/E16P - Replies (5)

I have 4 KC868-E16P-V2.3 with firmware version 2.2.14, after about one week, they go offline, no TUYA access(TUYA show Offline), and there is no Web-access. I have to power off/on to make them come online. It's random witch controller who goes offline, but all of them goes offline during one week or so.
They are powered by a MeanWell 12V 2.5A DIN-rail powersupply.

Print this item

  Voltage for KC868-16
Posted by: PTC - 12-28-2025, 08:53 PM - Forum: KC868-A16 - Replies (1)

Hello

What is the suitable power supply voltage for KC868-16 - is the 13,5 V ok as well? Whats the minimum?

Print this item

  Problems and general Feedback
Posted by: molelightn - 12-28-2025, 07:48 PM - Forum: N30 - Replies (2)

Hey there, 

some feedback and problems we detected on two N30 devices.

  • Flash Guide with ESP Download Tool is incomplete, the guideline let you think to use the KCS bin file only. This is not correct, you will need more files (partion etc) to be able to flash.
    ESPHome Webflasher is the solution as it also accept the KCS Firmware File.
         KinCony How to  
  • EnergyConsumption in kWh seems to be not working in KCS Firmware (major bug!) Same problem as in Link
  • Voltage Calibration is not possible in KCS Firmware

  • Are negative power readings possible? 
  • If yes, can there be an independent energy calculation per input for positive/negative consumption readings?


br mole

Print this item

  16-Channel Lighting Control with 2-Way/3-Way Switch Feedback & Home Assistant
Posted by: davit.injgia - 12-28-2025, 09:53 AM - Forum: News - Replies (1)

Hello,
I am looking for a KinCony solution for a professional home lighting automation setup.
Requirements:

  • 16-channel relay controller (220V AC)
  • Use of standard mechanical wall switches (2-way / 3-way)
  • Real light state feedback (Home Assistant must always know ON/OFF state, even when switched manually)
  • Mandatory Home Assistant integration (MQTT / ESPHome / native)
  • Minimal GPIO usage (no one-GPIO-per-switch design)
I have attached a photo of my current setup for reference.(https://drive.google.com/file/d/17L0_9mO...drive_link)
It works electrically, but it is not scalable and uses too many wires/GPIOs. I want a clean, professional solution.
Questions:
  1. Which KinCony model(s) do you recommend?
  2. How is state feedback implemented (dry contact, relay feedback, current sensing, etc.)?
  3. Do you have wiring diagrams or documentation for this scenario?
Thank you.
Best regards,
Davit



Attached Files Thumbnail(s)
   
Print this item

  OUTPUT DO1
Posted by: Lupi84 - 12-27-2025, 12:09 PM - Forum: KC868-AIO - Replies (8)

The DO1 output physically shows a high state. After uploading new software, when logging in directly to the controller, the inputs and outputs are disabled, but DO1 physically remains on all the time. I have no idea what is causing this. I haven’t connected any relays to the outputs yet.

Print this item

Photo N20 Problem with Home Assistant Conection
Posted by: Luismical1 - 12-27-2025, 08:26 AM - Forum: N20 - Replies (6)

Hello, I recently received an N20. I have access to it via Ethernet, but I can't connect it to "kinconyn20.local" nor can I connect it to Home Assistant. The strange thing is that it connects via MQTT from Home Assistant.

As soon as the device arrived, I flashed it to version v3 3.18.0. Its IP address is 192.168.3.78 (within my network range, OK), and its Wi-Fi access point is 192.168.4.1.

Is the problem that it can't access "kinconyn20.local"? Why doesn't Home Assistant recognize it?

I need to check the configuration of the CT clamps, as well as the L1 and L2 power inputs, which are not appearing.

I'm Spanish, sorry for the autotranslated English.



Attached Files Thumbnail(s)
           
Print this item

  sample code to receive http get
Posted by: telinda - 12-26-2025, 03:37 PM - Forum: F16 - Replies (23)

Hello Admin,

Have you ever created an example Arduino program to get results from API calls (HTTP/HTTPS Web Server)?
Btw, I used Kincony F16 ESPS3 with Tuya. 
And I have already tested mostly features in the KCS V3 firmware.

Thank you very much.

Print this item

  Single Moment switch
Posted by: Borg357 - 12-24-2025, 04:30 PM - Forum: DIY Project - Replies (1)

I have a Kincony A16v3, with Home Assistant running on a Pi4.

I ran a Momentary Push Button Switch to a switch input on the A16v3.  I set up an automation where you press the switch, and it runs an automation.

Is there a way to run a different automation on the way you press the switch?  Like, if I hold the button down, it triggers a different automation?

If this exists, can you point me toward a tutorial?

Thank you

Print this item