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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,658
» Latest member: safaiwale369
» Forum threads: 4,195
» Forum posts: 20,845

Full Statistics

Online Users
There are currently 72 online users.
» 0 Member(s) | 49 Guest(s)
Amazonbot, Applebot, Baidu, Bytespider, Crawl, DataForSeoBot, Google, PetalBot, Semrush, bot

Latest Threads
KCS VERSUS ESPHOME
Forum: "KCS" v3 firmware
Last Post: admin
08-20-2026, 10:20 PM
» Replies: 1
» Views: 23
KC868-AGv3
Forum: Getting Started with ESPHome and Home Assistant
Last Post: admin
08-20-2026, 10:18 PM
» Replies: 5
» Views: 75
[arduino code examples fo...
Forum: KC868-A32/A32 Pro
Last Post: huanmarie
08-19-2026, 07:09 AM
» Replies: 2
» Views: 1,593
KC868-H32B V5.08 firmware
Forum: News
Last Post: meoowu77
08-18-2026, 11:46 AM
» Replies: 24
» Views: 8,425
KinCony B2 Smart Controll...
Forum: News
Last Post: admin
08-17-2026, 01:07 PM
» Replies: 0
» Views: 51
KC868-A8v3 PCB layout CAD...
Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file
Last Post: admin
08-17-2026, 08:44 AM
» Replies: 0
» Views: 56
CT Clamp Compatibility
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
08-16-2026, 11:08 PM
» Replies: 12
» Views: 2,061
N60 Sensor channel label
Forum: N60
Last Post: marekd1
08-14-2026, 09:14 PM
» Replies: 18
» Views: 2,464
solar production and cons...
Forum: N30
Last Post: admin
08-14-2026, 01:46 AM
» Replies: 3
» Views: 129
Current direction detecti...
Forum: N30
Last Post: admin
08-14-2026, 01:44 AM
» Replies: 3
» Views: 116

  I need a smart audio system that works with the KC868-SERVER
Posted by: engmohades - 03-13-2023, 12:33 PM - Forum: DIY Project - Replies (3)

I need a smart audio system that works with the KC868-SERVER so that the speakers of each room can be controlled individually or all together
Please help select materials that are compatible with KC868-SERVER

Print this item

  KC868-S8 manual bypass switch released
Posted by: admin - 03-13-2023, 11:46 AM - Forum: News - No Replies

we have designed 8 Channel Manual Bypass Switch for smart home automation controller. If controller is broken or bad, so that can use manual control buttons for your smart system.
 
[Image: KC868-S8_01.jpg]
[Image: KC868-S8_02.jpg]

Print this item

  DS1307 RTC
Posted by: Olsen@HuaHin - 03-13-2023, 10:23 AM - Forum: KC868-A16 - Replies (16)

Hello everybody!

I am looking at adding a DS1307 RTC connected via I2C, anyone you can recommended that has been testet and easy to connect?

Presume source code are the same as for the KC868-A6.

Print this item

  how to install docker on KC868-Server CM4 by raspberry pi OS
Posted by: admin - 03-13-2023, 04:44 AM - Forum: Home automation training courses - No Replies

A. install docker on KC868-Server CM4 on raspberry pi OS

1. sudo curl -sSL https://get.docker.com | sh

2. sudo docker run hello-world

this test whether docker install correct.

3. sudo systemctl daemon-reload

4. sudo systemctl docker

5. sudo systemctl start docker

B. install GUI portainer

1. sudo docker pull portainer/portainer

2. sudo docker volume create portainer_data

3. docker run -d -p 9000:9000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer

4. login web browser by http://ip:9000

Print this item

  KC868-H16 TCP PHP sample code
Posted by: jfementira - 03-13-2023, 03:49 AM - Forum: KC868-HxB series Smart Controller - Replies (5)

I'm using KC868-H16.
How to run tcp send and receive command using php?

Print this item

  Firmware Update Not Responding to Bootloader Detect button
Posted by: j_griffin100@yahoo.com - 03-13-2023, 03:47 AM - Forum: KC868-HxB series Smart Controller - Replies (12)

Updated driver in WIndows,
Open Firmware Download Tool
Open Port
Power On Device
When Click bootloader detect button, nothing happens; Open File button remains grayed out.


See attached screenshot
Thanks for any help.



Attached Files Thumbnail(s)
   
Print this item

  Disabling the blue led
Posted by: mungaiambrose - 03-12-2023, 01:47 PM - Forum: KC868-AG / AG Pro / AG8 / Z1 - Replies (1)

Is it possible to disable the led or reduce the brightness?

Print this item

  KC868-H32BS ymal for home assistant using 32 switch + 32 binary sensor
Posted by: admin - 03-12-2023, 12:47 AM - Forum: KC868-HxB series Smart Controller - No Replies

here is download link

.txt   H32BS_yaml.txt (Size: 18.49 KB / Downloads: 621)

Print this item

  868-A4 pins for esphome
Posted by: bria_s - 03-11-2023, 06:14 AM - Forum: KC868-A series and Uair Smart Controller - Replies (3)

Hi
what pins are used for the different input / outputs on the A4?
I would like make the complet unit with capabilities available to home assistant.
Right now i have the following:



Code:
esphome:
  name: 868-a4
  friendly_name: 868-A4

esp32:
  board: esp32dev
  framework:
    type: arduino

# Enable logging
logger:

# Enable Home Assistant API
api:
  encryption:
    key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

ota:
  password: "xxxxxxxxxxxxxxxxxxxxxxxxxxxx"

wifi:
  ssid: "xxxxxxxx"
  password: "xxxxxx"

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "868-A4 Fallback Hotspot"
    password: "xxxxxxxxxxxx"

captive_portal:

switch:
  - platform: gpio
    name: "light1"
    pin: 2
    inverted: false

  - platform: gpio
    name: "light2"
    pin: 15
    inverted: false
   
  - platform: gpio
    name: "light3"
    pin: 5
    inverted: false
   
  - platform: gpio
    name: "light4"
    pin: 4
    inverted: false
   
binary_sensor:
  - platform: gpio
    name: "input1"
    pin:
      number: 36
      inverted: true

  - platform: gpio
    name: "input2"
    pin:
      number: 39
      inverted: true
   
  - platform: gpio
    name: "input3"
    pin:
      number: 27
      inverted: true
     
  - platform: gpio
    name: "input4"
    pin:
      number: 14
      inverted: true

output:
  - platform: esp32_dac
    pin: GPIO25
    id: dac_output2
  - platform: esp32_dac
    pin: GPIO26
    id: dac_output1

light:
  - platform: monochromatic
    output: dac_output1
    name: "KC868-A4-DAC1"
    gamma_correct: 2
    id: dac_light1
  - platform: monochromatic
    output: dac_output2
    name: "KC868-A4-DAC2"
    id: dac_light2
   
sensor:
  - platform: adc
    pin: 34
    name: "ADC-IN"
    update_interval: 5s

dallas:
  - pin: GPIO13

Print this item

  Digital inputs....
Posted by: Amaral989 - 03-10-2023, 04:05 PM - Forum: KC868-A series and Uair Smart Controller - Replies (9)

Hello everyone, 
I have a question concerning digital inputs. 
I have a RV, motorhome, that I would like to monitor.
So is it possible to provide 12vdc to the digital input. 
Actually, it depends on the battery voltage , but it can probably reach up to 14.7 volt dc. 

Will the digital input accept max of 14.7 volt. 

Thank you
John A

Print this item