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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,252
» Latest member: avajoseph375
» Forum threads: 4,103
» Forum posts: 20,562

Full Statistics

Online Users
There are currently 112 online users.
» 0 Member(s) | 98 Guest(s)
Amazonbot, Applebot, Baidu, PetalBot, Semrush, bot

Latest Threads
DM16 output not turning o...
Forum: DM16
Last Post: VKAN
5 hours ago
» Replies: 23
» Views: 2,731
KinCony Pi5M32 – Raspberr...
Forum: News
Last Post: admin
7 hours ago
» Replies: 0
» Views: 7
RS485 issue
Forum: B4M
Last Post: admin
Today, 02:04 AM
» Replies: 6
» Views: 47
KinCony Pi5R32 – Raspberr...
Forum: News
Last Post: admin
Yesterday, 02:54 PM
» Replies: 0
» Views: 17
how to set "momentary" & ...
Forum: B16M
Last Post: admin
Yesterday, 08:06 AM
» Replies: 0
» Views: 18
[Bug] A16v3 (v3.24.3) - W...
Forum: "KCS" v3 firmware
Last Post: savingguillemot
06-23-2026, 08:22 AM
» Replies: 2
» Views: 306
Switching power supply wi...
Forum: KC868-A16v3
Last Post: admin
06-22-2026, 11:34 PM
» Replies: 1
» Views: 34
KCS v3 - Remote modificat...
Forum: KC868-A16
Last Post: admin
06-22-2026, 05:13 AM
» Replies: 9
» Views: 458
"KCS" v3.25.4 firmware BI...
Forum: "KCS" v3 firmware
Last Post: admin
06-22-2026, 05:11 AM
» Replies: 0
» Views: 110
A24 configure yaml for ES...
Forum: KinCony A24
Last Post: admin
06-21-2026, 12:52 PM
» Replies: 29
» Views: 8,670

  Weak wifi signal/range
Posted by: Nicodomo - 05-27-2026, 07:50 PM - Forum: KC868-A16v3 - Replies (3)

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 - 05-27-2026, 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: 93)

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

  automations yaml for read analog value print on SSD1306 OLED
Posted by: admin - 05-25-2026, 11:22 PM - Forum: Pi5R8 - 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

  automations yaml for read analog value print on SSD1306 OLED
Posted by: admin - 05-25-2026, 11:22 PM - Forum: Pi5M8 - 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

  automations yaml for read analog value print on SSD1306 OLED
Posted by: admin - 05-25-2026, 11:22 PM - Forum: Pi5M16 - 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

  automations yaml for read analog value print on SSD1306 OLED
Posted by: admin - 05-25-2026, 11:22 PM - Forum: Pi5R32 - 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

  automations yaml for read analog value print on SSD1306 OLED
Posted by: admin - 05-25-2026, 11:22 PM - Forum: Pi5M32 - 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