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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,574
» Latest member: subathivya
» Forum threads: 3,764
» Forum posts: 19,246

Full Statistics

Online Users
There are currently 34 online users.
» 0 Member(s) | 17 Guest(s)
AhrefsBot, Amazonbot, Applebot, Bytespider, Crawl, Google, PetalBot, bot

Latest Threads
KC868-A16 - IP & PORT ?? ...
Forum: KC868-A16
Last Post: Guele1
Yesterday, 11:26 AM
» Replies: 20
» Views: 1,241
KinCony Z1 Problem
Forum: KC868-AG / AG Pro / AG8 / Z1
Last Post: admin
Yesterday, 12:20 AM
» Replies: 3
» Views: 30
Z1 Transmit action from. ...
Forum: KC868-AG / AG Pro / AG8 / Z1
Last Post: admin
02-05-2026, 05:00 AM
» Replies: 14
» Views: 1,644
Digital Input Voltage
Forum: T64M
Last Post: admin
02-04-2026, 01:15 PM
» Replies: 1
» Views: 25
KC868-E16S/E16P demo conf...
Forum: KC868-E16S/E16P
Last Post: admin
02-04-2026, 12:56 AM
» Replies: 16
» Views: 10,122
DTSU 666 energy meter - a...
Forum: KC868-A8S
Last Post: admin
02-04-2026, 12:00 AM
» Replies: 1
» Views: 21
TA with Home Assistant wi...
Forum: Getting Started with ESPHome and Home Assistant
Last Post: upstream
02-03-2026, 05:09 PM
» Replies: 3
» Views: 60
power input 24v
Forum: KC868-A16
Last Post: admin
02-03-2026, 12:49 PM
» Replies: 7
» Views: 1,574
TA
Forum: Home automation training courses
Last Post: oliviajack
02-03-2026, 07:51 AM
» Replies: 6
» Views: 543
connecting sensors
Forum: KC868-A8
Last Post: admin
02-03-2026, 03:07 AM
» Replies: 5
» Views: 77

  how to conect 10 circuits of LED STIP LIGHT
Posted by: engmohades - 11-02-2022, 11:56 AM - Forum: KC868-A4 - Replies (3)

hello, admin
    What are  products from Kinkony  to conect 10 circuits of LED STIP LIGHT ?
    How to connect them to be dimmable from wall switch and at the same time to be itegrated in app Home Assistant (dimmable and change multy color)?
 
Thank you

Print this item

  ESP32 arduino library for KC868-H32B Pro Controller
Posted by: admin - 11-01-2022, 12:41 AM - Forum: News - No Replies

Made ESP32 arduino library for KC868-H32B Pro Controller, easy to write arduino code for simple logical, such as sensor trigger relay or timer locally.
[Image: arduino_h32b_pro_2.png]
[Image: arduino_h32b_pro_3.jpg]

here is details: https://www.kincony.com/how-to-use-ardui...b-pro.html

Print this item

  How to use "arduino library" for KC868-H32B Pro
Posted by: admin - 11-01-2022, 12:12 AM - Forum: KC868-HxB series Smart Controller - No Replies

We have made arduino library for KC868-H32B Pro smart controller. it is open source and free for DIYer use.

1. Install ESP32 USB driver to your computer.

download from: https://www.kincony.com/download/CH341SER.zip
after installed USB driver, connect USB cable to your KC868-H32B Pro USB port. 
[Image: attachment.php?aid=1504]   

Then you will find COM port in windows OS "device manager"
[Image: attachment.php?aid=1499]   

2. Enable "ESP32 Development Mode" by KC868-H32B Pro Ethernet setting.
[Image: attachment.php?aid=1500]   

3. Install library in arduino IDE.

   
   
   

here have many demo simple code for how to use KC868-H32B Pro smart controller's relay output and input sensor port.

   
This is sample code how to turn ON/OFF one relay.

Print this item

  Great technical support
Posted by: petez69 - 10-31-2022, 11:24 PM - Forum: KC868-A series and Uair Smart Controller - Replies (3)

Hello Kincony

Thankyou for sending me a board replacement for my A16.  The board arrived within 2 weeks in the mail.  I really appreciate you helping me and I have no hesitation in recommending your products.

Thankyou !

Peter

Print this item

  DS1820 temperature sensor on KC868-A16
Posted by: marius - 10-30-2022, 09:20 AM - Forum: KC868-A16 - Replies (22)

Hello,
I connected DS1820 temperature sensor to KC868-A16 GPIO pins and running Tasmota, but in Tasmota interface module configuration there is no option to select DS1820 sensor or any other similar type (like AM2301A) sensor.

Can someone advice on how to make this thing working?
Evrything else working perfectly

Print this item

  KC868-A6 tasmota
Posted by: rodrigo_rjn - 10-29-2022, 06:06 PM - Forum: KC868-A6 - Replies (15)

ola personal, someone has already cofollowed install the tasmota, I can install more does not open the field to configure the pulse input, someone has already managed

Print this item

  KC868-A8 ethernet work with home assistant by ESPHome configure
Posted by: admin - 10-28-2022, 12:23 AM - Forum: KC868-A8 - Replies (5)


.txt   A8-esphome.txt (Size: 3.35 KB / Downloads: 1266)

esphome:
  name: kc868-a8
  platform: ESP32
  board: esp32dev
 
 
# Example configuration entry for ESP32
i2c:
  sda: 4
  scl: 5
  scan: true
  id: bus_a


# 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.168.1.199
    gateway: 192.168.1.1
    subnet: 255.255.255.0 


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

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

# Individual outputs
switch:
  - platform: gpio
    name: "a8-light1"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 0
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "a8-light2"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 1
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a8-light3"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 2
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a8-light4"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 3
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a8-light5"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 4
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a8-light6"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 5
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "a8-light7"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 6
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a8-light8"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 7
      mode: OUTPUT
      inverted: true
     
binary_sensor:
  - platform: gpio
    name: "a8-input1"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 0
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a8-input2"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 1
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a8-input3"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 2
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a8-input4"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 3
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a8-input5"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 4
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a8-input6"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 5
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a8-input7"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 6
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a8-input8"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 7
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a8-s3"
    pin:
      number: 32
      inverted: true

  - platform: gpio
    name: "a8-s4"
    pin:
      number: 33
      inverted: true
     
dallas:
  - pin: 14

sensor:
  - platform: dallas
    address: 0x1c0000031edd2a28
    name: "ds18b20-1"

# Enable logging
logger:

# Enable Home Assistant API
api:

Print this item

  KC868-A8 Matter
Posted by: DiegoAlmeida - 10-27-2022, 02:07 PM - Forum: KC868-A8 - Replies (1)

Is there a way to install the Matter protocol on the KC868-A8?

Print this item

  Size of the case
Posted by: GDN20 - 10-26-2022, 08:22 AM - Forum: KC868-E16S/E16P - Replies (5)

hello. I want to know the length, width, height of a standard case for kc868-e16s. Thanks

Print this item

  Why my KC868 A4 after 2 days not working or stop working.
Posted by: abgran - 10-23-2022, 12:44 PM - Forum: KC868-A4 - Replies (5)

Why my KC868 A4 after 2 days not working or stop working but the power led still on. It's must switch off the power then switch on the power it will work again. after 2 days it will stop working again.

Print this item