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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,101
» Latest member: vrgdigital
» Forum threads: 4,007
» Forum posts: 20,320

Full Statistics

Online Users
There are currently 133 online users.
» 0 Member(s) | 126 Guest(s)
Amazonbot, PetalBot, bot

Latest Threads
Weak wifi signal/range
Forum: KC868-A16v3
Last Post: Nicodomo
8 hours ago
» Replies: 2
» Views: 27
KC868-A16v3 schematic
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
9 hours ago
» Replies: 1
» Views: 12
KC868-A16v3 PCB layout CA...
Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file
Last Post: admin
Yesterday, 12:59 PM
» Replies: 0
» Views: 24
[arduino code examples fo...
Forum: F24
Last Post: admin
05-26-2026, 10:55 PM
» Replies: 2
» Views: 877
Cant flash esphom
Forum: B16M
Last Post: lulu01
05-26-2026, 04:58 PM
» Replies: 23
» Views: 856
Request for firmware H32
Forum: KC868-HxB series Smart Controller
Last Post: admin
05-26-2026, 11:22 AM
» Replies: 1
» Views: 32
how to use KC868-A8 with ...
Forum: KC868-A8
Last Post: admin
05-26-2026, 11:20 AM
» Replies: 0
» Views: 28
MODBUS
Forum: KC868-A2v3
Last Post: admin
05-26-2026, 10:05 AM
» Replies: 5
» Views: 62
problem with kc868 has v2
Forum: News
Last Post: admin
05-26-2026, 08:08 AM
» Replies: 13
» Views: 235
KC868-HA v2 firmware V200...
Forum: KC868-HA /HA v2
Last Post: admin
05-26-2026, 12:37 AM
» Replies: 8
» Views: 1,983

  KC868-A16v3 schematic
Posted by: Alx - 11 hours ago - Forum: KC868-A series and Uair Smart Controller - Replies (1)

Hello!

Recently, I bought a KC868-A16v3.
Could you please confirm whether this schematic is valid for my KC868-A16v3?

https://www.kincony.com/download/KC868-A...ematic.pdf

Thank you in advance for your prompt reply.

Print this item

  Weak wifi signal/range
Posted by: Nicodomo - Yesterday, 07:50 PM - Forum: KC868-A16v3 - Replies (2)

Hello, 

Glad to join the forum, there are a lot of interesting things here.

I just received my Kincony A16v3 board equipped with the display. I planned to run it directly under ESPHome. 
I flashed my YAML file, but upon reboot, it wouldn't get an IP address. I finally found the issue: it worked when I placed it right next to the Wi-Fi router. 

At best, I get a signal at 2.4 meters away. It's as if the built-in antenna isn't working. Is this normal? 

What kind of performance/behavior are you experiencing?

Thanks for your answers!

Print this item

  KC868-A16v3 PCB layout CAD file
Posted by: admin - Yesterday, 12:59 PM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - No Replies

KC868-A16v3 PCB layout CAD file

.zip   KC868-A16-V3.1_DWG.zip (Size: 3.27 MB / Downloads: 14)

Print this item

  how to use KC868-A8 with PLC ladder diagram using OpenPLC video tour
Posted by: admin - 05-26-2026, 11:20 AM - Forum: KC868-A8 - No Replies

Print this item

  Request for firmware H32
Posted by: belar - 05-26-2026, 10:31 AM - Forum: KC868-HxB series Smart Controller - Replies (1)

I have two of your controllers that need to be restored. Please send me the bootloaders and the latest stable firmware versions.

1. H32B rev 7.2 controller
MCU: AT32F403AVGT7
Need: Bootloader + latest firmware

2. H32 rev 7.1 controller
MCU: STM32F103VCTB
Need: Bootloader + original firmware for KC868-H32

Print this item

  automations yaml for read analog value print on SSD1306 OLED
Posted by: admin - 05-25-2026, 11:22 PM - Forum: Pi5R16 - No Replies

here is automations.yaml file show analog data on SSD1306 OLED every 5 seconds.

Code:
- id: ads1115_ssd1306_display
  alias: "ADS1115 to SSD1306 (A1-A4)"
  trigger:
    - platform: time_pattern
      seconds: "/5"
  action:
    - service: ssd1306_i2c.print_text
      data:
        x: 0
        y: 0
        clear: true
        font_size: 12
        text: "A1: {{ states('sensor.a1') | float(0) | round(3) }} V\nA2: {{ states('sensor.a2') | float(0) | round(3) }} V\nA3: {{ states('sensor.a3') | float(0) | round(3) }} mA\nA4: {{ states('sensor.a4') | float(0) | round(3) }} mA"

Print this item

  home assistant configuration yaml file for Pi5R16
Posted by: admin - 05-25-2026, 11:19 PM - Forum: Pi5R16 - No Replies

Code:
# Loads default set of integrations. Do not remove.
default_config:

# Load frontend themes from the themes folder
frontend:
  themes: !include_dir_merge_named themes

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml

ssd1306_i2c:
  - model: "128x64"
    address: 0x3C
    i2c_bus: 1
    rotate: 0


ads1115:
  - address: 0x48
    i2c_bus: 1
   
sensor:
  - platform: ads1115
    multiplexer: A0_GND
    gain: 4.096
    name: "A1"
    multiplier: 1.51
  - platform: ads1115
    multiplexer: A1_GND
    gain: 4.096         
    name: "A2"
    multiplier: 1.51
  - platform: ads1115
    multiplexer: A2_GND
    gain: 4.096
    name: "A3"
    multiplier: 6.67
    device_class: current
    unit_of_measurement: mA
  - platform: ads1115
    multiplexer: A3_GND
    gain: 4.096
    name: "A4"
    multiplier: 6.67
    device_class: current
    unit_of_measurement: mA
   
binary_sensor:
  - platform: mcp23017
    i2c_address: 0x20
    invert_logic: true
    pins:
      0 : Button_1
      1 : Button_2
      2 : Button_3
      3 : Button_4
      4 : Button_5
      5 : Button_6
      6 : Button_7
      7 : Button_8
      8 : Button_9     
      9 : Button_10     
      10 : Button_11     
      11 : Button_12     
      12 : Button_13     
      13 : Button_14     
      14 : Button_15
      15 : Button_16

     
switch:
  - platform: mcp23017
    i2c_address: 0x22
    hw_sync: false
    invert_logic: true
    pins:
      0 : Output_1
      1 : Output_2
      2 : Output_3
      3 : Output_4
      4 : Output_5
      5 : Output_6
      6 : Output_7
      7 : Output_8
      8 : Output_9
      9 : Output_10
      10 : Output_11
      11 : Output_12
      12 : Output_13
      13 : Output_14
      14 : Output_15
      15 : Output_16
configuration yaml file download:

.zip   configuration.zip (Size: 720 bytes / Downloads: 22)

Print this item

  MODBUS
Posted by: frasanc - 05-25-2026, 08:39 AM - Forum: KC868-A2v3 - Replies (5)

We have a question about reading Modbus RTU:

With A2:
RS485:
RXD:35
TXD:32

With A2V3: 
RS485:
RXD:GPIO15
TXD:GPIO7

With A2  can read, but not with A2V3. Any idea?

// A2v3:
HardwareSerial MBus(1);
MBus.begin(9600, SERIAL_8N1, 15, 7);
pinMode(4, INPUT);  // modo auto

// A2:
HardwareSerial MBus(2);
MBus.begin(9600, SERIAL_8N1, 35, 32);

ModbusMaster node;
node.begin(1, MBus);
uint8_t r = node.readInputRegisters(6, 2);  // FC04 @ PDU 6

Someone could help us?

Print this item

  RS485 TS sensor with A16v3 esphome yaml
Posted by: admin - 05-25-2026, 07:24 AM - Forum: Extender module - No Replies

here is sample ESPHome yaml code for 3 TS together with one RS485 bus using KC868-A16v3 board.
   
   
   
set every TS with different RS485 address by PC software, make sure PC software can read the data:
   
   
   
here is ESPHome yaml
   

Code:
esphome:
  name: a16v3-ts
  friendly_name: a16v3_ts

esp32:
  board: esp32-s3-devkitc-1
  framework:
    type: esp-idf

# Enable logging
logger:
  hardware_uart: USB_SERIAL_JTAG

api:

ethernet:
  type: W5500
  clk_pin: GPIO42
  mosi_pin: GPIO43
  miso_pin: GPIO44
  cs_pin: GPIO15
  interrupt_pin: GPIO2
  reset_pin: GPIO1

uart:
  - id: uart_RS485
    baud_rate: 9600
    tx_pin: 16
    rx_pin: 17

modbus:
  - id: modbus_ts
    uart_id: uart_RS485
    send_wait_time: 50ms

# Sensor 1 - Address 1
modbus_controller:
  - id: ts_sensor_1
    modbus_id: modbus_ts
    address: 0x01
    command_throttle: 200ms
    setup_priority: -10
    update_interval: 10s

  - id: ts_sensor_2
    modbus_id: modbus_ts
    address: 0x02
    command_throttle: 200ms
    setup_priority: -10
    update_interval: 10s

  - id: ts_sensor_3
    modbus_id: modbus_ts
    address: 0x03
    command_throttle: 200ms
    setup_priority: -10
    update_interval: 10s

sensor:
  # Sensor 1 Temperature (Address 1)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_1
    name: "TS Sensor 1 Temperature"
    id: ts1_temperature
    register_type: holding
    address: 0x0000
    unit_of_measurement: "°C"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: |-
          if (x >= 10000) {
            return -1 * (x - 10000) * 0.1;
          } else {
            return x * 0.1;
          }

  # Sensor 1 Humidity (Address 1)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_1
    name: "TS Sensor 1 Humidity"
    id: ts1_humidity
    register_type: holding
    address: 0x0001
    unit_of_measurement: "%RH"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: return x * 0.1;

# Sensor 2 - Address 2

  # Sensor 2 Temperature (Address 2)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_2
    name: "TS Sensor 2 Temperature"
    id: ts2_temperature
    register_type: holding
    address: 0x0000
    unit_of_measurement: "°C"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: |-
          if (x >= 10000) {
            return -1 * (x - 10000) * 0.1;
          } else {
            return x * 0.1;
          }

  # Sensor 2 Humidity (Address 2)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_2
    name: "TS Sensor 2 Humidity"
    id: ts2_humidity
    register_type: holding
    address: 0x0001
    unit_of_measurement: "%RH"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: return x * 0.1;




# Sensor 3 - Address 3
  # Sensor 3 Temperature (Address 3)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_3
    name: "TS Sensor 3 Temperature"
    id: ts3_temperature
    register_type: holding
    address: 0x0000
    unit_of_measurement: "°C"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: |-
          if (x >= 10000) {
            return -1 * (x - 10000) * 0.1;
          } else {
            return x * 0.1;
          }

  # Sensor 3 Humidity (Address 3)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_3
    name: "TS Sensor 3 Humidity"
    id: ts3_humidity
    register_type: holding
    address: 0x0001
    unit_of_measurement: "%RH"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: return x * 0.1;




web_server:
  port: 80

download yaml: 
.txt   TS-HA.txt (Size: 3.45 KB / Downloads: 18)
firmware download: 
.zip   TS_V10Build241223SP0518.zip (Size: 10.25 KB / Downloads: 21)

Print this item

  RS485 TS sensor with A16v3 esphome yaml
Posted by: admin - 05-25-2026, 07:24 AM - Forum: KC868-A16v3 - No Replies

here is sample ESPHome yaml code for 3 TS together with one RS485 bus using KC868-A16v3 board.
   
   
   
set every TS with different RS485 address by PC software, make sure PC software can read the data:
   
   
   
here is ESPHome yaml
   

Code:
esphome:
  name: a16v3-ts
  friendly_name: a16v3_ts

esp32:
  board: esp32-s3-devkitc-1
  framework:
    type: esp-idf

# Enable logging
logger:
  hardware_uart: USB_SERIAL_JTAG

api:

ethernet:
  type: W5500
  clk_pin: GPIO42
  mosi_pin: GPIO43
  miso_pin: GPIO44
  cs_pin: GPIO15
  interrupt_pin: GPIO2
  reset_pin: GPIO1

uart:
  - id: uart_RS485
    baud_rate: 9600
    tx_pin: 16
    rx_pin: 17

modbus:
  - id: modbus_ts
    uart_id: uart_RS485
    send_wait_time: 50ms

# Sensor 1 - Address 1
modbus_controller:
  - id: ts_sensor_1
    modbus_id: modbus_ts
    address: 0x01
    command_throttle: 200ms
    setup_priority: -10
    update_interval: 10s

  - id: ts_sensor_2
    modbus_id: modbus_ts
    address: 0x02
    command_throttle: 200ms
    setup_priority: -10
    update_interval: 10s

  - id: ts_sensor_3
    modbus_id: modbus_ts
    address: 0x03
    command_throttle: 200ms
    setup_priority: -10
    update_interval: 10s

sensor:
  # Sensor 1 Temperature (Address 1)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_1
    name: "TS Sensor 1 Temperature"
    id: ts1_temperature
    register_type: holding
    address: 0x0000
    unit_of_measurement: "°C"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: |-
          if (x >= 10000) {
            return -1 * (x - 10000) * 0.1;
          } else {
            return x * 0.1;
          }

  # Sensor 1 Humidity (Address 1)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_1
    name: "TS Sensor 1 Humidity"
    id: ts1_humidity
    register_type: holding
    address: 0x0001
    unit_of_measurement: "%RH"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: return x * 0.1;

# Sensor 2 - Address 2

  # Sensor 2 Temperature (Address 2)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_2
    name: "TS Sensor 2 Temperature"
    id: ts2_temperature
    register_type: holding
    address: 0x0000
    unit_of_measurement: "°C"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: |-
          if (x >= 10000) {
            return -1 * (x - 10000) * 0.1;
          } else {
            return x * 0.1;
          }

  # Sensor 2 Humidity (Address 2)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_2
    name: "TS Sensor 2 Humidity"
    id: ts2_humidity
    register_type: holding
    address: 0x0001
    unit_of_measurement: "%RH"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: return x * 0.1;




# Sensor 3 - Address 3
  # Sensor 3 Temperature (Address 3)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_3
    name: "TS Sensor 3 Temperature"
    id: ts3_temperature
    register_type: holding
    address: 0x0000
    unit_of_measurement: "°C"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: |-
          if (x >= 10000) {
            return -1 * (x - 10000) * 0.1;
          } else {
            return x * 0.1;
          }

  # Sensor 3 Humidity (Address 3)
  - platform: modbus_controller
    modbus_controller_id: ts_sensor_3
    name: "TS Sensor 3 Humidity"
    id: ts3_humidity
    register_type: holding
    address: 0x0001
    unit_of_measurement: "%RH"
    accuracy_decimals: 1
    value_type: U_WORD
    filters:
      - lambda: return x * 0.1;




web_server:
  port: 80

download yaml: 
.txt   TS-HA.txt (Size: 3.45 KB / Downloads: 20)
firmware download: 
.zip   TS_V10Build241223SP0518.zip (Size: 10.25 KB / Downloads: 23)

Print this item