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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 10,004
» Latest member: vedikexchange
» Forum threads: 4,252
» Forum posts: 21,052

Full Statistics

Online Users
There are currently 292 online users.
» 0 Member(s) | 273 Guest(s)
AhrefsBot, Amazonbot, Applebot, Baidu, Bing, Bytespider, Crawl, PetalBot, Yandex, bot

Latest Threads
Las Firmware ?
Forum: KC868-A16
Last Post: admin
2 hours ago
» Replies: 6
» Views: 825
kc868-a6 analog input
Forum: KC868-A6
Last Post: admin
2 hours ago
» Replies: 1
» Views: 2
A32 pro tuya
Forum: "KCS" v3 firmware
Last Post: admin
2 hours ago
» Replies: 1
» Views: 5
Disconnect loop with Home...
Forum: F16
Last Post: admin
Yesterday, 01:16 AM
» Replies: 3
» Views: 9
KC-868-A1 linked Home Ass...
Forum: News
Last Post: admin
Yesterday, 01:16 AM
» Replies: 5
» Views: 1,356
config modbus sensor in K...
Forum: "KCS" v3 firmware
Last Post: admin
09-19-2026, 11:52 AM
» Replies: 0
» Views: 28
remember relay state
Forum: KC868-E16T
Last Post: admin
09-19-2026, 01:42 AM
» Replies: 3
» Views: 67
getting the A8A inputs to...
Forum: Development
Last Post: admin
09-19-2026, 01:41 AM
» Replies: 1
» Views: 35
Ceiling fan control not w...
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
09-18-2026, 07:15 AM
» Replies: 11
» Views: 271
Output pin protection
Forum: T16M
Last Post: admin
09-17-2026, 11:44 PM
» Replies: 1
» Views: 27

  how to install home assistant for Pi5M16 beginner guide
Posted by: admin - 07-25-2026, 06:05 AM - Forum: Pi5M16 - No Replies

1. make home assistant OS SD card or SSD disk for KinCony Pi5M16.

download  https://www.raspberrypi.com/software/

2. enable i2c for home assistant.

Add files to enable I2C

In the root of the hassos-boot partition, add a new folder called CONFIG.
In the CONFIG folder, add another new folder called modules.
Inside the modules folder add a text file called rpi-i2c.conf with the following content:
i2c-dev

In the root of the hassos-boot partition, edit the file called config.txt at last add two lines to it:
dtparam=i2c_arm=on
dtoverlay=i2c1-pi5,pins_2_3

Note: if you using Windows OS computer, you can use "DiskGenius.exe" free software to modify the files. Because Linux format file not visable on windows OS. 

3. install HACS addon

https://hacs.xyz/docs/use/download/downl...supervised

4. MCP23017 implementation for Home Assistant (HA)

https://github.com/jpcornil-git/HA-mcp23017

5. KinCony SSD1306 I2C Display implementation for Home Assistant

https://github.com/hzkincony/hass-ssd1306

6. KinCony ADS1115 ADC Sensor  implementation for Home Assistant

https://github.com/hzkincony/hass-ads1115

7. config yaml for MCP23017, ADS1115

install "file edit" add-on for HA , then config configuration.yaml

https://www.kincony.com/forum/showthread.php?tid=9664

Print this item

  how to install home assistant for Pi5R16 beginner guide
Posted by: admin - 07-25-2026, 06:05 AM - Forum: Pi5R16 - No Replies

1. make home assistant OS SD card or SSD disk for KinCony Pi5R16.

download  https://www.raspberrypi.com/software/

2. enable i2c for home assistant.

Add files to enable I2C

In the root of the hassos-boot partition, add a new folder called CONFIG.
In the CONFIG folder, add another new folder called modules.
Inside the modules folder add a text file called rpi-i2c.conf with the following content:
i2c-dev

In the root of the hassos-boot partition, edit the file called config.txt at last add two lines to it:
dtparam=i2c_arm=on
dtoverlay=i2c1-pi5,pins_2_3

