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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,369
» Latest member: icreators
» Forum threads: 2,574
» Forum posts: 13,313

Full Statistics

Online Users
There are currently 55 online users.
» 1 Member(s) | 36 Guest(s)
AhrefsBot, Amazonbot, Bytespider, Crawl, Google, PetalBot, Yandex, bot, owler, engrezk

Latest Threads
How can I power multiple ...
Forum: KC868-A series and Uair Smart Controller
Last Post: ingersoj
5 hours ago
» Replies: 11
» Views: 124
how to use AS ESP32-S3 vo...
Forum: KinCony AS
Last Post: biofects
5 hours ago
» Replies: 13
» Views: 457
change wake up name
Forum: KinCony AS
Last Post: admin
6 hours ago
» Replies: 13
» Views: 96
Problem with IFTTT automa...
Forum: "KCS" firmware system
Last Post: admin
9 hours ago
» Replies: 6
» Views: 47
A32 Pro ESPHome yaml incl...
Forum: KC868-A32/A32 Pro
Last Post: admin
9 hours ago
» Replies: 18
» Views: 188
KC868-A2 ESP32 I/O pin de...
Forum: KC868-A2
Last Post: admin
9 hours ago
» Replies: 8
» Views: 2,267
Need help with configurat...
Forum: KC868-HxB series Smart Controller
Last Post: admin
Yesterday, 04:32 AM
» Replies: 32
» Views: 398
ESP32 S3 set up issue
Forum: Extender module
Last Post: admin
12-17-2024, 11:43 PM
» Replies: 10
» Views: 71
KC868-A8 Schematic
Forum: KC868-A8
Last Post: admin
12-17-2024, 11:40 PM
» Replies: 7
» Views: 51
"KCS" v2.2.8 firmware BIN...
Forum: "KCS" firmware system
Last Post: admin
12-17-2024, 11:38 PM
» Replies: 2
» Views: 182

  A32 Input voltage range
Posted by: Shaps77 - 03-02-2023, 05:16 AM - Forum: KC868-A32/A32 Pro - Replies (5)

What is the acceptable tolerance of the input voltage for the KC868-A32?

Print this item

  lesson34 - how to install Zigbee 3.0 gateway to home assistant
Posted by: admin - 03-02-2023, 02:25 AM - Forum: Home automation training courses - Replies (5)


1. install zigbee2mqtt
https://github.com/zigbee2mqtt/hassio-zigbee2mqtt

2. add config zigbee2mqtt
   
serial:
  port: tcp://192.168.1.201:6638
  adapter: ezsp

3. config (Zigbee Home Automation) ZHA

socket://192.168.1.201:6638
band: 115200
   
   

Print this item

Sad upgrade firmware v1.39 kc868-h32bs
Posted by: mutaz - 03-01-2023, 08:00 AM - Forum: KC868-HxB series Smart Controller - Replies (3)

hi

i have kc868-h32bs v1.39 . 
i'm trying to upgrade the firmware . 
i downloaded KC868 Controller Bootloader and used serial to usb cable to upgrade but every time i run it i get error 
is there a way to upgrade using ethernet? if not what's the solution



Attached Files Thumbnail(s)
   
Print this item

  KC868-A4S 4G esp32 arduino relay board Released
Posted by: admin - 03-01-2023, 06:15 AM - Forum: News - No Replies

KC868-A4S esp32 arduino board based on ESP32 wifi chip, many hardware resource for you to use. it support GSM module for SMS, voice call, GPRS communication. Use SMS or call to turn ON/OFF relay will be very easy for home automation DIY. It also have 8 channel dimmer output and PWM output extender. You can write any code by Arduino IDE to ESP32 wifi/bluetooth/ethernet RS485 module. We will supply demo code for different samples. Everyone can modify and change the code for your own smart home automation system project. it support use by ESPHome for home assistant or tasmota firmware for smart home automation DIY.
[Image: KC868-A4S-1_01.jpg]
[Image: KC868-A4S-1_02.jpg]
[Image: KC868-A4S-1_03.jpg]
[Image: KC868-A4S-1_04.jpg]

Print this item

  How to choose the right microcontroller/controller before starting the development of
Posted by: dedbless - 03-01-2023, 05:36 AM - Forum: DIY Project - No Replies

Hi guys,

I have started searching for some information about the microcontrollers/controllers with which I can develop my own controller and the SMART-house. It is needed for my research work. I am new to this, and it is hard for me to find the necessary information.
I have found that such controllers as Arduino, Raspberry PI, ESP32, etc can be used.
However, how can I find the model of the controller which can suit my requirements? They are the following:
2-stage building with a garage (so it is +-400 sq.m.) with some number of SMART devices that are responsible for security (cameras, fire alarm, etc), temperature control, radiators, leakage control, opening/closing control, etc.
I am interested in the hardware area at first.
Any advices, links to the resources, researches, and articles with a similar topic will be really appreciated.
PS: sorry for my not clear English (just in case)
Thank you in advance.

Print this item

  KC868-A4S GSM AT command debug source code for arduino IDE
Posted by: admin - 03-01-2023, 04:58 AM - Forum: KC868-A4S - No Replies


.zip   KC868-A4S-AT-debug.zip (Size: 305 bytes / Downloads: 220)

before use source code, make sure you have set the serial2 pin number by config file.
   

Print this item

  KC868-A4S ESPHome demo config for home assistant
Posted by: admin - 03-01-2023, 04:54 AM - Forum: KC868-A4S - No Replies

   

