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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 6,749
» Latest member: rccw08
» Forum threads: 3,023
» Forum posts: 15,930

Full Statistics

Online Users
There are currently 32 online users.
» 0 Member(s) | 8 Guest(s)
Amazonbot, AwarioBot, Bytespider, Crawl, PetalBot, Semrush, bot, owler

Latest Threads
KC868-A16 board - wired s...
Forum: KC868-A16
Last Post: admin
7 minutes ago
» Replies: 9
» Views: 654
Custom ESPHome firmware a...
Forum: KC868-A6
Last Post: admin
10 hours ago
» Replies: 23
» Views: 1,505
KC868 server firmware
Forum: DIY Project
Last Post: admin
10 hours ago
» Replies: 3
» Views: 48
KC868-A16 PCB DWG CAD fil...
Forum: KC868-A16
Last Post: admin
Today, 12:07 AM
» Replies: 0
» Views: 8
"KCS" v3.8.0 firmware BIN...
Forum: "KCS" v3 firmware
Last Post: admin
Yesterday, 11:58 PM
» Replies: 10
» Views: 784
KC868-A and ds18b20
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
Yesterday, 11:55 PM
» Replies: 5
» Views: 89
b16m programing blinds
Forum: "KCS" v3 firmware
Last Post: admin
Yesterday, 10:32 AM
» Replies: 5
» Views: 56
KC868 server firmware
Forum: "KCS" v3 firmware
Last Post: admin
Yesterday, 10:19 AM
» Replies: 3
» Views: 24
M30 configure yaml for ES...
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
04-25-2025, 11:51 PM
» Replies: 34
» Views: 2,364
AIO pins 0-5v reading 3.1...
Forum: KC868-AIO
Last Post: admin
04-25-2025, 11:48 PM
» Replies: 10
» Views: 67

  KC868-Server schematic for ESP32 and raspberry pi CM4 circuit
Posted by: admin - 04-11-2022, 01:57 PM - Forum: KC868-Server Raspberry Pi4 local server - No Replies

ESP32 use serial port communication with KinCony ARM CPU. user can write any code work with KinCony ARM CPU read/write digital input, digital output and analog input.


.pdf   KC868_SERVER_OPENSOURCE_SCH.pdf (Size: 373.22 KB / Downloads: 801)

Print this item

  KC868-E16 work with Loxone system case-3
Posted by: admin - 04-08-2022, 11:48 AM - Forum: KinCony integrate with Loxone home automation - No Replies

   

Print this item

  Loxone XML template file for KC868-H32B
Posted by: admin - 04-08-2022, 11:45 AM - Forum: KinCony integrate with Loxone home automation - No Replies

You just need to select "Virtual Outputs" and import this template. After this file is imported only the IP address as per user's ip address has to be give. There is no need to configure all the 32 relays for ON and OFF commands.


.zip   VO_KC868-H32B.zip (Size: 710 bytes / Downloads: 359)

Print this item

Photo KC868-E16 work with Loxone system case-2
Posted by: admin - 04-08-2022, 11:41 AM - Forum: KinCony integrate with Loxone home automation - No Replies

   
   
   

Print this item

Photo KC868-E16 work with Loxone system
Posted by: admin - 04-08-2022, 11:38 AM - Forum: KinCony integrate with Loxone home automation - No Replies

   

Print this item

Photo KC868-G IR Loxone integration
Posted by: admin - 04-08-2022, 11:24 AM - Forum: KinCony integrate with Loxone home automation - No Replies

   

Print this item

  KC868-A16 Loxone integration
Posted by: admin - 04-08-2022, 11:20 AM - Forum: KinCony integrate with Loxone home automation - Replies (2)

before integration you should install tasmota firmware for KC868-A16 firstly. here is link for KinCony KC868-A16's tasmota BIN file: https://www.kincony.com/forum/showthread.php?tid=1715