Note: if you using Windows OS computer, you can use "DiskGenius.exe" free software to modify the files. Because Linux format file not visable on windows OS. 

3. install HACS addon

https://hacs.xyz/docs/use/download/downl...supervised

4. MCP23017 implementation for Home Assistant (HA)

https://github.com/jpcornil-git/HA-mcp23017

5. KinCony SSD1306 I2C Display implementation for Home Assistant

https://github.com/hzkincony/hass-ssd1306

6. KinCony ADS1115 ADC Sensor  implementation for Home Assistant

https://github.com/hzkincony/hass-ads1115

7. config yaml for MCP23017, ADS1115

install "file edit" add-on for HA , then config configuration.yaml

https://www.kincony.com/forum/showthread.php?tid=9664

Print this item

  MCP23017 i2c address for OUTPUT and DIGITAL INPUT
Posted by: admin - 07-25-2026, 06:04 AM - Forum: Pi5M16 - No Replies

MCP23017 output1-16: 0x22
MCP23017 input1-16: 0x20

Print this item

  MCP23017 i2c address for OUTPUT and DIGITAL INPUT
Posted by: admin - 07-25-2026, 06:04 AM - Forum: Pi5R16 - No Replies

MCP23017 output1-16: 0x22
MCP23017 input1-16: 0x20

Print this item

  home assistant configuration yaml file for Pi5M32
Posted by: admin - 07-24-2026, 08:13 AM - Forum: Pi5M32 - 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

  - platform: mcp23017
    i2c_address: 0x24
    invert_logic: true
    pins:
      0 : Button_17
      1 : Button_18
      2 : Button_19
      3 : Button_20
      4 : Button_21
      5 : Button_22
      6 : Button_23
      7 : Button_24
      8 : Button_25   
      9 : Button_26    
      10 : Button_27    
      11 : Button_28    
      12 : Button_29    
      13 : Button_30    
      14 : Button_31
      15 : Button_32

    
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
     
  - platform: mcp23017
    i2c_address: 0x21
    hw_sync: false
    invert_logic: true
    pins:
      0 : Output_17
      1 : Output_18
      2 : Output_19
      3 : Output_20
      4 : Output_21
      5 : Output_22
      6 : Output_23
      7 : Output_24
      8 : Output_25
      9 : Output_26
      10 : Output_27
      11 : Output_28
      12 : Output_29
      13 : Output_30
      14 : Output_31
      15 : Output_32
yaml file download:

.txt   configuration-yaml.txt (Size: 2.72 KB / Downloads: 90)

Print this item

  home assistant configuration yaml file for Pi5R32
Posted by: admin - 07-24-2026, 08:13 AM - Forum: Pi5R32 - 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

  - platform: mcp23017
    i2c_address: 0x24
    invert_logic: true
    pins:
      0 : Button_17
      1 : Button_18
      2 : Button_19
      3 : Button_20
      4 : Button_21
      5 : Button_22
      6 : Button_23
      7 : Button_24
      8 : Button_25   
      9 : Button_26     
      10 : Button_27     
      11 : Button_28     
      12 : Button_29     
      13 : Button_30     
      14 : Button_31
      15 : Button_32

     
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
     
  - platform: mcp23017
    i2c_address: 0x21
    hw_sync: false
    invert_logic: true
    pins:
      0 : Output_17
      1 : Output_18
      2 : Output_19
      3 : Output_20
      4 : Output_21
      5 : Output_22
      6 : Output_23
      7 : Output_24
      8 : Output_25
      9 : Output_26
      10 : Output_27
      11 : Output_28
      12 : Output_29
      13 : Output_30
      14 : Output_31
      15 : Output_32
yaml file download:

.txt   configuration-yaml.txt (Size: 2.72 KB / Downloads: 115)

Print this item

  cannot see KC868-A6 in router client list after setting STA mode
