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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,175
» Latest member: finpracto
» Forum threads: 4,087
» Forum posts: 20,492

Full Statistics

Online Users
There are currently 30 online users.
» 0 Member(s) | 21 Guest(s)
Amazonbot, Applebot, Baidu, PetalBot, bot

Latest Threads
Tiny Alarm board after fl...
Forum: TA
Last Post: algaema
1 hour ago
» Replies: 2
» Views: 14
Wiegand
Forum: KC868-A16
Last Post: williemcvillage
11 hours ago
» Replies: 2
» Views: 33
Programmation kc868-A8 & ...
Forum: News
Last Post: admin
Today, 12:16 AM
» Replies: 1
» Views: 10
M16v2 and SCT013-050
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
Yesterday, 06:28 AM
» Replies: 5
» Views: 46
[arduino code examples fo...
Forum: KC868-AGv3
Last Post: admin
06-11-2026, 08:44 PM
» Replies: 0
» Views: 21
[arduino code examples fo...
Forum: KC868-AGv3
Last Post: admin
06-11-2026, 08:42 PM
» Replies: 0
» Views: 5
[arduino code examples fo...
Forum: KC868-AGv3
Last Post: admin
06-11-2026, 08:41 PM
» Replies: 0
» Views: 6
KC868-AGv3 ESP32S3 I/O pi...
Forum: KC868-AGv3
Last Post: admin
06-11-2026, 08:38 PM
» Replies: 0
» Views: 8
KinCony KC868-AGv3 ESP32S...
Forum: News
Last Post: admin
06-11-2026, 08:32 PM
» Replies: 0
» Views: 20
Single-family home automa...
Forum: DIY Project
Last Post: rosnoteh
06-11-2026, 08:13 PM
» Replies: 2
» Views: 48

  how to use HAv2 RS485 switch adapter work with E16S relay board
Posted by: admin - 05-29-2025, 02:13 AM - Forum: Extender module - No Replies

   
1. download KCS v2 firmware to KC868-E16S board, enable RS485 with "MODBUS-HA" mode.
   
2. use HAv2 PC config tool set the button action.
   
3. connect HAv2 with wall switch panel's K1,K2,K3,K4,K5,K6,KCOM to HAv2 board (use for buttons). D1,D2,D3,D4,D5,D6,DC12V to HAv2 board (use for LED state feedback) 
   
4. when press switch panel button or control by KCS monitor webpage or tuya app, the switch LED state will be updated.
   
   
   

this just demo for 6 relay, if you want many more switch panel control for 16 channel relay. just add switch panel and HAv2 module, parallel connection with RS485 port on KC868-E16S.

Print this item

  MQTT Digital Ports
Posted by: Psyos - 05-28-2025, 01:49 PM - Forum: "KCS" v3 firmware - Replies (3)

Good afternoom

I am using a KinCony Server16 Raspberry Pi IoT gateway with a Raspberry Pi CM4 EMMC, and I run Home Assistant in a container with Docker. Unfortunately, I was unable to enable I2C as indicated in the documentation, and even USB ports are not accessible in this setup. This containerized Home Assistant is the only alternative I could use.
I would like to know if it is possible to use the digital input ports of the KinCony device for sensors. If yes, how should these digital ports be configured to work properly with MQTT?
If it is not possible to activate sensors via MQTT through the digital input ports, what would be the recommended solution for integrating such sensors into Home Assistant in my setup?
Thank you in advance for your help.
Best regards,
Rui

Print this item

  a16v3 rf433 pins/other free pins for sim800l
Posted by: rhaenx - 05-28-2025, 08:07 AM - Forum: KC868-A16v3 - Replies (1)

hi. I have just buy a16v3. I buy without the rf433 transmitter and receiver. Can I use this pins for other purpose? I want to connect to sim 800l or similar board that can send/receive sms.
the free gpio pin on the board next to esp32 chip i cannot use because i cannot use soldering due to health problem. i have to find a friend or pay someone else to help me solder, before i try this i want to ask if other free pin that do no need to solder i can use for this purpose.
thank you for your time.

Print this item

  create cover buttons for two relay using MQTT
Posted by: admin - 05-27-2025, 06:28 AM - Forum: KC868-A32/A32 Pro - Replies (1)

   

Code:
mqtt:
  cover:
      name: "MQTT Cover"
      command_topic: 'A32PRO/DCDA0C7B8568/SET'
      state_topic: 'A32PRO/DCDA0C7B8568/STATE'
     # availability:
     # - topic: "home-assistant/cover/availability"
      qos: 0
      retain: true
      payload_open: '{"output1":{"value":true}}'
      payload_close: '{"output2":{"value":true}}'
      payload_stop: '{"output1":{"value":false}, "output2":{"value":false}}'

      value_template: >
        {% if value_json.output1.value and not value_json.output5.value %}
          open
        {% elif value_json.output5.value and not value_json.output1.value %}
          closed
        {% elif not value_json.output1.value and not value_json.output5.value %}
          stopped
        {% else %}
          unknown
        {% endif %}

      state_opening: "open"
      state_closing: "closed"
      state_stopped: "stopped"

      payload_available: "online"
      payload_not_available: "offline"
      optimistic: false


  switch:
   - name: 'a32pro-kcs-output-1'
     unique_id: a32pro-kcs-output-1
     state_topic: 'A32PRO/DCDA0C7B8568/STATE'
     command_topic: 'A32PRO/DCDA0C7B8568/SET'
     payload_on:  '{"output1":{"value":true}}'
     payload_off:  '{"output1":{"value":false}}'
     value_template: '{{ value_json.output1.value }}'
     state_on: true
     state_off: false

   - name: 'a32pro-kcs-output-2'
     unique_id: a32pro-kcs-output-2
     state_topic: 'A32PRO/DCDA0C7B8568/STATE'
     command_topic: 'A32PRO/DCDA0C7B8568/SET'
     payload_on:  '{"output2":{"value":true}}'
     payload_off:  '{"output2":{"value":false}}'
     value_template: '{{ value_json.output2.value }}'
     state_on: true
     state_off: false

Print this item

  "KCS" v3.9.4 firmware BIN file download
Posted by: admin - 05-27-2025, 12:09 AM - Forum: "KCS" v3 firmware - Replies (8)

v3.9.4 improvement:
1. fixed bug that Tuya app can't use by 4G SIM7600 module.
2. fixed but Monitor webpage can't show correct tuya connection state when use 4G SIM7600 module.



Attached Files
.zip   KCS_A2V3_V3.9.4.zip (Size: 1.04 MB / Downloads: 536)
.zip   KCS_A6V3_V3.9.4.zip (Size: 1.01 MB / Downloads: 584)
.zip   KCS_A8V3_V3.9.4.zip (Size: 1.06 MB / Downloads: 529)
.zip   KCS_A16V3_V3.9.4.zip (Size: 1.08 MB / Downloads: 654)
.zip   KCS_A32PRO_V3.9.4.zip (Size: 1.05 MB / Downloads: 513)
.zip   KCS_AG8_V3.9.4.zip (Size: 1.04 MB / Downloads: 515)
.zip   KCS_B8M_V3.9.4.zip (Size: 1.08 MB / Downloads: 503)
.zip   KCS_B16_V3.9.4.zip (Size: 1.07 MB / Downloads: 503)
.zip   KCS_B16M_V3.9.4.zip (Size: 1.07 MB / Downloads: 559)
.zip   KCS_F8_V3.9.4.zip (Size: 1.06 MB / Downloads: 465)
.zip   KCS_F16_V3.9.4.zip (Size: 1.08 MB / Downloads: 503)
.zip   KCS_F24_V3.9.4.zip (Size: 1.08 MB / Downloads: 527)
.zip   KCS_G1_V3.9.4.zip (Size: 1.03 MB / Downloads: 503)
.zip   KCS_KC_TA_V3.9.4.zip (Size: 1.03 MB / Downloads: 505)
.zip   KCS_T16M_V3.9.4.zip (Size: 1.02 MB / Downloads: 499)
Print this item

  16B mqtt yaml file config how to
Posted by: itzek - 05-24-2025, 09:17 PM - Forum: B16 - Replies (7)

Hello admin,
 I have the B16 ESP32-S3 controller and I want to connect it to Home Assistant using a regular mqtt configuration (not using MQTT (For Home Assistant)). 
This is what I'm trying, but it's not working:
    - name: " output-1 "
      unique_id: output-1
      state_topic: ' relay16/DCDA0C8B9B5C/state'
      command_topic: ' relay16/DCDA0C8B9B5C/set'
      payload_on:  '{"relay1":{"on":1}}'
      payload_off:  '{"relay1":{"on":0}}'
      value_template: '{{ value_json.relay1.on }}'
      state_on: 1
      state_off: 0

Can you give me an example of the configuration?

Print this item

  A32 for blinds - KCS firmware question/issues
Posted by: voyo - 05-24-2025, 01:21 AM - Forum: KC868-A series and Uair Smart Controller - Replies (3)

Hello!
So I bought A32 device, and I want it to drive my blinds. First I tried with original KCS firmware. While hardware is pretty decent, the firmware unfortunately seems to be half-baked Sad
Questions/issues I have -

1) I couldn't find any option to save/restore configuration from device. If you need to configure all relays on device with so many ports - it extremally inconvenient to re-configure everything you are trying new firmware (or just updating it). Or maybe Im just missing something ?

2) I want to configure slightly more complex behavior for this board - 
I have momentary buttons (up/down), so I wanted to 
a) run motor only when button is pressed
b) with long-click - open/close roller completely
c) with double-click - open/close to 50% 