esphome:
  name: a4s
  platform: ESP32
  board: esp32dev
 
 
# Example configuration entry for ESP32
i2c:
  sda: 4
  scl: 16
  scan: true
  id: bus_a


# Example configuration entry
ethernet:
  type: LAN8720
  mdc_pin: GPIO23
  mdio_pin: GPIO18
  clk_mode: GPIO17_OUT
  phy_addr: 0



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

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

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

  - platform: gpio
    name: "a4s-light2"
    id: light2
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 1
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a4s-light3"
    id: light3
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 2
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a4s-light4"
    id: light4
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 3
      mode: OUTPUT
      inverted: true

     
binary_sensor:
  - platform: gpio
    name: "a4s-input1"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 0
      mode: INPUT
      inverted: true

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

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

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

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

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

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

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

  - platform: gpio
    name: "a4s-input9"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 4
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a4s-input10"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 5
      mode: INPUT
      inverted: true     

  - platform: gpio
    name: "a4s-input11"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 6
      mode: INPUT
      inverted: true   

  - platform: gpio
    name: "a4s-input12"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 7
      mode: INPUT
      inverted: true   

pca9685:
    id: 'pca9685_hub'
    frequency: 500

output:
  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM0"
    channel: 0

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM1"
    channel: 1

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM2"
    channel: 2

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM3"
    channel: 3

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM4"
    channel: 4

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM5"
    channel: 5

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM6"
    channel: 6

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM7"
    channel: 7

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM8"
    channel: 8

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM9"
    channel: 9

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM10"
    channel: 10

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM11"
    channel: 11

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM12"
    channel: 12

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM13"
    channel: 13

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM14"
    channel: 14

  - platform: pca9685
    pca9685_id: 'pca9685_hub'
    id: "PWM15"
    channel: 15


light:
  - platform: monochromatic
    name: "a4s-Color-LED-1"
    output: PWM0
  - platform: monochromatic
    name: "a4s-Color-LED-2"
    output: PWM1
  - platform: monochromatic
    name: "a4s-Color-LED-3"
    output: PWM2
  - platform: monochromatic
    name: "a4s-Color-LED-4"
    output: PWM3
  - platform: monochromatic
    name: "a4s-Color-LED-5"
    output: PWM4
  - platform: monochromatic
    name: "a4s-Color-LED-6"
    output: PWM5
  - platform: monochromatic
    name: "a4s-Color-LED-7"
    output: PWM6
  - platform: monochromatic
    name: "a4s-Color-LED-8"
    output: PWM7
  - platform: monochromatic
    name: "a4s-Color-LED-9"
    output: PWM8
  - platform: monochromatic
    name: "a4s-Color-LED-10"
    output: PWM9
  - platform: monochromatic
    name: "a4s-Color-LED-11"
    output: PWM10
  - platform: monochromatic
    name: "a4s-Color-LED-12"
    output: PWM11
  - platform: monochromatic
    name: "a4s-Color-LED-13"
    output: PWM12
  - platform: monochromatic
    name: "a4s-Color-LED-14"
    output: PWM13
  - platform: monochromatic
    name: "a4s-Color-LED-15"
    output: PWM14
  - platform: monochromatic
    name: "a4s-Color-LED-16"
    output: PWM15

  - platform: rgbw
    name: "a4s-rgbw"
    red: PWM1
    green: PWM2
    blue: PWM3
    white: PWM4



# Enable logging
logger:

# Enable Home Assistant API
api:


.txt   KC868-A4S-HA-config.txt (Size: 5.8 KB / Downloads: 334)

Print this item

  KC868-A4S ESP32 I/O pin define
Posted by: admin - 03-01-2023, 04:52 AM - Forum: KC868-A4S - Replies (6)

#define ANALOG_A1  36
#define ANALOG_A2  39
#define ANALOG_A3  34
#define ANALOG_A4  35

IIC SDA:4
IIC SCL:16

Relay_IIC_address 0x24
P0--P3: for relay1-relay4
P4--P7: for DI9--DI12

Input_IIC_address 0x22  for DI1-DI8

PCA9685 IIC address: 0x00

DS18B20/DHT11/DHT21/LED strip -1: 5
DS18B20/DHT11/DHT21/LED strip -2: 14


Ethernet (LAN8720) I/O define:

#define ETH_ADDR        0
#define ETH_POWER_PIN  -1
#define ETH_MDC_PIN    23
#define ETH_MDIO_PIN  18
#define ETH_TYPE      ETH_PHY_LAN8720
#define ETH_CLK_MODE  ETH_CLOCK_GPIO17_OUT


RS485:
RXD:GPIO33
TXD:GPIO32

GSM:
RXD:GPIO13
TXD:GPIO15

Print this item

  8 channel bypass switch board - KC868-S8
Posted by: admin - 03-01-2023, 03:56 AM - Forum: Schematic and diagram - No Replies

here is diagram:

.pdf   Automation Bypass_S8.pdf (Size: 17.6 MB / Downloads: 516)

Print this item

  KC868 A8 - Help In Program
Posted by: mfjunior96 - 02-28-2023, 01:24 AM - Forum: KC868-A series and Uair Smart Controller - Replies (1)

Goodnight,

I'm having trouble using the codes to use the PCF8574 of the KC868 A8, using the same code for input and output, I noticed that it already comes with the standard Digital Input 1 > Turn on > Digital Output 1, does anyone have this code so I can work above him?

Thank you very much in advance

Print this item