Posted by: Armsp0 - 07-24-2026, 08:00 AM - Forum: "KCS" v2 firmware system - Replies (7)

I have successfully flashed KCS_KC868_A6_V2.1.9.bin to my KC868-A6-V1.3 board and can access the web server in STA mode. Login is OK.


In the Network tab I set STA mode and enter 2.4Ghz wifi SSID and password (details checked correct). after reboot I do not see the KC868 has joined my WiFi network.

I have attached the serial logger output of boot process for review. Is this the correct bin for my board?


.txt   --- Miniterm on COM9 115200,8,N,1.txt (Size: 6.16 KB / Downloads: 109)

Print this item

  how to install home assistant for Pi5M32 beginner guide
Posted by: admin - 07-24-2026, 07:56 AM - Forum: Pi5M32 - No Replies

1. make home assistant OS SD card or SSD disk for KinCony Pi5M32.

download  https://www.raspberrypi.com/software/

2. enable i2c for home assistant.

Add files to enable I2C

In the root of the hassos-boot partition, add a new folder called CONFIG.
In the CONFIG folder, add another new folder called modules.
Inside the modules folder add a text file called rpi-i2c.conf with the following content:
i2c-dev

In the root of the hassos-boot partition, edit the file called config.txt at last add two lines to it:
dtparam=i2c_arm=on
dtoverlay=i2c1-pi5,pins_2_3

Note: if you using Windows OS computer, you can use "DiskGenius.exe" free software to modify the files. Because Linux format file not visable on windows OS. 

3. install HACS addon

https://hacs.xyz/docs/use/download/downl...supervised

4. MCP23017 implementation for Home Assistant (HA)

https://github.com/jpcornil-git/HA-mcp23017

5. KinCony SSD1306 I2C Display implementation for Home Assistant

https://github.com/hzkincony/hass-ssd1306

6. KinCony ADS1115 ADC Sensor  implementation for Home Assistant

https://github.com/hzkincony/hass-ads1115

7. config yaml for MCP23017, ADS1115

install "file edit" add-on for HA , then config configuration.yaml

https://www.kincony.com/forum/showthread.php?tid=9664

Print this item

  how to install home assistant for Pi5R32 beginner guide
Posted by: admin - 07-24-2026, 07:56 AM - Forum: Pi5R32 - No Replies



1. make home assistant OS SD card or SSD disk for KinCony Pi5R32.

download  https://www.raspberrypi.com/software/

2. enable i2c for home assistant.

Add files to enable I2C

In the root of the hassos-boot partition, add a new folder called CONFIG.
In the CONFIG folder, add another new folder called modules.
Inside the modules folder add a text file called rpi-i2c.conf with the following content:
i2c-dev

In the root of the hassos-boot partition, edit the file called config.txt at last add two lines to it:
dtparam=i2c_arm=on
dtoverlay=i2c1-pi5,pins_2_3

Note: if you using Windows OS computer, you can use "DiskGenius.exe" free software to modify the files. Because Linux format file not visable on windows OS. 

3. install HACS addon

https://hacs.xyz/docs/use/download/downl...supervised

4. MCP23017 implementation for Home Assistant (HA)

https://github.com/jpcornil-git/HA-mcp23017

5. KinCony SSD1306 I2C Display implementation for Home Assistant

https://github.com/hzkincony/hass-ssd1306

6. KinCony ADS1115 ADC Sensor  implementation for Home Assistant

https://github.com/hzkincony/hass-ads1115

7. config yaml for MCP23017, ADS1115

install "file edit" add-on for HA , then config configuration.yaml

https://www.kincony.com/forum/showthread.php?tid=9664

Print this item

  MCP23017 i2c address for OUTPUT and DIGITAL INPUT
Posted by: admin - 07-24-2026, 07:52 AM - Forum: Pi5R32 - No Replies

MCP23017 output1-16: 0x22
MCP23017 output17-32: 0x21
MCP23017 input1-16: 0x20
MCP23017 input17-32: 0x24

Print this item