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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,750
» Latest member: RisnerJes
» Forum threads: 3,826
» Forum posts: 19,587

Full Statistics

Online Users
There are currently 43 online users.
» 0 Member(s) | 30 Guest(s)
AhrefsBot, Amazonbot, Applebot, Bing, Google, PetalBot, bot

Latest Threads
KC868-a8v3 IFTTT for Airc...
Forum: KC868-A2v3
Last Post: admin
Yesterday, 11:32 AM
» Replies: 1
» Views: 8
G1 cannot flash latest fi...
Forum: G1
Last Post: admin
Yesterday, 11:07 AM
» Replies: 1
» Views: 13
KinCony Z1 Problem
Forum: KC868-AG / AG Pro / AG8 / Z1
Last Post: admin
03-11-2026, 12:14 AM
» Replies: 10
» Views: 431
"KCS" v3.23.2 firmware BI...
Forum: "KCS" v3 firmware
Last Post: admin
03-11-2026, 12:13 AM
» Replies: 0
» Views: 87
ERROR SIM not inserted SI...
Forum: KC868-E8T
Last Post: admin
03-10-2026, 11:46 PM
» Replies: 14
» Views: 430
N20 CT Shorting terminal ...
Forum: N20
Last Post: Vega
03-10-2026, 08:18 PM
» Replies: 5
» Views: 289
sample code to receive ht...
Forum: F16
Last Post: admin
03-10-2026, 05:28 AM
» Replies: 21
» Views: 801
Custom ESPHome firmware a...
Forum: KC868-A6
Last Post: admin
03-09-2026, 08:22 AM
» Replies: 39
» Views: 8,688
"KCS" v2.2.19 firmware BI...
Forum: "KCS" v2 firmware system
Last Post: admin
03-09-2026, 08:21 AM
» Replies: 2
» Views: 107
kWh resolution
Forum: N30
Last Post: admin
03-08-2026, 10:04 PM
» Replies: 22
» Views: 567

  24v input voltage?
Posted by: tatu - 04-12-2023, 06:00 PM - Forum: KC868-A64 - Replies (9)

Hi!

Will this board support 24v input voltage? Item description page says 12V/24V, board marked only 12V? REV: 1.3

Thanks.

Print this item

  KC868-A32 Question
Posted by: miguelflpp - 04-12-2023, 09:47 AM - Forum: KC868-A series and Uair Smart Controller - Replies (1)

Hi.
Can anyone help me with a code for ESPHome? I would like it for 1 digital input to turn off multiple relay outputs (lights) physically, without network.

Thanks.

Print this item

Star Feature Request: HTTP REST API
Posted by: celloza - 04-12-2023, 08:20 AM - Forum: "KCS" v2 firmware system - Replies (1)

Hi

To allow easy integration to some of the tools I'm using, I'd like to have the option to monitor/control KC boards (such as the KC868-AI) via a REST API. Would it be possible to add this to the KCS firmware?

I could probably roll my own, but would like something officially integrated into KCS.

Print this item

  TCP Protocol
Posted by: celloza - 04-11-2023, 06:58 PM - Forum: KC868-AI - Replies (2)

Hi

(Running KCS1.0.24, with TCP Server enabled)

Trying to read the state of the inputs on a KC868-AI via C# with TCP. I've found this article (https://www.kincony.com/smart-controller...tocol.html) but I'm not getting the data they describe.

Whenever I pull digital input 1 to 9 to ground, I read 17 from the socket. Whenever I pull digital input 10 through 48 to ground, I read 18 from the socket.

What is the protocol for TCP on KC868-AI?

Print this item

  add KinCony energy meter to home assistant by Raspberry Pi CM4 RS485
Posted by: admin - 04-10-2023, 07:39 AM - Forum: KC868-Server Raspberry Pi4 local server - No Replies

   

.pdf   KinCony-energy-meter-rs485-modbus-protocol.pdf (Size: 120.39 KB / Downloads: 632)
modbus:
  - name: hub1
    type: serial
    baudrate: 9600
    bytesize: 8
    method: rtu
    parity: N
    port: /dev/ttyS0
    stopbits: 1

    sensors:
    - name: meter-voltage
      slave: 1
      address: 100
      input_type: holding
      data_type: float32
      count: 2
      precision: 2
      unit_of_measurement: V
      device_class: voltage

    - name: meter-current
      slave: 1
      address: 106
      input_type: holding
      data_type: float32
      count: 2
      precision: 2
      unit_of_measurement: A
      device_class: current

    - name: meter-power
      slave: 1
      address: 118
      input_type: holding
      data_type: float32
      count: 2
      precision: 2
      unit_of_measurement: kW
      device_class: power
     
    - name: meter-factor
      slave: 1
      address: 142
      input_type: holding
      data_type: float32
      count: 2
      precision: 2
    #  unit_of_measurement:
      device_class: power_factor

    - name: meter-frequency
      slave: 1
      address: 144
      input_type: holding
      data_type: float32
      count: 2
      precision: 2
      unit_of_measurement: Hz
      device_class: frequency

    - name: meter-consumption
      slave: 1
      address: 0
      input_type: holding
      data_type: float32
      count: 2
      precision: 2
      unit_of_measurement: kWh
      device_class: energy_storage

