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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,813
» Latest member: dn8886ccom
» Forum threads: 4,218
» Forum posts: 20,909

Full Statistics

Online Users
There are currently 382 online users.
» 0 Member(s) | 364 Guest(s)
Amazonbot, Applebot, Baidu, Bing, Bytespider, Crawl, Google, HeadlessChrome, PetalBot, Yandex, bot

Latest Threads
N60 Loss of kWh on reset
Forum: N60
Last Post: chuyskywalker
7 hours ago
» Replies: 12
» Views: 140
⚡ 40 Buttons, 36 Lighting...
Forum: DIY Project
Last Post: lulu01
Yesterday, 09:03 PM
» Replies: 5
» Views: 81
CT Sensor Direction
Forum: N60
Last Post: admin
Yesterday, 12:51 PM
» Replies: 3
» Views: 158
Request for Type B Projec...
Forum: Apply for free sample product
Last Post: lemanat
Yesterday, 08:47 AM
» Replies: 0
» Views: 5
No ethernet communication
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
09-02-2026, 06:31 AM
» Replies: 6
» Views: 93
KinCony CO16 ESP32S3 16 C...
Forum: News
Last Post: admin
09-02-2026, 01:51 AM
» Replies: 0
» Views: 52
[arduino code examples fo...
Forum: CO16
Last Post: admin
08-31-2026, 12:16 AM
» Replies: 0
» Views: 36
[arduino code examples fo...
Forum: CO16
Last Post: admin
08-31-2026, 12:11 AM
» Replies: 0
» Views: 40
[arduino code examples fo...
Forum: CO16
Last Post: admin
08-31-2026, 12:09 AM
» Replies: 0
» Views: 42
[arduino code examples fo...
Forum: CO16
Last Post: admin
08-31-2026, 12:08 AM
» Replies: 0
» Views: 39

  KS868-A16 Questions
Posted by: Olsen@HuaHin - 03-31-2023, 04:18 AM - Forum: KC868-A series and Uair Smart Controller - Replies (6)

Hello everybody!

I am new to the ESP32 board and just got myself the KS868-A16.

My first choice was to use Arduino IDE to program my board.
After writing my first Sketch I found out the Debugging for the ESP32 board is not directly supported Cry
Has anyone found a working solution for this as I would like to be able to see status, test and troubleshoot my code.
Tried to Google the subject but has not been able to find an easy fix.

I have been looking at other options like Tasmota & ESPHome and Home Assistant.
Does any of those two platforms has a debugger?
 
I preferer a standalone system instead using a dedicated system.


My project is for the time being a small home control of 6pcs indoor light controls, time controlled outdoor night-light with 3pcs PIR and dimmer, armed-disarmed indoor alarm system with 4pcs PIR sensors.

Any recommendation to which platform to use, Arduino, Tasmota or ESPHome as I would like to write of standard code. 

Any feedback is appreciateded  Smile

Print this item

  KC868-A16 support mmWave Sensor?
Posted by: jhobson - 03-30-2023, 05:31 AM - Forum: KC868-A16 - Replies (1)

Hi Admin,

Could you please advise if it is possible to run mmWave sensor (like: https://www.aliexpress.com/item/1005005047841163.html ) using KC868-A16 ?

Print this item

  firmware KC868-A4S
Posted by: 105Timi - 03-29-2023, 06:22 PM - Forum: KC868-A4S - Replies (5)

Where can I find the KINCONY firmware for the KC868-A4S board? the software for the KC868-A4 board has no LAN communication ...

Print this item

  I-O testing board
Posted by: Olsen@HuaHin - 03-29-2023, 08:04 AM - Forum: KC868-A16 - Replies (3)

Hi

I received my KC868-A16 board last week and are at the moment testing I-O before starting to write any Arduino code.

My firmware is the latest version 1.0.19

I can from the web portal activate each output, but I cannot see any incoming inputs and they will not toggle assigned output.

I am using the 12v dc from your supplied power supply and I connected GND to input terminals.

Any idea what I am doing wrong.



Attached Files Thumbnail(s)
                       

Print this item

Question RS485 not receiving anything
Posted by: victorclaessen - 03-28-2023, 03:53 PM - Forum: KC868-A16 - Replies (26)

Hi,

I have the A16 wired up to a RS485 expansion board (16 inputs, 16 outputs) that is controlled by modbus RTU.

I have the ESP32 programmed with ESPHome. I can send commands to the expansion board, and I have control over the outputs (I see the onboard output-LEDs toggling), and I can see from the onboard communication LED on the expansion board that the expansion board sends a modbus response, but the ESP32 on the A16 does not receive anything on pin 16 (485RX).

I have verbose logs activated on the UART defined in ESPHome. I can see the raw bytes leaving on pin 13 (485TX), but no bytes are arriving on pin 16.
Obviously, I also cannot read the inputs of the expansion board (as that would require receiving the modbus response).

Are you sure that the RX pin number is correct? Could it be that I have a broken pcb trace?

Best regards,

Victor

P.S. Below is the relevant part of the esphome configuration

Code:
logger:
  level: VERY_VERBOSE

uart:
  id: mod_bus
  tx_pin: 13
  rx_pin: 16
  baud_rate: 9600 #115200
  stop_bits: 1
  debug:
    direction: BOTH
    dummy_receiver: false
    after:
      timeout: 1s
    sequence:
      - lambda: UARTDebug::log_hex(direction, bytes,' ');

modbus:
  id: modbus1
  send_wait_time: 250ms
  disable_crc: true

modbus_controller:
  - id: eletechsup
    ## the Modbus device addr
    address: 0x1
    modbus_id: modbus1
    setup_priority: -10

sensor:
   - platform: modbus_controller
     modbus_controller_id: eletechsup
     name: "read channel 1 state"
     id: eletech_channel1_state
     custom_command: [ 0x01, 0x03, 0x00, 0x01, 0x00, 0x01 ]
     value_type: U_WORD

switch:
  - platform: modbus_controller
    modbus_controller_id: eletechsup
    id: eletech_toggle_1
    name: "Eletech toggle 1"
    icon: "mdi:toggle-switch"
    address: 0x1
    register_type: holding
    skip_updates: 0
    lambda: |-
      return true;
    write_lambda: |-
      ESP_LOGD("main","Modbus Switch incoming state = %f",x);
      // return false ; // use this to just change the value
      payload.push_back(0x1);  // device address
      payload.push_back(0x6);  // write register
      payload.push_back(0x0);  // high byte address of the register
      payload.push_back(0x1);  // low byte address of the register
      payload.push_back(0x3);  // command (3=toggle)
      payload.push_back(0x0);  // delay (0)
      return true;

Print this item

  How to Design a Cabinet - Smart Home System Planning
Posted by: engmohades - 03-28-2023, 11:01 AM - Forum: DIY Project - Replies (5)

How to Design a Cabinet - Smart Home System Planning ? 
Using software drawing 

Print this item

  publish and subscribe with esp32 chip id
Posted by: shivdoke39 - 03-28-2023, 09:08 AM - Forum: KC868-A8 - Replies (3)

how to get chip id as mentioned in your publish topic ..i am getting only 8bits..and your UUID chip id is 12 bit...

Print this item

  Factory reset
Posted by: Olsen@HuaHin - 03-28-2023, 02:19 AM - Forum: KC868-A16 - Replies (7)

Hi.
I can no longer find and access my KC868-A16 board by WIFI or LAN. Huh
How to do a factory reset?

Print this item

Question KC868-A8-V1.5
Posted by: halaszlacii - 03-26-2023, 02:16 PM - Forum: KC868-A series and Uair Smart Controller - Replies (12)

Hello.I have a panel mentioned in the title.I would like to use it in Homeassistant with tasmota firmware.However, the template code I found for it does not work.Could you help me with a suitable code?I would like to use the inputs and outputs and I would also like to use a temperature sensor (DS18B20).Thank you very much



Attached Files Thumbnail(s)
   
Print this item

  KC868-AIO ESP32 All in One board released
Posted by: admin - 03-26-2023, 02:14 PM - Forum: News - No Replies

We have designed KC868-AIO (ESP32 ALL IN ONE) board for home automation DIYer. it can easy integrate to home assistant by ESPHome. the hardware have 32CH mosfet output + 58CH digital input + 16CH analog output + 19CH analog input, support RS485 + Ethernet + WiFi + Bluetooth + 4G SIM7600 module + DS3231 RTC module.
[Image: KC868-AIO-1_01.jpg]
[Image: KC868-AIO-1_02.jpg]
[Image: KC868-AIO-1_03.jpg]
[Image: KC868-AIO-1_04.jpg]
[Image: KC868-AIO-1_05.jpg]
[Image: KC868-AIO-1_06.jpg]

Print this item