Integrating Kincony KC868-A16 in Loxone Config details: 
.pdf   KC868-A16 Loxone integration.pdf (Size: 2.74 MB / Downloads: 768)

Print this item

Photo KC868-H32B integrate with Loxone work for curtain
Posted by: admin - 04-08-2022, 11:16 AM - Forum: KinCony integrate with Loxone home automation - No Replies

KC868-H32B integrate with Loxone work for curtains
here is diagram details:

.pdf   KC868-H32B-curtain Loxone integration.pdf (Size: 3.7 MB / Downloads: 347)

   

   

Print this item

  Lesson13 - integrate KC868-AG to home assistant control air conditioner by IR
Posted by: admin - 04-06-2022, 07:05 AM - Forum: Home automation training courses - Replies (23)


   

ESPHome document: https://esphome.io/components/climate/cl...heatpumpir

# Example configuration entry
remote_transmitter:
  pin: GPIO2
  carrier_duty_percent: 50%

climate:
  - platform: mitsubishi     # adjust to match your AC unit!
    name: "Living Room AC"

Print this item

  Lesson12 - integrate KC868-Uair to home assistant to monitor temperature & humidity
Posted by: admin - 04-06-2022, 01:24 AM - Forum: Home automation training courses - No Replies



   

   

1. To enable the USB 2.0 ports on the raspberry pi 4 Compute Module 4, you need to edit the boot config file (/boot/config.txt) and add:

dtoverlay=dwc2,dr_mode=host

2. enable home assistant "Advanced Mode"

3. install ESPHome in Add-ons

4. config KC868-Uair

KC868-Uair document:

KC868-Uair ESP32 I/O pin define: https://www.kincony.com/forum/showthread.php?tid=1438

ESPHome configure for KC868-Uair: 

esphome:
  name: kc868-uair
  platform: ESP32
  board: esp32dev

# Enable logging
logger:

# Enable Home Assistant API
api:

ota:
  password: "978e66f878ed5041b830cfb427393c79"

wifi:
  ssid: "KinCony"  # your wifi router ssid
  password: "12345678"  # your wifi password

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Kc868-Uair Fallback Hotspot"
    password: "FbTxCLlbDvbO"

captive_portal:

# follow configure use for DS18B20 temperature sensor, SHT30 temperature and humidity sensor. WS2812B RGB LEDs.
i2c:
  sda: 4
  scl: 16
  scan: true
  id: bus_a

         
# Example configuration entry
dallas:
  - pin: GPIO27
    update_interval: 15s

# Individual sensors
sensor:
  - platform: dallas
    address: 0xC000000004D81528  # your DS18B20 address
    name: "internal Temperature"
 
# Example configuration entry
  - platform: sht3xd
    temperature:
      name: "extend Temperature"
    humidity:
      name: "extend Humidity"
    address: 0x44
    update_interval: 15s
 
light:
  - platform: fastled_clockless
    chipset: WS2812B
    pin: GPIO32    # Pin Define connected with LED strip
    num_leds: 4  #LEDs number
    rgb_order: GRB
    name: "Uair-Bottom-LED"
    effects:
      - addressable_rainbow:        ##defined 7 effects styles
      - addressable_color_wipe:
      - addressable_scan:
      - addressable_twinkle:
      - addressable_random_twinkle:
      - addressable_fireworks:
      - addressable_flicker:

  - platform: fastled_clockless
    chipset: WS2812B
    pin: GPIO33    # Pin Define connected with LED strip
    num_leds: 1  #LEDs number
    rgb_order: RGB
    name: "Uair-Vertical-LED"
    effects:
      - addressable_rainbow:        ##defined 7 effects styles
      - addressable_color_wipe:
      - addressable_scan:
      - addressable_twinkle:
      - addressable_random_twinkle:
      - addressable_fireworks:
      - addressable_flicker:


.txt   Made_for_ESPHome_KC868-Uair.txt (Size: 1.97 KB / Downloads: 427)

Print this item