Print this item

  KC868-H32B Pro + KC868-AK work with multi switch panel control same relay
Posted by: admin - 04-06-2023, 06:04 AM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - Replies (6)

such as relay1 control by 2 switch button or 3 switch button or many buttons.

   

Print this item

  integrate KC868-Server by RS485 modbus switch to home assistant
Posted by: admin - 04-06-2023, 03:32 AM - Forum: KC868-Server Raspberry Pi4 local server - No Replies

modbus:
  - name: hub1
    type: serial
    baudrate: 9600
    bytesize: 8
    method: rtu
    parity: N
    port: /dev/ttyS0
    stopbits: 1
    switches:
      - name: Modbus-S1
        slave: 1
        address: 0
        write_type: coil
      - name: Modbus-S2
        slave: 1
        address: 1
        write_type: coil
      - name: Modbus-S3
        slave: 1
        address: 2
        write_type: coil
      - name: Modbus-S4
        slave: 1
        address: 3
        write_type: coil
      - name: Modbus-S5
        slave: 1
        address: 4
        write_type: coil
      - name: Modbus-S6
        slave: 1
        address: 5
        write_type: coil
      - name: Modbus-S7
        slave: 1
        address: 6
        write_type: coil
      - name: Modbus-S8
        slave: 1
        address: 7
        write_type: coil
      - name: Modbus-S9
        slave: 1
        address: 8
        write_type: coil
      - name: Modbus-S10
        slave: 1
        address: 9
        write_type: coil
      - name: Modbus-S11
        slave: 1
        address: 10
        write_type: coil
      - name: Modbus-S12
        slave: 1
        address: 11
        write_type: coil
      - name: Modbus-S13
        slave: 1
        address: 12
        write_type: coil
      - name: Modbus-S14
        slave: 1
        address: 13
        write_type: coil
      - name: Modbus-S15
        slave: 1
        address: 14
        write_type: coil
      - name: Modbus-S16
        slave: 1
        address: 15
        write_type: coil

Print this item

Photo RS-232 - LCD Dwin communication
Posted by: bsarevalo - 04-06-2023, 03:16 AM - Forum: KC868-A6 - Replies (3)

Hello everyone ! I have bought some KC868 - A6 modules, a Dwin DMG10600T070 display, which has a configurable RS232 or TTL serial interface port. The screen is powered at 12V and GND is linked to the power and RX - TX communication pins (DB9, pin 2 TX2, pin 3 RX2, pin 5 gnd). When I use the screen simulator and connect the KC868-A6 module to the PC's USB port, the program works perfectly and the communication executes the programmed commands. My query now is how can I program the arduino based KC868-A6 module for RS232 serial communication with the display with the RS232 port that the module has!.



Attached Files Thumbnail(s)
   
Print this item

  "KCS" v1.0.24 firmware BIN file download
Posted by: admin - 04-05-2023, 10:48 AM - Forum: "KCS" v2 firmware system - Replies (35)

Here is "KCS" firmware for KinCony KC868-A series (ESP32) board.
How to download and use, online guide: https://www.kincony.com/kcs-firmware-esp32-board.html
   
v1.0.24 improment:

1. Fix some text in webpage.
2. Fix timer bug for different channel reset problem.
3. Let MQTT message feedback only one time, before will be twice.
4. Support RS485 MODBUS Button Adapter – KC868-HA
5. Fix bug of DAC output with tuya app problem.



Attached Files
.zip   KCS_KC868_A4_V1.0.24.zip (Size: 737.3 KB / Downloads: 891)
.zip   KCS_KC868_A6_V1.0.24.zip (Size: 744.95 KB / Downloads: 654)
.zip   KCS_KC868_A8_V1.0.24.zip (Size: 748.43 KB / Downloads: 694)
.zip   KCS_KC868_A8S_V1.0.24.zip (Size: 755.91 KB / Downloads: 640)
.zip   KCS_KC868_A16_V1.0.24.zip (Size: 756.16 KB / Downloads: 714)
.zip   KCS_KC868_A32_V1.0.24.zip (Size: 756.24 KB / Downloads: 723)
.zip   KCS_KC868_A64_V1.0.24.zip (Size: 756.17 KB / Downloads: 652)
.zip   KCS_KC868_A128_V1.0.24.zip (Size: 756.25 KB / Downloads: 666)
.zip   KCS_KC868_AI_V1.0.24.zip (Size: 750.33 KB / Downloads: 833)
.zip   KCS_KC868_AK_V1.0.24.zip (Size: 738.35 KB / Downloads: 613)
.zip   KCS_KC868_E16S_V1.0.24.zip (Size: 756.17 KB / Downloads: 635)
.zip   KCS_KC868_A2_V1.0.25.zip (Size: 716.5 KB / Downloads: 589)
Print this item

  KC868-H32B_Pro V1.16 firmware
Posted by: admin - 04-05-2023, 10:35 AM - Forum: News - No Replies


.zip   H32B_Pro_V1.16_230404.zip (Size: 54.87 KB / Downloads: 607)

improvement:

add "MOTT feedback all channels" option in webpage setting. Support home bridge.

Enable= MQTT message will feedback all channels state
Disable= MQTT message will feedback single channel

   
   

Print this item