I tried to use rising/falling edge detection for start/stop motor, - this works, but then I cannot configure any other functions like longclick or doubleclick Sad

4) "Jogging" functionality seems not working in this firmware at all, or I just dont know how to configure it.

5) I was able to find only v2  (KCS_KC868_A32_V2.2.13.zip)  of KCS firmware for this device , maybe there is some update with fixes for my above issues ?

Print this item

  KC868-A32 and EspEasy firmware
Posted by: voyo - 05-24-2025, 12:36 AM - Forum: KC868-A series and Uair Smart Controller - Replies (2)

Hello!
Does anyone have experience with EspEasy (www.letscontrolit.com) firmware running on this device ?
I recently bought A32 with intention to use it for my roller blinds, but I have some issues with KCK firmware (will create separate thread for my questions).
Anyway - I managed to upload espeasy firmware, it runs - but WiFi connection is not working. On serial console it prints:

03.872 : (265688) Info  : WIFI : Arduino wifi status: WL_STOPPED 254 ESPeasy internal wifi status: DISCONNECTED
03.885 : (260688) Info  : Webserver: start
05.229 : (260428) Info  : WD  : Uptime 0  ConnectFailures 0 FreeMem 260560 WiFiStatus: WL_STOPPED 254 ESPeasy internal wifi status: DISCONNECTED

