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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,373
» Latest member: Verresen
» Forum threads: 2,574
» Forum posts: 13,315

Full Statistics

Online Users
There are currently 48 online users.
» 2 Member(s) | 34 Guest(s)
Bytespider, Crawl, Google, PetalBot, bot, owler, Shuraxxx, Verresen

Latest Threads
KC868-A2 configure yaml f...
Forum: KC868-A2
Last Post: elemarek
4 hours ago
» Replies: 15
» Views: 7,683
How can I power multiple ...
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
5 hours ago
» Replies: 12
» Views: 131
how to use AS ESP32-S3 vo...
Forum: KinCony AS
Last Post: biofects
11 hours ago
» Replies: 13
» Views: 459
change wake up name
Forum: KinCony AS
Last Post: admin
Today, 02:10 AM
» Replies: 13
» Views: 100
Problem with IFTTT automa...
Forum: "KCS" firmware system
Last Post: admin
Yesterday, 11:41 PM
» Replies: 6
» Views: 49
A32 Pro ESPHome yaml incl...
Forum: KC868-A32/A32 Pro
Last Post: admin
Yesterday, 11:15 PM
» Replies: 18
» Views: 188
KC868-A2 ESP32 I/O pin de...
Forum: KC868-A2
Last Post: admin
Yesterday, 11:12 PM
» Replies: 8
» Views: 2,272
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

  Home Assistant ESP home AIO firmware update failed
Posted by: telewizard13 - 06-20-2024, 11:56 AM - Forum: KC868-AIO - Replies (6)

       
In Home Assistant this morning, there was an ESP home update and a AIO firmware update shown. I clicked on install in the AIO update, but it failed. Do you have any information about what might be the issue?

Print this item

  on relays via modbus rs485
Posted by: 31marlosouza - 06-20-2024, 02:57 AM - Forum: KC868-A6 - Replies (7)

Olá, estou com dificuldade para ativar os relés da placa KC868 - através do pool modbus consigo ler as entradas analógicas, ler as entradas digitais, mas não consigo ativar os relés. Você poderia me enviar a documentação.



Attached Files Thumbnail(s)
       
Print this item

  433MHz remote_receiver
Posted by: deltabridge - 06-19-2024, 09:54 PM - Forum: KC868-A8S - Replies (3)

Hello,

I am using ESPHome 2024.5.5 on the KC868-A8S device. After uploading the firmware that includes the remote_receiver component on GPIO16 for 433 MHz receiving module, the device becomes unresponsive and the web dashboard returns ERR_CONNECTION_REFUSED. Interestingly, when the remote_receiver component is not included, everything functions as expected.

Any ideas about that? Thank you!

Code:
esphome:
  name: kc868-a8s
  platform: ESP32
  board: esp32dev


# Enable logging
logger:

web_server:
  port: 80

ota:

# Enable Home Assistant API
api:

#remote_receiver:
#  pin: GPIO16
#  dump: all
#  tolerance: 50%
#  filter: 250us
#  idle: 2ms
#  buffer_size: 2kb

# 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

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

  - id: 'pcf8574_hub_in_1' # for input channel 9-16
    address: 0x22

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

  - platform: gpio
    name: "relay2"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 1
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "relay3"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 2
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "relay4"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 3
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "relay5"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 4
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "relay6"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 5
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "relay7"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 6
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "relay8"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 7
      mode: OUTPUT
      inverted: true

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

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

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

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

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

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

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

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


output:
  - platform: ledc
    pin: GPIO2
    id: buzzer_output

rtttl:
  output: buzzer_output


light:
  - platform: fastled_clockless
    chipset: WS2812B
    pin: GPIO12
    num_leds: 1
    rgb_order: GRB
    name: "rgb_led"
    id: rgb_led
    default_transition_length: 0s
    restore_mode: ALWAYS_OFF

Print this item

  A16 rs485 problem
Posted by: Psix_anp - 06-19-2024, 09:05 PM - Forum: KC868-A16 - Replies (9)

Hi!
Help me pls for a16
not working relay after 8relay on rs485


- platform: modbus_controller
    name: 'modbus-switch2_1'
    address: 0  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1

  - platform: modbus_controller
    name: 'modbus-switch2_2'
    address: 1  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1
   
  - platform: modbus_controller
    name: 'modbus-switch2_3'
    address: 2  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1

  - platform: modbus_controller
    name: 'modbus-switch2_4'
    address: 3  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1

  - platform: modbus_controller
    name: 'modbus-switch2_5'
    address: 4  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1       

  - platform: modbus_controller
    name: 'modbus-switch2_6'
    address: 5  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1

  - platform: modbus_controller
    name: 'modbus-switch2_7'
    address: 6  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1
   
  - platform: modbus_controller
    name: 'modbus-switch2_8'
    address: 7  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1

  - platform: modbus_controller
    name: 'modbus-switch2_9'
    address: 8  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1

  - platform: modbus_controller
    name: 'modbus-switch2_10'
    address: 9  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1   

  - platform: modbus_controller
    name: 'modbus-switch2_11'
    address: 10  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1       

  - platform: modbus_controller
    name: 'modbus-switch2_12'
    address: 11  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1

  - platform: modbus_controller
    name: 'modbus-switch2_13'
    address: 12  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1
   
  - platform: modbus_controller
    name: 'modbus-switch2_14'
    address: 13  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1

  - platform: modbus_controller
    name: 'modbus-switch2_15'
    address: 14  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1

  - platform: modbus_controller
    name: 'modbus-switch2_16'
    address: 15  # 0:relay1  1:relay2 ......
    register_type: coil
    bitmask: 1

address 10,11 etc not working
I can switch only 8 relays? my hardware A16

Print this item

  How to connect SMOKE DETECTOR SENSOR with KC868-A64?
