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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,982
» Latest member: kamermcw
» Forum threads: 2,429
» Forum posts: 12,559

Full Statistics

Online Users
There are currently 54 online users.
» 1 Member(s) | 34 Guest(s)
Bing, Bytespider, Crawl, Google, PetalBot, Semrush, Yandex, bot, owler, yesyes

Latest Threads
Submit your suggestions a...
Forum: Suggestions and feedback on KinCony's products
Last Post: kamermcw
6 hours ago
» Replies: 7
» Views: 3,463
Help whit update Cold CPU...
Forum: KC868-HxB series Smart Controller
Last Post: itzek
9 hours ago
» Replies: 0
» Views: 6
KC868-AIO connecting to E...
Forum: KC868-AIO
Last Post: slava
11 hours ago
» Replies: 0
» Views: 1
DI8
Forum: Development
Last Post: Vaughan2024
Yesterday, 10:24 PM
» Replies: 0
» Views: 16
Clarification on CT Clamp...
Forum: KC868-M16 / M1 / MB / M30
Last Post: ironbill
Yesterday, 09:27 PM
» Replies: 0
» Views: 13
AS ESPHome yaml for home ...
Forum: KinCony AS
Last Post: admin
Yesterday, 12:29 PM
» Replies: 4
» Views: 279
KCS firmware - MQTT LWT?
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
Yesterday, 12:02 PM
» Replies: 34
» Views: 3,316
H32W Firmware
Forum: KC868-HxB series Smart Controller
Last Post: admin
Yesterday, 10:32 AM
» Replies: 5
» Views: 1,608
"KCS" v3.0.2 firmware for...
Forum: "KCS" firmware system
Last Post: admin
Yesterday, 12:00 AM
» Replies: 0
» Views: 44
What makes the ESP32 chip...
Forum: KC868-A series and Uair Smart Controller
Last Post: alice_amira
11-08-2024, 04:38 PM
» Replies: 0
» Views: 4

  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 - 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: 225)

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 (5)

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