I tried few firmware files but with no luck. So question is - is this board require some special setting to enable wifi ? Something like set some gpio or something else ?

Print this item

  Custom protocols limitation
Posted by: gabi_jackass@yahoo.com - 05-23-2025, 11:00 PM - Forum: KC868-A128 - Replies (2)

Hello,

I see that the number of custom protocols is limited at 64. This is not enough for a board with 128 inputs and 128 outputs.

I need at least 4 protocols per digital input (click, double click, hold ...)

Please advice,
Gabi

Print this item

  KC868-a6-v1.3sp + 0.5V Analog Input
Posted by: boneless - 05-23-2025, 01:22 PM - Forum: KC868-A series and Uair Smart Controller - Replies (2)

Hello again,

I have the KC868-a6-v1.3sp and a pressure sensor (0..150 psi / 0.5..4.5 V). I noticed my values were being capped at about 40 psi / 1.5 V. 
I verified with my fluke loop calibrator, and indeed have a limit at 1.5 V.

The image below shows the raw value being capped at 1.01.
I tried moving the input to the second, but I received the exact same values (capped).

Below code is used for both test with input 36 and 39.

You have any recommendations

Code:
       
  - platform: adc
    pin:
      number: 39
    unit_of_measurement: 'psi'
    name: 'Water Pressure Sprinkler'
    update_interval: 0.5s
    filters:

      - sliding_window_moving_average:
          window_size: 10
          send_every: 10


   

Print this item