Posted by: jigneshk5 - 06-19-2024, 04:50 PM - Forum: KC868-A64 - Replies (17)

Hi, how to connect Smoke sensor (https://www.kincony.com/smoke-detector-sensor.html) with KC868-A64.
These are the pins present in smoke sensor:
RED: 12V
BLACK:GND
WHITE: COM
ORANGE: Normal open
YELLOW: Normal close

I have uploaded KCS_KC868_A64_v1.0.27 firmware in the controller. What is the MQTT topic for receiving data from digital pins?

Print this item

  how to replace ESP32 large memory module for KinCony ESP32 Controller
Posted by: admin - 06-18-2024, 12:18 PM - Forum: KC868-A series and Uair Smart Controller - No Replies

this video replace ESP32-WROOM-32 by ESP32-WROOM-32E N16R2 for KinCony KC868-A8S board. it have PSRAM with ESP32. just make sure not need GPIO16 when you need to use PSRAM. So we have removed U17 chip, so that cut the ESP32 GPIO16 circuit.

   
   
here is arduino code for testing PSRAM and all hardware information for ESP32:
   
arduino source code download:

.zip   test-psram.zip (Size: 596 bytes / Downloads: 50)

Code:
#include <Arduino.h>

void setup() {

//Use this code to init the pSARM
  Serial.begin(115200);

// 打印 Arduino 库的版本信息

Serial.println("Arduino 库版本");
Serial.println(ESP_ARDUINO_VERSION);

   // 获取 Flash 大小(以字节为单位)
  uint32_t flashSize = ESP.getFlashChipSize();
  Serial.printf("Flash Size: %u bytes\n", flashSize);

  // 获取 PSRAM 的大小(以字节为单位)
  uint32_t psramSize = ESP.getPsramSize();
  Serial.printf("PSRAM Size: %u bytes\n", psramSize);

  // 获取剩余内存
  uint32_t freeMemory = ESP.getFreeHeap();
  Serial.printf("Free Memory: %u bytes\n", freeMemory);

   // 获取总内存
  uint32_t Totalheap = ESP.getHeapSize();
  Serial.printf("Total heap: %u bytes\n", Totalheap);

   // 获取 PSRAM 剩余内存
  uint32_t FreePSRAM = ESP.getFreePsram();
  Serial.printf("Free PSRAM: %u bytes\n", FreePSRAM);
 

}

void loop() {}

Print this item

  START A PROJECT
Posted by: Nobleben80 - 06-17-2024, 09:55 PM - Forum: Apply for free sample product - Replies (1)

Dear Kincony Team.

i am a project engineer in automation engineering. i came across your products from youtube, and i am amazed with the profiling and ability of your product in handling facility automation.

I would like to get a free kit of your products to integrate it on my prospecting project (smart home installation on a duplex building) in nigeria.

These will enable me to become conversant with your products, use it on subsequent upcoming projects and also market it to client as a better automation product.

Below is my detail
Ogwo Noble-Ben Chukwuma
Project Engineer and Consultant at Mytric Waves
Tel and WhatsApp +2348063696900
ncogwo@gmail.com
I look for to hear from you. And also join your team

Sincerely.
Ogwo N.c

Print this item

  Error on ESPHOME Official Config?
Posted by: tolbier - 06-17-2024, 08:29 PM - Forum: KC868-A series and Uair Smart Controller - Replies (5)

Is it possible that addresses for input channels on Kincony868 A16 were exchanged on official configuration on esphome? 
https://devices.esphome.io/devices/KinCo...figuration

I was testing my new device and it surprised me that adresses were exchanged
This is my configuration for input addresses

Code:
  - id: 'pcf8574_hub_in_1'  # for input channel 1-8
    address: 0x22
  - id: 'pcf8574_hub_in_2'  # for input channel 9-16
    address: 0x21

Print this item

  ENQUIRE ON PROSPECTED SMART HOME PROJECT
Posted by: Nobleben80 - 06-17-2024, 04:47 PM - Forum: DIY Project - Replies (1)

I'm building a new smart home and is prospecting to use KinCony products for the smart controls that will offer me the following features:

- Smart control of devices via ethernet, website, mobile app, wifi and bluetooth, Alexa and home assistance on remote base. Though, I will also use cable for reliability and efficiency.

QUESTIONS:
- Can i integrate smart touch wall switches as a second level control and alternative switch for designated gadget like ceiling led lighting point for manual control? 
- In case of KC868 server goes down or hanged. Can kincony manual switch work effectively.
- Can i assign IP address to the kincony server from my home router network without using the sim card, so that it can access internet from my home internet router.
- Can i integrate my water pump level switch to the controller to control the pumping for water to the reservoir.
- Can i integrate a physical timer switch to control designated output for designated gadget or do you have a software that can take care of the timing of some output/terminal from the server.

BUILDING:
- Five Bedroom duplex with two sitting room, one kitchen and control room in Nigeria.
- 80 bulbs. some paired together. I will also use smart touch wall switches to manually switch off/on the lights as a second level control.
- 2 doors sensors with remote access to lock and unlock.
- Temperature sensors and smoke dictators 
-  What component will satisfy all the requirements in building the kincony smart distribution box?
- 15kw Solar energy powered

I await for your feedback and look forward to work with you and also publish my work on your youtube and other social media channels

Many Thanks.

Print this item

  Authentication failure
Posted by: Auxinne Paul - 06-17-2024, 12:16 PM - Forum: KC868-A8S - Replies (4)

Hello Sir, thanks for good work. I use your boards KC868-A8S, I have like 5 of them but I have problems with  "authentication expired"' that happens on home assistant randomly after a while. Could you please help me prevent it?



Attached Files Thumbnail(s)
   
Print this item